THanks you are correct and I too have made the same edits that you have made :-) in your post here
https://www.zen-cart.com/showthread....31#post1268331
Printable View
THanks you are correct and I too have made the same edits that you have made :-) in your post here
https://www.zen-cart.com/showthread....31#post1268331
Hi Anne,
Would you please be so kind to shed some light on a troublesome CSS issue I am having with my site. I am so close to having the site the way I envisioned but for this pesky problem with the display of the Heading for "New Products For May" etc on the home page.
The title appears to half show / load in firefox however in google Chrome I can see the headings in full with no trouble
http://www.beehavendesignz.com/shop/
I am leading to it being a CSS problem but 6 hours later I am still reading CSS and searching the web for answers but am hitting a wall :-( would you have a suggestion I could try to fix this issue?
Any suggestions are greatly appreciated :-)
Thank you.
Hi, I have recently installed this template on my website and am very satisfied in the over all. I just have two questions:
1) I want to add a third tab at the top of the page for manufacturers, can I do this through the admin? If not which file do I have to alter?
2) I want to have a Specifications tab in some of my products. In my old site I used a plugin and all I had to do was write in the script while writing the product description: <!--%Specifications%--> and that would add the tab, since you have tabbed products in the template I didn't want to touch it. Is there a way to add a tab to a product other than your predefined tabs?
Thanks.
1. You can edit the includes/templates/westminser_new/templates/tpl_modules_mobile_categories_tabs.php file
2. You can add another tab by editing the includes/templates/westminser_new/templates/tpl_product_info_display.php file. If the info is the same for each product you can create a banner and add your info to the banner. If you want different info for each product you will need to create a custom product field and add it to a new tab.
Thanks,
Anne
Hi Anne,
may I request the addition of the following code(s) to your upcoming v1.4 of this great template.
1. includes/templates/westminster_new/common/tpl_header.php
change
to thisPHP Code:
<?php if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off"></i><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-gear"></i><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
This adds the customer name to the header when logged in.PHP Code:
<?php if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo ($_SESSION['customer_first_name'].' '.$_SESSION['customer_last_name']);?></a> | </li>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off"></i><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-gear"></i><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
2. includes/templates/westminster_new/templates/tpl_modules_mobile_categories_tabs.php
to thisPHP Code:
<ul class="slimmenu">
<li class="test"><a href="<?php HTTP_SERVER . DIR_WS_CATALOG;?>" class="mshop"><?php echo HEADER_TITLE_CATEGORIES; ?></a>
Adds the 'Home' link to the memnu bar if NOT on Home page.PHP Code:
<ul class="slimmenu">
<?php if (!$this_is_home_page) { ?>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a>
<?php } ?>
<li class="test"><a href="<?php HTTP_SERVER . DIR_WS_CATALOG;?>" class="mshop"><?php echo HEADER_TITLE_CATEGORIES; ?></a>
Thanks
Cheers / Frank
Hi Anne,
Thanks for your reply.
I know I have to edit the tpl_modules_mobile_categories_tabs.php file in order to add the manufacturers tab however I don't know much in php and couldn't figure out what I should add in order for this tab to be created and take the manufacturers information from my db. As for the tab in the products page - I will look into it.
Thanks again.