Zen Cart Logo
Forums / Addon Templates / Apple Zen Support Thread

Apple Zen Support Thread

Views: 855,550

Results 2,461 to 2,480 of 3,042
11 Feb 2009, 4:13 PM
#2461
julia44 avatar

julia44

Zen Follower

Join Date:
Dec 2006
Posts:
129
Plugin Contributions:
0

Apple Zen Support Thread

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

11 Feb 2009, 8:45 PM
#2462
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

nikki72:

I am sure this is a simple oversight on my part and will be a simple fix.........however I can not see it.

When I make an item "free shipping" the icon doesn't show up on my product info page....... it's in the template. I do have the Tabbed Products Pro installed but I disabled it to see if that was the problem and the icon still didn't show up :(

Do you have the "modules", "Shipping", "Free Shipping" enabled in your admin?

11 Feb 2009, 8:47 PM
#2463
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

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.

11 Feb 2009, 9:30 PM
#2464
julia44 avatar

julia44

Zen Follower

Join Date:
Dec 2006
Posts:
129
Plugin Contributions:
0

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.

12 Feb 2009, 3:24 AM
#2465
nikki72 avatar

nikki72

New Zenner

Join Date:
Dec 2008
Posts:
97
Plugin Contributions:
0

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....

12 Feb 2009, 12:41 PM
#2466
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

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?

12 Feb 2009, 1:45 PM
#2467
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

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:

<!--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

            <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;}

12 Feb 2009, 3:24 PM
#2468
hllight avatar

hllight

Zen Follower

Join Date:
May 2007
Location:
Port Charlotte, FL
Posts:
125
Plugin Contributions:
0

Re: Apple Zen Support Thread

Can anyone tell me how to make "Company Name" a required field when a customer is creating their account?

12 Feb 2009, 4:44 PM
#2469
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

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:

12 Feb 2009, 5:00 PM
#2470
nikki72 avatar

nikki72

New Zenner

Join Date:
Dec 2008
Posts:
97
Plugin Contributions:
0

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.

12 Feb 2009, 6:15 PM
#2471
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

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"

12 Feb 2009, 6:27 PM
#2472
nikki72 avatar

nikki72

New Zenner

Join Date:
Dec 2008
Posts:
97
Plugin Contributions:
0

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!

13 Feb 2009, 3:04 PM
#2474
nikki72 avatar

nikki72

New Zenner

Join Date:
Dec 2008
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hey Jettrue,

I need some advice....
I only want certain boxes to show on the front page, it's best to do this through the css, right? I just wanted to know what would load the fastest.

Also do you know how to compress the css, I do a speed check that's given in the FAQ here and that's a suggestion given. I have tried to copy any add on's to my css so I do not have tons of them.

Also what class am I looking for to change the look of the my account page, mostly I am looking at the table of prev. orders?

Thanks
Nicole

13 Feb 2009, 3:23 PM
#2475
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

nikki72:

Hey Jettrue,

I need some advice....
I only want certain boxes to show on the front page, it's best to do this through the css, right? I just wanted to know what would load the fastest.

Also do you know how to compress the css, I do a speed check that's given in the FAQ here and that's a suggestion given. I have tried to copy any add on's to my css so I do not have tons of them.

Also what class am I looking for to change the look of the my account page, mostly I am looking at the table of prev. orders?

Thanks
Nicole
Yes, you can hide boxes with css. View the source of the page, and get the id of the box you want to hide.

Then in the css, you'd put this:

#indexHomeBody #idofBoxHere {display:none;}

Then on your account page, view the page source again, and get the id or class of the section you want to change there. If it says id="nameofsectionhere", you'd style it in the css with #nameofsectionhere {}. If it says style="nameofsectionhere", you'd style it with .nameofsectionhere {}

13 Feb 2009, 3:32 PM
#2476
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

Didee:

Hi again. How can I align my shopping cart checkboxes. thankshttp://stitchwith.me/index.php?main_page=product_info&cPath=5_9&products_id=1

You can force this by giving h4.optionName a width:

h4.optionName {
line-height:1.5em;
padding-right:1em;
width:100px;
}

100px should be wide enough, unless you have some really long option names. :)

13 Feb 2009, 3:42 PM
#2477
nikki72 avatar

nikki72

New Zenner

Join Date:
Dec 2008
Posts:
97
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

Yes, you can hide boxes with css. View the source of the page, and get the id of the box you want to hide.
Then in the css, you'd put this:
#indexHomeBody #idofBoxHere {display:none;}
Thanks for the quick reply! How would you only show a box on the the main page.... my newsletter subsribe I only want on the main page what would that statement be?

13 Feb 2009, 4:21 PM
#2478
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

nikki72:

Thanks for the quick reply! How would you only show a box on the the main page.... my newsletter subsribe I only want on the main page what would that statement be?

Does this work?

#indexHomeBody #bannerbox2{display:inline;}
#bannerbox2 {display:none;}

(instead of #bannerbox2, enter the id of the newsletter subscribe box)

14 Feb 2009, 2:00 AM
#2479
didee avatar

didee

Zen Follower

Join Date:
Jan 2009
Location:
Queensland, Australia
Posts:
115
Plugin Contributions:
0

Re: Apple Zen Support Thread

thanks for quick reply, excuse my ignorance, but where do I go to to do this lol
thanks

14 Feb 2009, 2:28 AM
#2480
didee avatar

didee

Zen Follower

Join Date:
Jan 2009
Location:
Queensland, Australia
Posts:
115
Plugin Contributions:
0

Re: Apple Zen Support Thread

Didee:

thanks for quick reply, excuse my ignorance, but where do I go to to do this lol
thanks

oops found it. thank for your help once again. works good now.:smile: