now, i want to make the categories list now show on the product page.which controled by the tpl_product_info_display.php file,. how should i do? thank u
now, i want to make the categories list now show on the product page.which controled by the tpl_product_info_display.php file,. how should i do? thank u
Modified from a recent thread:
Quick & dirty: Add to your stylesheet
#productinfoBody #categories {display: none;}
Proper way: Edit /includes/modules/sideboxes/categories.php; at the top of the file, add
if ($current_page_base != 'product_info') {
before
$main_category_tree = new category_tree;
and after
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
add
}
Save the edited file to /includes/modules/sideboxes/your_template/categories.php