Re: Cherry Zen Template Support Thread
Hi Jade,
Yeah the more I hack away at the code, the more I mess it up. :oops:
But wait... are you referring to two different files? This code is in the tpl_ezpages_bar_header.php:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>|
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Where (what file) is this code from?
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<li><a href="http://www.allk-9.com">Home</a></li>|
<li><a href="account/login.html">Order Tracking</a>|</li>
<li><a href="log-off.html">Logoff</a>|</li>
<li><a href="pages/faq-pv-c0-11.html">FAQ</a>|</li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Thanks!
Re: Cherry Zen Template Support Thread
Hi Jade,
Also, how would I do this without the ul? I have class forward because I want the links separated from the other links. And I don't really want the li, I just don't know how to change it. :wacko:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="forward">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> |
<a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Thanks!
Re: Cherry Zen Template Support Thread
Hey Jade Can you take a look at my test site www.homedecoronline.net,
If you click on one of the items you will see towards the buttom that the add to cart, tell a friend, and write a review buttons are not showing up.
I uploaded a set of the purple buttons from the download area and they were working fine but then I did something "I don't know what it is" and now the only place you see these buttons is in the shopping cart if you add an item you can see the update cart buttong.
Can you tell me where I screwed up.
By the way this is not the final design but we are getting there.
Thanks for the template.
Re: Cherry Zen Template Support Thread
Hi, Why I couldn't find category-top in stylesheet.css. I was trying to change the font for categories about navigation bar. Can anyone please help? thanks
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
coolbuys
Hi, Why I couldn't find category-top in stylesheet.css. I was trying to change the font for categories about navigation bar. Can anyone please help? thanks
I asked something similar yesterday, have since tried a bunch of other things & have only succeeded in changing all sections, or none. Hoping someone who knows more than us can help out:dontgetit
Re: Cherry Zen Template Support Thread
Hi Jade,
I actually have a question for the Simple Zen template but couldn't find a thread for that. I just switched to the Simple template and usually make my buttons to match the site or duplicate yours if I need more. But...I can't duplicate this one. Do you, by any chance, have a wishlist button for this template. I would gladly pay for you to make one if not. Just pm me with details.
The template is on my adult site:
http://www.sleeplessnightsonline.com/
Thanks again for yet another great template!
Kelly
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
gsdcypher
Hi Jade,
Yeah the more I hack away at the code, the more I mess it up. :oops:
But wait... are you referring to two different files? This code is in the tpl_ezpages_bar_header.php:
Code:
<!--bof-view cart and checkout now links-->
<div id="ezLinks">
<ul class="back">
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>|
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
</ul>
</div>
<!--eof-view cart and checkout now links-->
Thanks!
Sorry, I got confused with your ezpage links. Ignore my second section of code.
Try changing the above section to this:
Code:
<!--bof-view cart and checkout now links-->
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div id="ezLinks">
<ul class="forward">
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>|
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
</ul>
</div>
<?php }?>
<!--eof-view cart and checkout now links-->
And don't forget to add this to your css:
#ezLinks ul li {display:inline;}
I would use the <li>, the above should keep it from showing dots.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
Hey Jade Can you take a look at my test site
www.homedecoronline.net,
If you click on one of the items you will see towards the buttom that the add to cart, tell a friend, and write a review buttons are not showing up.
I uploaded a set of the purple buttons from the download area and they were working fine but then I did something "I don't know what it is" and now the only place you see these buttons is in the shopping cart if you add an item you can see the update cart buttong.
Can you tell me where I screwed up.
By the way this is not the final design but we are getting there.
Thanks for the template.
Make sure css buttons is off in your admin, "Configuration", "Css Buttons", and/or, "Configuration", "Layout Settings" (at the bottom).
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Snuggle Bug
I've searched & searched for the answer to this & cannot find it at all, please help!
How to I modify the top-level category links in the category sidebox in this template?
I've tried adding a.category-top, I've tried #categories a.category-top, I've tried just about every suggestion in this thread:
http://www.zen-cart.com/forum/showthread.php?t=71511
& none of them have created ANY change (but editing other things in the stylesheet DO work, I'm not editing an unused file). I installed the ch_categories mod that keeps all categories open, but this mod still calls the tpl_categories.php file (which has not been modified), so that should not be causing problems. I am just so frustrated that I haven't been able to figure this out on my own. :frusty:
Is there a different class being used on this template that I should be changing? Or something else?
No, the categories mod you are using no longer uses category-top. View the source of your site after you click on a category... in the source there is no category-top to be found ANYWHERE. You should ask in the thread for that mod if there is one, and you can style that menu in stylesheet_categories_menu.css.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
coolbuys
Hi, Why I couldn't find category-top in stylesheet.css. I was trying to change the font for categories about navigation bar. Can anyone please help? thanks
Not everything is found in the css... if it's not there, you just add it yourself.
.category-top {font-weight:bold;}