Hadn't done any Joomla! (version here is 1.5.26 (yes, that old)) / Virtuemart work for quite some time so please bare with me. I have a Virtuemart category for which we wanted a wider view. The class deciding the width was inside webroot/components/com_virtuemart/themes/workcycles/templates/browse/includes/browse_header_category.tpl.php and there I added:
<div class="parentCategoryInfo">
<?php if ($category_id !=16) {
echo '<div class="parentCategoryDesc">';
?>
<?php } else {
echo '<div>';
}?>
First I tried to add it to webroot/components/com_virtuemart/themes/theme-name/templates/product_details/flypage-wide.tpl.php, but as the class deciding the width was not there, but inside browse_header_category.tpl.php I could not. Any tips how I can still create a template for this particular category so it can be chosen from the Joomla! > Virtuemart backend?
Also, is there an existing way to add a body tag which automatically loads category name, template name and such as WordPress tends to do with
body_class?