Page 15 of 47 FirstFirst ... 5131415161725 ... LastLast
Results 141 to 150 of 462
  1. #141
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jettrue View Post
    On the product page? You'd have to open up includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php and find the "add to cart" code, copy it, and paste it where you would like it to show up.
    Excelent! Thank you again....

  2. #142
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jettrue View Post
    On the product page? You'd have to open up includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php and find the "add to cart" code, copy it, and paste it where you would like it to show up.
    I cannot get the "top" location for "add to cart" in product display to accept anything but '1'. I mean if I indicate quantity 3 it will only show 1 in the shopping cart. I copied 26 lines (88-114) to a different location, but obviously I need something else as well.. test site at:
    http://test.pridepak.com/Pridepak4/

  3. #143
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by Sunabac View Post
    I cannot get the "top" location for "add to cart" in product display to accept anything but '1'. I mean if I indicate quantity 3 it will only show 1 in the shopping cart. I copied 26 lines (88-114) to a different location, but obviously I need something else as well.. test site at:
    http://test.pridepak.com/Pridepak4/
    well I'll just drop the second "add to cart"; that's working..

  4. #144
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Similar to issue above...

    I want the "add to cart" box on the product display page to be directly under the price, next to the photo of the item.

    So far I have moved the "add to cart" code block up and under the <!--eof Product Price block --> on the includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php page,

    but the button remains on the right of the page no matter where I place the block, is there something in the code that makes it stay on the right? or is it a stylesheet thing? if so, how do I move it to the left and under the price and over the product description?

  5. #145
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by dharma View Post
    Similar to issue above...

    I want the "add to cart" box on the product display page to be directly under the price, next to the photo of the item.

    So far I have moved the "add to cart" code block up and under the <!--eof Product Price block --> on the includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php page,

    but the button remains on the right of the page no matter where I place the block, is there something in the code that makes it stay on the right? or is it a stylesheet thing? if so, how do I move it to the left and under the price and over the product description?

    Just open up your stylesheet, and change:

    Code:
    #cartAdd {
    	float:right;

    to

    Code:
    #cartAdd {
    	float: left;
    By the way, I got your PM about the new buttons needed for this template. I will do that today! :-)

  6. #146
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by Sunabac View Post
    I cannot get the "top" location for "add to cart" in product display to accept anything but '1'. I mean if I indicate quantity 3 it will only show 1 in the shopping cart. I copied 26 lines (88-114) to a different location, but obviously I need something else as well.. test site at:
    http://test.pridepak.com/Pridepak4/
    I'm guessing there is no way to have two on one page. Because I think perhaps the customer would have to enter the right quantity into both boxes before pressing add to cart.

  7. #147
    Join Date
    Jan 2005
    Posts
    26
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    It has been a couple of years since I updated my Zencart, and things have really changed. I have looked at all the new 1.3.7 templates and really like Simple Zen. However, I would like to create a different header image which includes a couple of additional links. I was wondering if there is a tutorial that would be able to walk someone step by step through the process? If there is no tutorial, would someone be interested in providing that information?

    Your help is appreciated.

  8. #148
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    I've updated simple zen for 1.3.7 (may take a bit to show up in the download section).

    Here are the changes made (from readme.txt):
    v1.9 updated includes/templates/simple_zen/common/tpl_main_page for 1.3.7. Have moved the older tpl_main_page.php to the "pre-1.3.7 files" folder. Updates to the stylesheet (cosmetic tweaks, plus 1.3.7 updates). Also added buttons that are new in 1.3.7 in the includes/templates/simple_zen/buttons/english/ folder. Small changes were made to includes/templates/simple_zen/common/tpl_header.php

  9. #149
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by metmax View Post
    It has been a couple of years since I updated my Zencart, and things have really changed. I have looked at all the new 1.3.7 templates and really like Simple Zen. However, I would like to create a different header image which includes a couple of additional links. I was wondering if there is a tutorial that would be able to walk someone step by step through the process? If there is no tutorial, would someone be interested in providing that information?

    Your help is appreciated.
    I assume you're talking about the "shopping cart, contact us, my account" image? There is no step by step tutorial to do that. My advice would be (the easiest way) to create a new header image that has the links in roughly the same spot, so all you'd have to do is upload a new /includes/templates/simple_zen/images/topnav.gif.

    If you want different links for the new header, you'd change the links in includes/languages/english/simple_zen/header.php.

    If you want to change widths and such for the links, you'd need to manage that with the css in stylesheet_new.css. Its fairly complicated, but you'd want to look for the "#tagline" tags.

  10. #150
    Join Date
    Jan 2005
    Posts
    26
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jettrue View Post
    I assume you're talking about the "shopping cart, contact us, my account" image? There is no step by step tutorial to do that. My advice would be (the easiest way) to create a new header image that has the links in roughly the same spot, so all you'd have to do is upload a new /includes/templates/simple_zen/images/topnav.gif.

    If you want different links for the new header, you'd change the links in includes/languages/english/simple_zen/header.php.

    If you want to change widths and such for the links, you'd need to manage that with the css in stylesheet_new.css. Its fairly complicated, but you'd want to look for the "#tagline" tags.
    Thanks for responding. I guess I will see if I can get it to work on my own.

 

 
Page 15 of 47 FirstFirst ... 5131415161725 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg