... some more found:
6. administrator/components/com_virtuemart/classes/ps_product, in line 2335: replace
$tpl->set( 'product_name', $db->f("product_name") ); |
with
$tpl->set( 'product_name', vmCommonHTML::ParseContentByPlugins( $db->f("product_name")) ); |
Purpose: Allow that TBS is triggered in Virtuemart Product Name (in the product snapshot function)
7. administrator/components/com_virtuemart/classes/ps_product, in line 2347: replace
$tpl->set( 'product_thumb_image', $db->f("product_thumb_image"), "alt=\"".$db->f("product_name")."\""); |
with
$tpl->set( 'product_thumb_image', $db->f("product_thumb_image"), "alt=\"".vmCommonHTML::ParseContentByPlugins($db->f("product_name"))."\""); |
Purpose: Allow that TBS is triggered in Virtuemart Product Name (in the product snapshot function)
8. administrator/components/com_virtuemart/classes/ps_product, in line 2608: replace
$featured_products[$i]['product_name'] = $db->f("product_name"); |
with
$featured_products[$i]['product_name'] = vmCommonHTML::ParseContentByPlugins($db->f("product_name")); |
Purpose: Allow that TBS is triggered in Virtuemart Product Name (in the featured products function)
9. administrator/components/com_virtuemart/classes/ps_product, in line 2732: replace
$recent[$k]['product_name'] = shopMakeHtmlSafe($recent[$k]['product_name']); |
with
$recent[$k]['product_name'] = vmCommonHTML::ParseContentByPlugins(shopMakeHtmlSafe($recent[$k]['product_name'])); |
Purpose: Allow that TBS is triggered in Virtuemart Product Name (in the recent products function)