Re: Apple Zen Support Thread
Quote:
Originally Posted by
julia44
Ok I got for the most part everything moved around. But I still don't know how to move the search bar below the drop down and remove the links to the left i.e: Home and Login. Also how do I change the font color in the footer? Thanks for your time. The site is
http://www.customcuteness.com btw
You can remove the HOME LOGIN from the header in includes/templates/apple_zen/common/tpl_header.php
You can also remove the search bar code from there, and paste it in includes/templates/apple_zen/common/tpl_main_page.php between <div id="centerColumnOuter"> and it's closing div </div>
Then there will need to be some css changes, but let me know when you've done the above, and I'll help adjust the css.
Re: Apple Zen Support Thread
Thank you so much for getting back to me. I actually went back to the original coding for the header. It is redundant with al the Home's that you see but I can't figure out which one I want to get rid of.
I think I am going to think about it over the weekend and then if I need help come back. To much going on right now and need a break from looking at this. Oh I do have 1 completely different question. How do I change some of the colors in the footer. I changed the links colors but that didn't work because I wanted them white or pink but that also changes the one's on the sitemap and white doesn't work for that page. So I was hoping I could just change the ones in the footer.
Re: Apple Zen Support Thread
double checked, it's on
Here is the item.
Maybe my image is deleted???WHere would it be?
Free Shipping does show up in check out....
Re: Apple Zen Support Thread
Quote:
Originally Posted by
nikki72
double checked, it's on
Here is the item.
Maybe my image is deleted???WHere would it be?
Free Shipping does show up in check out....
No, I checked, the image is located here in your site:
/includes/templates/template_default/images/always-free-shipping.gif
That's where mine is located on my test site.
But try moving it to your includes/templates/apple_zen/images/ folder.
Also, does it show up if you change to the classic template?
You have "Yes, always free shipping' selected for that specific item?
Re: Apple Zen Support Thread
Quote:
Originally Posted by
julia44
Thank you so much for getting back to me. I actually went back to the original coding for the header. It is redundant with al the Home's that you see but I can't figure out which one I want to get rid of.
I think I am going to think about it over the weekend and then if I need help come back. To much going on right now and need a break from looking at this. Oh I do have 1 completely different question. How do I change some of the colors in the footer. I changed the links colors but that didn't work because I wanted them white or pink but that also changes the one's on the sitemap and white doesn't work for that page. So I was hoping I could just change the ones in the footer.
Here is the section you want to remove:
Code:
<!--bof-navigation display-->
<div id="navMainWrapper" class="clearfix">
<div id="navMain">
<div id="navMainLinks">
<ul class="back">
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<?php } } ?>
<?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>
<div id="navMainSearch">
<?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
</div>
</div>
</div>
<!--eof-navigation display-->
Then you want to move this section to tpl_main_page.php
Code:
<div id="navMainSearch">
<?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
</div>
To change specific link colors, you can look at the page source, and get the name of the <div> that is surrounding those links. For example, the <div> surrounding the footer links has the id of "bottomLine", so in the stylesheet.css, you'd put this for white links:
#bottomLine a {color:#ffffff;}
Re: Apple Zen Support Thread
Can anyone tell me how to make "Company Name" a required field when a customer is creating their account?
Re: Apple Zen Support Thread
Quote:
Originally Posted by
hllight
Can anyone tell me how to make "Company Name" a required field when a customer is creating their account?
This would be a great question for the general forum. :smile:
Re: Apple Zen Support Thread
1.But try moving it to your includes/templates/apple_zen/images/ folder.
- this didn't work either
2.Also, does it show up if you change to the classic template?
-no it doesn't ;(
3.You have "Yes, always free shipping' selected for that specific item?
-FREE SHIPPING!
$0.00
Free Shipping Only, at check out for this item, so it's definitely reading this item as free shipping.
Isn't it supposed to show in product listing and the product info? Maybe I should Back Up my site and reinstall the free shipping mode .... not sure where all the files are for it though.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
nikki72
1.But try moving it to your includes/templates/apple_zen/images/ folder.
- this didn't work either
2.Also, does it show up if you change to the classic template?
-no it doesn't ;(
3.You have "Yes, always free shipping' selected for that specific item?
-FREE SHIPPING!
$0.00
Free Shipping Only, at check out for this item, so it's definitely reading this item as free shipping.
Isn't it supposed to show in product listing and the product info? Maybe I should Back Up my site and reinstall the free shipping mode .... not sure where all the files are for it though.
Under "Catalog", "product Types", "product general", the "edit layout", do you have the free shipping image turned on? Also check under "Configuration", "Product Info"
Re: Apple Zen Support Thread
wow OKAY we got it, under products free shipping it was on ..... but under products general it wasn't .... a BIG ThAnK YoU!