set iframe in article in joomla - iframe

I am new in joomla. I am using joomla 1.5.26. I have created one article and try to place an iframe in that article in html mode. But when I try to save its becoming blank. How to solve this issue. Please help me.
Thanks in advance.

I think it's happened because of text filtering. To prevent Joomla from stripping HTML from your content see below (Note: Be careful while settings in production server):
Go to the Article Manager.
Select ” Options ” (the button on the top right).
Under Text Filters options, choose: Filter groups: select the groups that are allowed to use HTML code, e.g. SuperAdministrator Filter type: Whitelist / no filtering.
also check your editor settings.

Related

My post content (paragraph) is not show proper way in my frontend website

When i make a post in my website then it's paragraph(text editor content) is not show proper way in front end website(wordpress) .
but content is show in text editor in proper way.
Please give me a solution!
A lots of thanks..enter image description here
enter image description here
Talk to your HTML CSS developers about that..I dont think there is any technical issues. Your paragraph tag must be made to display:none as far as my knowledge is concerned.
It seems that your theme doesn't support RTL, you can ask the theme developer about this problem or apply the CSS yourself.
https://codex.wordpress.org/Right_to_Left_Language_Support
https://www.youtube.com/watch?v=1qxuBsQd74I

I cannot select text on my website and the text input fields do not work

I've been having this issue for a couple of months now. It's been a thorn on my side.
If you go to mcgrathrealtyinc.com, you will notice that you won't be able to select or highlight any text and the text fields on the forms do not work.
I've already done the plugin compatibility test and changed themes, but I'm still having the same problem.
Can anyone help me please?
Thank you
I visited your site and inspected the event listeners and saw a file wprmenu.js using the mouseup eventlistener.
Blocking this file in the browser fixes the issue, the path of the file reveals the plugin name wp-responsive-menu
http://mcgrathrealtyinc.com/2017/wp-content/plugins/wp-responsive-menu/js/wprmenu.js?ver=1.0
I suggest replacing the plugin or contacting the support page here and asking if some can see what the exact problem is.

Liferay 6.1 force any "edit control" to appear in a popup

I'm having issues with the default css and the custom css written by some other company. I'm trying to merge those two but the one affects the other I managed to fix most of the issues but it is really bad written css and very generic.
In order to limit my issues I was thinking to force any type of web-content diplay and porlet edit controls to open into a popup.
Is this possible? google didn't help.
I'm not sure if I'm understunding your problem, but if the CSS is the cause, I suggest you to fix it instead to look forma a trick.
In order to load web content as dialog, you can create CSS for this purpose on a theme or on each content template.

How do I hide WordPress from my source code?

Can I hide the code of html + javascript of wordpress pages ?
I mean when anyone hits view source he/she will not able to know that the website was developed using WordPress ?
It is not possible to prevent a user from viewing the source of a website. The web browser needs to be able to render it, so any form of "encryption" would cause the browser to miss-render the page.
There are HTML obfuscation tools online such as this. But you would not be able to use them in WordPress as it generates all it's HTML on the fly.
Rather than hiding the fact that you are using WordPress I would suggest that you ensure your WP install is kept up-to date and that you use sensible security plugins such as Bulletproof Security.
If you simply want to remove the <meta name="generator" content="WordPress 3.4.1" /> tag from your generated HTML, you can add this in your theme's functions.php.
remove_action('wp_head', 'wp_generator');
If you want to remove the "Powered by WordPress" in the footer text, that'll depend the theme you're using. Some themes allow you to customize the footer text from the dashboard, others will need manual modifications in the footer.php.
It will probably still be obvious that you're using WordPress though. A lot of references to uploaded files inside wp-content will be visible and many class names will have the wp- prefix. You probably won't be able to change those without breaking your website.
In general, you can't stop users from viewing the source of your website. The HTML is what defines the markup and content of your website, and the browser simply renders it. The best you can do is obfuscate it in such way that you can't easily tell what each HTML element represents or what each JavaScript function does.
No it's not possible. It'll will always be possible to see it since the browser has to get it in plain text to render it.
Look at JavaScript obfuscation to make your code harder to reuse or understand : How can I obfuscate (protect) JavaScript?
I believe what you're trying to do is hide the fact that your site is powered by WordPress. For that, you can try the suggestions presented here:
How to Hide WordPress Info from Your Source Code

wordpress takes off any html added to post in editor

I am using WordPress 3.4. with only the plugins that come with the wordpress default installation.
My problem is that I cannot add any links or html to my posts from the editor.
It seems that wordpress is filtering all code off and I can only add text.
I've also tried to embed code via the html tab but again the code just gets wiped out.
Any ideas of why this could be happening?
Adding HTML code in the HTML text-area should be fine alright, but it will strip some codes if it's not written in valid HTML. Can you paste the code you've been trying to add?
I hope I am correct in thinking that you mean switching between the visual and HTML editors. I ran into this as well, a few weeks ago, and after researching for over an hour it seems that this is just how the editor works.
Searching Google for " html stripped wordpress editor " will bring up results for this, going back to 2008.
My research led to me installing Preserved HTML Editor Markup and TinyMCE Advanced, to ensure that no html/code is stripped when saving a draft, or switching editor modes.
After installing the plugins, you will have to make one setting change for TinyMCE Advanced. In the admin area, navigate to 'Settings > TinyMCE Advanced'. Under Advanced Settings, check this setting.
Your HTML code should no longer be stripped when switching between the editors or saving a draft. If this isn't what you were referring to, sorry!
Plugins:
http://wordpress.org/extend/plugins/preserved-html-editor-markup
http://wordpress.org/extend/plugins/tinymce-advanced
(I would have used hyperlinks but I need 10 reputation to use more than two hyperlinks in a post.)

Resources