|
To have tabs and slides work in Virtuemart, go to the root directory and find: /administrator / components / com_virtuemart / html /
For tabs and slides to work on the store de_script_ion page, find this line (within the file _title_d shop.index.php)...
and change it to...
allow for mambots
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$row->text = $vendor_store_desc;
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, $page ), true );
$vendor_store_desc = $row->text;
//AK
Next up, to have tabs and slides appear on product pages, go to the file _title_d shop.product_details.php (same location as the previous file) and find this line:
/** Get the CATEGORY NAVIGATION **/
and change it to...
//AK> allow for mambots
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$row->text = $product_de_script_ion;
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, $page ), true );
$product_de_script_ion = $row->text;
//AK
|