1
Sviluppo / Re:inserire onepixelout nei risultati di Custom Properties - HELP
« il: 30 Ott 2009, 02:50:15 »
Hello Pinky69,
I don't speak Italian but I guessed we had the same problem since I found your post.
If I understand well, you would like to use a plugin with Custom Properties...
I just managed to resolve the issue.
1) In Com_CustomProperties, there is a helper.php you need to modify line 188. You need to "comment" the preg_replace
/* let's strip al mos tags
$row->introtext= preg_replace("/{[^}]*}/","",$row->introtext);
*/
2) In view.html.php, you need to add this just before line 232
$text = JHTML::_('content.prepare', $text);
echo $img_div . $text . $readon_text;
At least, it was enough for me. I didnt' have to invoke the plugin I needed to use
Good luck
I don't speak Italian but I guessed we had the same problem since I found your post.
If I understand well, you would like to use a plugin with Custom Properties...
I just managed to resolve the issue.
1) In Com_CustomProperties, there is a helper.php you need to modify line 188. You need to "comment" the preg_replace
/* let's strip al mos tags
$row->introtext= preg_replace("/{[^}]*}/","",$row->introtext);
*/
2) In view.html.php, you need to add this just before line 232
$text = JHTML::_('content.prepare', $text);
echo $img_div . $text . $readon_text;
At least, it was enough for me. I didnt' have to invoke the plugin I needed to use
Good luck