This may be a Virtuemart 2 issue, but certain fields accept simple html tags, others are stripped. Is there a Joomla override to prevent html tags being stripped out of admin fields?
Thanks in advance
Does anyone have any idea about this? I need to format some things with line breaks, they are stripped out of admin fields when saved. Such as "Image Description" input box.
Thanks in advance.
sometimes this is your editor in Joomla - in global configuration - you could update your editor - (free) .
or turn off your editor and copy and paste -
or hunt for the html -- in joomla forums
or go to joomla global configuration ->>text filter >>superuser ( you) >> set >>no filtering
That's not the issue. I'm not talking about editor windows because I don't use TinyMCE, and have the system plugin disabled.
I'm referring specifically to the input fields in the Photo description areas, title etc.
See I have VM using prettyPhoto which pulls the Image description as the title and when I add line breaks <br /> they get stripped out when I save the product.
Can anyone else on the VM team answer this?
Thanks in advance.
I added <p> and </p> at the beginning and end of the pasted code and they held.
I tried prettyphoto , flash, youtube , single and group images.
Hi, thanks for your response. I tried this, it doesn't work in this field: Displayed image title
This is the image title that is pulled into prettyPhoto. Any ideas?
I am using JCE version 2.2.3 text editor - in the product description area.
Yeah that's exactly my question. Why are tags acceptable in product description <textarea> but not in <inputbox>
Can someone answer this?
For processing the image description VM uses the following code in media.php:
JRequest::getVar('file_description','','post','STRING',JREQUEST_ALLOWHTML);
As you see Joomla is instructed to allow some HTML in the entry - JREQUEST is an instruction to Joomla, see http://docs.joomla.org/Retrieving_and_Filtering_GET_and_POST_requests_with_JRequest::getVar
Sounds like your code is being sanitized somewhere, not sure if this is in Joomla or VM
in older forums they were referring to a blacklist...i'm not sure if that might be the case in vm2 as well