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.
For anyone else who want's to put a second logo in there header this is how I did it
/public_html/includes/templates/abbington_mega/common/tpl_header.php
<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
put this below the above line<div id="logo-2"><img src="includes/templates/abbington_mega/images/logo-2.png" alt="put your alt text here" /></div>
/public_html/includes/templates/abbington_mega/css/stylesheet.css
#logo-2 {float: right;margin-top:-15px;} place this at the bottome of your style sheet, you may have to play with the styling.
Last edited by discoverytdi; 14 Sep 2012 at 11:23 AM.
What ever your doing remember to KISS ( Keep It Simple Stupid )
I have a problem. The problem is I have hoverbox3 installed and when I clicks on the "larger image", a new window will open and the menu bar is somehow on top of the picture. Does anybody have any ideas they can share to correct this. Thank you in advance. In hoverbox3 stylesheet there is no z-index so I stump.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Last edited by picaflor-azul; 23 Sep 2012 at 01:05 AM.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Thank you for your help. I found out what was going on. There's a setting in admin/configuration/hover box 3 configurations for the
Z-Index for HoverBox. I don't know how I miss that. What I did was raised the Z-Index for hovebox higher than the stylesheet_mega_menu Z-Index and problem solved. Very nice template by the way. Thanks again.
Last edited by countrycharm; 23 Sep 2012 at 04:27 PM.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Hi Anne,
I am trying to locate the parameter in the CSS that sets the Attribute Dropdown font size. I found the one that changes title, attribute and other fonts on product info page, but I only want to change the attribute font and nothing else.
Thanks for your help.
Hello Anne,
I am having an issue with Simple Google Analytics since changing to your template. I have since established that it is template specific however I cannot make this adjustment as the file doesn't appear to be there;
Do I copy /includes/templates/common/tpl_main_page.php and insert the above code then rename it /includes/templates/abbington_mega/common/tpl_main_page.php ??#### PART A: #### At the bottom of /includes/templates/[your_template]/common/tpl_main_page.php
Copy and paste the following lines of code (found below) just before the </body> tag:
<?php
if (GOOGLE_ANALYTICS_TRACKING_TYPE == "Asynchronous") {
// Do nothing
} else {
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
}
?>
cheers,
Mike
I have successfully completed part B below and configured in admin;
#### PART B: ####
At the bottom of /includes/templates/[your_template]/common/html_header.php
Copy and paste the following lines of code (found below) just before the </head> tag:
<?php
/* Begin Simple Google Analytics */
if (in_array($current_page_base,explode(",",'popup_image,popup_image_additional,pop up_cvv_help,popup_coupon_help,popup_attributes_qty_prices,popup_search_help,popu p_shipping_estimator')) ) {
//Skip outputting the tracking code as this is a pop-up window
} else { // Print tracking code to page
if (GOOGLE_ANALYTICS_TRACKING_TYPE == "Asynchronous") {
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
}
} // end if for page determination
/* End Simple Google Analytics */
?>
Bookmarks