Thank you, this all worked.
Ladydee
Thank you, this all worked.
Ladydee
Just a suggestion, the Firefox Web Developer tools are a GODSEND for identifying which styles to edit. Strongly suggest getting this tool.. Also the Zen Cart developers toolkit would have helped you identify where to edit the boxes title. If you had searched for "Put your title here", you would have been lead to the language files Muzz pointed out..
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Thank you very much everything worked. You have to make sure in the title that you have both "fans'
LadyDee
Any way to have 3 different images in the header for each middlebox?
I can only seem to have one image for all three headers.
That wasn't the plan!
Hello,
I'm trying to get 6 centerboxes also and am wondering if Dee's mod is available somewhere. I tried to go to Dee's example site and it's under construction.
Dee, is there a place to download the whatever changes you've made or is there and example/documentation of what you did to get the 6 boxes?
I'm a css/php noob, have zc 1.3.8 installed on a windows testing server, purchased template installed and Editable Centerboxes mod installed, customized and working with 3 boxes.
Thank you in advance for any help you can give.
Kimo
Update on this.. So I finally had a little free time to take a look at this, and I'm still stumped.. Can't figure out why you cannot show a products category on the main page when these boxes are in place.
The centerboxes for Featured Products, Specials, and New Products all still appear, but a selected product category does not..
Honestly I am stumped as to why.. I never noticed when I first submitted this mod.. The site I created these middleboxes for was ONLY going to display the middleboxes instead of a products category on the main page..
I am TOTALLY open to help and suggestions..
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Which one is blocked? From muzz' post, I have the impression that if you have both a homepage category listing and a middlebox activated, the middlebox is the one that doesn't show.
I don't know what files are included in the mod; if one of them is /includes/templates/your_template/templates/tpl_index_default.php, that file would be replaced when categories are active by tpl_index_categories.php.
MY HERO!! You are right sir.. The /includes/templates/your_template/templates/tpl_index_default.php is indeed the file where my middlebox code is, and your explanation explains WHY the middleboxes disappear when you turn on the setting to display a category on the main page..
So thinking out loud here (I'll go look of course..) If one wants BOTH the product categories and the middleboxes on the main page, does the way to achieve this require I should ALSO add the middlebox code to the tpl_index_categories.php file too??
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Yes, that should do it.
A more elegant way would be to have the middlebox code in its own file, so it just has to be called by perhaps one new line in the relevant tpl_index_ file. This would make maintaining and improving the middlebox code easier for the future. I have been doing this kind of thing for my mods as I update them.
Oh, and tpl_index_categories.php is also used by interior category listing pages, so if the middleboxes are only supposed to appear on the homepage, you would have to have a test for that, or else put the middlebox call inside the (homepage-only) "$show_welcome" loop.