Page 115 of 305 FirstFirst ... 1565105113114115116117125165215 ... LastLast
Results 1,141 to 1,150 of 3042
  1. #1141
    Join Date
    Aug 2007
    Posts
    84
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    I'm not seeing any images in Firefox... did you empty your cache?
    No I rather unorthodoxly replaced the image with a 1px transparant .gif.

    Right now my problem is that when I list more than 1 product per category eveything disappears except this: "Displaying 1 to 2 (of 2 products)" I know I've changed something to let this happen but I'm damned if I can remember what.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by actorxfactor View Post
    No I rather unorthodoxly replaced the image with a 1px transparant .gif.

    Right now my problem is that when I list more than 1 product per category eveything disappears except this: "Displaying 1 to 2 (of 2 products)" I know I've changed something to let this happen but I'm damned if I can remember what.
    If you go to "configuration" "product listing" do you have ONLY the images turned on? try turning on a product name as well.

  3. #1143
    Join Date
    Aug 2007
    Posts
    84
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    If you go to "configuration" "product listing" do you have ONLY the images turned on? try turning on a product name as well.
    You have NO idea how grateful I am

    TYVM

    Gordon

  4. #1144
    Join Date
    Aug 2007
    Posts
    84
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi, OK after hours of meddling I'm stuck on the following: I would like to replace the "Tell a friend about us" button with my own button linking it to an existing page.
    Thanks in advance
    Gordon!

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by actorxfactor View Post
    Hi, OK after hours of meddling I'm stuck on the following: I would like to replace the "Tell a friend about us" button with my own button linking it to an existing page.
    Thanks in advance
    Gordon!
    Have you found the tell a friend section? (includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php)
    You could just replace all the code in that section with your own button and link. I'm assuming you want these links to do the same thing on every product. So, just hard code it, like this:

    <a href="link_here.htm" ><img src="image_here.jpg" alt="alt text here" width="100" height="20 /></a>

  6. #1146
    Join Date
    Aug 2007
    Posts
    84
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Have you found the tell a friend section? (includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php)
    You could just replace all the code in that section with your own button and link. I'm assuming you want these links to do the same thing on every product. So, just hard code it, like this:

    <a href="link_here.htm" ><img src="image_here.jpg" alt="alt text here" width="100" height="20 /></a>
    Thanks you're too kind...I was trying to exactly as you suggested but to no avail!

    Can you help me with this:

    When I have only one product in a category it displays exactly as I need it to, but when there are 2 or more products in one category the text becomes centred and the "apply now" button is gone. I was wondering if there is a way around this.

    Ta,
    Gordon

  7. #1147
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you! Worked great.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by actorxfactor View Post
    Thanks you're too kind...I was trying to exactly as you suggested but to no avail!

    Can you help me with this:

    When I have only one product in a category it displays exactly as I need it to, but when there are 2 or more products in one category the text becomes centred and the "apply now" button is gone. I was wondering if there is a way around this.

    Ta,
    Gordon
    There is an issue with your apply now button, you have your local file address there, and you didn't close the link you should have this:
    <a href="http://www.actorxfactor.co.uk/index.php?main_page=page&amp;id=2&amp;chapter=100"><img src="includes/templates/apple_zen/buttons/english/apply_now.gif" alt="apply" productdateadded="" class="docGeneral centeredContent" height="21" width="125"></a><br />

  9. #1149
    Join Date
    May 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    I'm not sure what you're referring to. I just see the icon and the name are justified to the left, and there's nothing to the right of it because nothing belongs there. What would you like there to the right of the icon? It looks perfectly normal to me. Or perhaps you're speaking of something else, and it is browser specific. What browser are you using, and could you explain the issue and what you'd like instead a little more.

    Thanks!
    Yes, thats it. I don't particularly like the gap to the right of the icon where nothing actually belongs there. Can I put a rotating banner or something to the right and if so which template or code should I use.

    Thanks


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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by BUK24hours View Post
    Yes, thats it. I don't particularly like the gap to the right of the icon where nothing actually belongs there. Can I put a rotating banner or something to the right and if so which template or code should I use.

    Thanks

    Ok, it will take some doing, but here's the process:

    Open up inlcudes/templates/YOUR_TEMPLATE/common/tpl_main_page.php

    You will cut this code out (to be pasted in another file shortly):

    Code:
                <?php
      if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
        if ($banner->RecordCount() > 0) {
    ?>
                <div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
                <?php
        }
      }
    ?>
    Then open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php, and paste the above code right after this:

    Code:
    <h1 id="productListHeading"><?php echo $breadcrumb->last(); ?></h1>
    Also open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_categories.php, and paste the same code right after this:

    Code:
    <h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1>
    Then, add this to your css:

    #bannerThree {float:right;}

    Then you go to "Tools" "Banner Manager", and add the banner that you want.

    Then go to "Configuration", "Layout Settings", and turn on the Banner 3 section by entering the group the banner you added is in. (if you added it to "BannersAll", you enter "BannersAll" in "Banner Display Groups - Header Position 3"

    Hope that helps!

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR