i am having the country problem in drop down menu when signing up.
I use cherry skin.
You choose another country and get error to choose your country first which has already been done.
Here is the site
http://stickersuperstore.com.au/
(Sorry I posted this in another thread also)
When there are no Specials, a blank page displays...
I could not get the message to work that Jade suggested here and elsewhere without returning a blank page when there were specials (ironic, yes!). For now instead of an omnipresent specials link, I decided to go with activating the Specials link in the drop down menu only when specials exist. Here is the solution for the standard zen disappearing specials link for the dropdown:
OPEN \includes\templates\apple_zen\common\tpl_drop_menu.php
FIND
REPLACE WITHCode:<li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
Code:<?php if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') { $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1"); if ($show_this->RecordCount() > 0) { echo '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . HEADER_TITLE_SPECIALS . '</a>' . '</li>'; } } ?>
Thanks, Cartguin...Re: When there are no Specials, a blank page displays...
that worked!
This is fixed in the latest version of the template (though it is a zen cart issue, not template specific), though if you use the search feature of this thread you'll find complete instructions on fixing it. There's one post of mine with two steps, then a few posts later, I list a third step that I had forgotten.
Where in the css whould I add this? I added it to the stylesheet.css and it did not do anything. See below.
I would like the category/subcategory heading to be centered over the category/subcategory listings.Code:* html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #navSupp { background:none!important; /* Hides the transparent shadows from older versions of IE */ } #productListHeading { text-align:center; } #centerColumnWrapper { background:url(../images/shadowRight.png) repeat-y 100% 0; } #centerColumnWrapperb { background:url(../images/shadowLeft.png) repeat-y 0 0; } #navSupp { background:url(../images/shadowAlpha_bot.png) repeat-x top; }
Last edited by jdhone; 1 Jul 2008 at 09:18 PM.
Bookmarks