Page 121 of 326 FirstFirst ... 2171111119120121122123131171221 ... LastLast
Results 1,201 to 1,210 of 3251
  1. #1201
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hey Jettrue,

    Now that the header and footer is good to go, what do you know about the sitemap and defined pages?

    I added a couple of defined pages. They are in the information sidebox and working but they don't show up on the sitemap.

    *And neither do the ezpages in my important links sidebox....

    Do you know of any ideas, mods, etc that might fix those issues?

    Thanks!

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by adoy View Post
    any help on my prob? thank you so much!
    There is no problem. The call for price is supposed to be a button, just like it is, it is not supposed to be a link.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by gsdcypher View Post
    Hey Jettrue,

    Now that the header and footer is good to go, what do you know about the sitemap and defined pages?

    I added a couple of defined pages. They are in the information sidebox and working but they don't show up on the sitemap.

    *And neither do the ezpages in my important links sidebox....

    Do you know of any ideas, mods, etc that might fix those issues?

    Thanks!
    Open up includes/templates/YOUR_TEMPLATE/templates/tpl_sitemap.php and add the links there.

    Under "Tools", "Ezpages", do you have them turned on for the sidebox?

  4. #1204
    Join Date
    Sep 2005
    Posts
    52
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hey there!
    Thank you so much for the fabulous template - I really like the way it looks.
    I am having one problem, though. I've got Zen Lightbox & Image Handler 2 installed, but I'm not seeing any of my additional images on my products. I'm not sure what the problem is. Also, I'd like those additional images to be placed right below the main image, but I'm not sure how to get them there. Any help would be greatly appreciated! Here's an example:

    http://www.butternugsquash.com/store...roducts_id=782

  5. #1205
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jettrue,

    I added the following links to the includes\templates\cherry_zen\templates\tpl_site_map_default.php but they don't show up on the sitemap.

    Code:
     
    <?php if (DEFINE_PAYMENT_OPTIONS_STATUS <= '1') { ?>
                <li><?php echo '<a href="' . zen_href_link(FILENAME_PAYMENT_OPTIONS) . '">' . BOX_INFORMATION_PAYMENT_OPTIONS . '</a>'; ?></li>
    <?php } ?>    
    
    <?php if (DEFINE_RETURN_POLICY_STATUS <= '1') { ?>
                <li><?php echo '<a href="' . zen_href_link(FILENAME_RETURN_POLICY) . '">' . BOX_INFORMATION_RETURN_POLICY . '</a>'; ?></li>
    <?php } ?>
    Well... I added one ezpage that has sidebox turned on and it shows in the important links sidebox, but not in the sitemap. And I added 6 other ezpages that don't have the header, footer or sidebox turned on. The way to get to those is via links on the one ezpage that is turned on in the sidebox.
    http://www.allk-9.com/pages/dog-training-pv-c0-20.html
    They don't show in the site map either.

    Thanks.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by gsdcypher View Post
    Hi Jettrue,

    I added the following links to the includes\templates\cherry_zen\templates\tpl_site_map_default.php but they don't show up on the sitemap.

    Code:
     
    <?php if (DEFINE_PAYMENT_OPTIONS_STATUS <= '1') { ?>
                <li><?php echo '<a href="' . zen_href_link(FILENAME_PAYMENT_OPTIONS) . '">' . BOX_INFORMATION_PAYMENT_OPTIONS . '</a>'; ?></li>
    <?php } ?>    
    
    <?php if (DEFINE_RETURN_POLICY_STATUS <= '1') { ?>
                <li><?php echo '<a href="' . zen_href_link(FILENAME_RETURN_POLICY) . '">' . BOX_INFORMATION_RETURN_POLICY . '</a>'; ?></li>
    <?php } ?>
    Well... I added one ezpage that has sidebox turned on and it shows in the important links sidebox, but not in the sitemap. And I added 6 other ezpages that don't have the header, footer or sidebox turned on. The way to get to those is via links on the one ezpage that is turned on in the sidebox.
    http://www.allk-9.com/pages/dog-training-pv-c0-20.html
    They don't show in the site map either.

    Thanks.
    No, they wouldn't automagically show up in the site map, just because you made them.

    Do you have these two pages set to "1" in your admin, under "Configuration", "Define Page Status"?

    Also, make sure you pasted them in a spot where they are not surrounded by some other coding that may be stopping them.

  7. #1207
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hmmm... even though those defined pages show up in the information sidebox and work, they are not in the admin, under "Configuration", "Define Page Status".....

    Guess I still need to add something somewhere???

    The ezpages I made that are not showing are just surrounded by alignment code:

    Code:
    <p align="justify">
    and a back link at the bottom
    thanks

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by gsdcypher View Post
    Hmmm... even though those defined pages show up in the information sidebox and work, they are not in the admin, under "Configuration", "Define Page Status".....

    Guess I still need to add something somewhere???

    The ezpages I made that are not showing are just surrounded by alignment code:

    Code:
    <p align="justify">
    and a back link at the bottom
    thanks
    Ok, since you added them, and they are not default zen define pages, remove the php code around them (the code is there for default zen define pages):

    <li><?php echo '<a href="' . zen_href_link(FILENAME_PAYMENT_OPTIONS) . '">' . BOX_INFORMATION_PAYMENT_OPTIONS . '</a>'; ?></li>
    <li><?php echo '<a href="' . zen_href_link(FILENAME_RETURN_POLICY) . '">' . BOX_INFORMATION_RETURN_POLICY . '</a>'; ?></li>

  9. #1209
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Bingo! That worked like a charm for the defined pages. The now show in the sitemap. Thanks.


    Now just the ezpages from the important links sidebox that I added. How do we get all of those to show???

    Thanks.

  10. #1210
    Join Date
    Feb 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Thanks so much for your help!
    Andrea
    www.thelittleonlinecardshop.com.au

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  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. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

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