Hi guys;
I want to enable the plugins in the short description, I found in the forum a solution, including prepare.content but it doesn't work, do you see something wrong there?
Joomla 3.9.22 & Virtuemart 3.8.6
ORIGINAL CODE:
<p class="product_s_desc">
<?php // Product Short Description
if (!empty($product->product_s_desc)) {
echo shopFunctionsF::limitStringByWord ($product->product_s_desc, 600, ' ...') ?> <?php } ?> </p>
CODE WITH PREPARE CONTENT:
<p class="product_s_desc">
<?php // Product Short Description
if (!empty($product->product_s_desc)) {
echo JHTML::_('content.prepare',$product_name); ?> <?php } ?> </p>
Thanks in advance
short description is not content
maybe right?:
echo JHTML::_('content.prepare',$product->product_name); ?> <?php } ?> </p>
Ohhh damn..true.. now is Perfect ;) Thanks!