I have the main page displaying the category image. However, under each image is the category title. I want to remove the title from the main page, and only display the image.
Help appriciated.
Janet
I have the main page displaying the category image. However, under each image is the category title. I want to remove the title from the main page, and only display the image.
Help appriciated.
Janet
Hmm.. That is exactly what I wanted to find out here today..
Does anybody have any idea how to do that??
Thanks in advance.
Peek in the module for category_row.php and see what happens if you take out the categories_name in an override file ...
Of course, we all know to use override files, right?!![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
thanks - it took a bit of finding this answer, but it's exactly what i wanted :)
Hi, I am trying to accomplish this and don't seem to be having any luck when trying to modify category_row.php. I'm not an expert in PHP, so I may just be making a silly mistake. Can anyone who had done this successfully post the code they changed in this file? Any help is much appreciated!
Thanks in advance.
I needed this done too and I found it!!
In your
/includes/templates/YOURTEMPLATE/common/tpl_box_default_left.php
Wrap this around the <h3> code
What this does, is if there's no title to show, don't add the <h3> code in at all!Code:<?php if($title!='') { ?> <h3 class="leftBoxHeading" id="<?php echo str_replace('_', '-', $box_id) . 'Heading'; ?>"><?php echo $title; ?></h3> <?php } ?>
Works for me at least!![]()