Page 44 of 57 FirstFirst ... 34424344454654 ... LastLast
Results 431 to 440 of 570
  1. #431
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Cannot see Ez Pages working

    Quote Originally Posted by magnaromagna View Post
    Hello,
    I added some ez pages but cannot see them with the custom template (but they are working with default template).
    Can you help me to locate which template/files are missing in "new" template section?
    We'd need for information. EZ-Pages can be used to create content or links or external links. What did you use them for?

    What's missing precisely? Is it content that you'd added, or links to get to that content?

    Does default Zen Cart EZ-Page content show, or is all EZ-Page output missing?

    What template are you using?
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  2. #432
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by magnaromagna View Post
    I uploaded all "template default files"into "new template folder" (override them),
    Why?
    Quote Originally Posted by magnaromagna View Post
    then re-uploaded only the files of the new template. Now in public section I could see the ezpages but only the body, not the titles in menu (both in header, in sidebox and footer).
    How to fix it?
    What files did you "reupload" to the new template? In particular, is there an includes/templates/silverfish/templates/tpl_page_default.php file?

    Does your content show up if you switch back to the classic template?
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  3. #433

    Default Re: How do EZ-Pages work?

    Thanks, here the info required:
    Quote Originally Posted by kuroi View Post
    We'd need for information. EZ-Pages can be used to create content or links or external links. What did you use them for?
    to create content
    Quote Originally Posted by kuroi View Post
    What's missing precisely? Is it content that you'd added, or links to get to that content?
    The links (the pages with content are ok)

    Quote Originally Posted by kuroi View Post
    Does default Zen Cart EZ-Page content show, or is all EZ-Page output missing?
    The default template shows the links.

    Quote Originally Posted by kuroi View Post
    What template are you using?
    template "silverfish"

    Quote Originally Posted by kuroi View Post
    Why?
    What files did you "reupload" to the new template? In particular, is there an includes/templates/silverfish/templates/tpl_page_default.php file?
    Yes, is present, see code:

    PHP Code:
    <?php
    /**
     * Page Template
     *
     * This is the template used for EZ-Pages content display.  It is named "tpl_page_default" instead of ezpage for friendlier 
     * appearance
     *
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_page_default.php 2741 2005-12-30 19:58:21Z birdbrain $
     */
    ?>
    <div class="centerColumn" id="ezPageDefault">
    <h1 id="ezPagesHeading"><?php echo $var_pageDetails->fields['pages_title']; ?></h1>

    <?php if (EZPAGES_SHOW_PREV_NEXT_BUTTONS=='2' and $counter 1) { ?>
    <div id="navEZPageNextPrev">
          <a href="<?php echo $prev_link?>"><?php echo $previous_button?></a>
          <?php echo zen_back_link() . $home_button?></a>
          <a href="<?php echo $next_link?>"><?php echo $next_item_button?></a>
        </div>
    <?php } elseif (EZPAGES_SHOW_PREV_NEXT_BUTTONS=='1') { ?>
        <div id="navEZPageNextPrev"><?php echo zen_back_link() . $home_button '</a>'?></div>
    <?php  ?>

    <?php

    // vertical TOC listing
    // create a table of contents for chapter when more than 1 page in the TOC
      
    if ($pages_listing->RecordCount() > and EZPAGES_SHOW_TABLE_CONTENTS == '1') {?>
    <div id="navEZPagesTOCWrapper">
    <h2 id="ezPagesTOCHeading"><?php echo TEXT_EZ_PAGES_TABLE_CONTEXT?></h2>
    <div id="navEZPagesTOC">
    <ul>
    <?php while (!$pages_listing->EOF) {
    // could be used to change classes on current link and toc (table of contents) links
          
    if ($pages_listing->fields['pages_id'] == $_GET['id']) { ?>

    <li><?php echo CURRENT_PAGE_INDICATOR?><a href="<?php echo zen_ez_pages_link($pages_listing->fields['pages_id']);?>"><?php echo $pages_listing->fields['pages_title']; ?></a></li>

    <?php } else { ?>

    <li><?php echo NOT_CURRENT_PAGE_INDICATOR?><a href="<?php echo  zen_ez_pages_link($pages_listing->fields['pages_id']); ?>"><?php echo $pages_listing->fields['pages_title']; ?></a></li>
    <?php
          
    }
          
    $pages_listing->MoveNext();
        } 
    ?>
    </ul>
    </div>
    </div>
    <?php
        
    }
    ?>
        <div><?php echo $var_pageDetails->fields['pages_html_text']; ?></div>
    </div>
    Does your content show up if you switch back to the classic template?
    Yes, if I switch to classic template I see the ez page links.

    Thank you for support

  4. #434

    Default Re: How do EZ-Pages work?

    Hello, any help?
    Is the last issue before to have my zen cart ready

  5. #435
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: How do EZ-Pages work?

    The Silverfish template does support the EZ-Pages links and the code that generates them is working as you see them when you switch back tot he Classic template. So the problem lies somewhere in your specific version of the Silverfish template.

    Since say you've overridden every Zen Cart file (which is a very odd thing to do) and it's not clear where you got to files to do so from, and you haven't answered the question about what files your then "reuploaded", it's difficult to advise further. But you might want to check your tpl_header.php file if you made any changes to it, to ensure that you haven't accidentally remove its inclusion (towards the bottom of the file and clearly marked if it's there).
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  6. #436

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by kuroi View Post
    Since say you've overridden every Zen Cart file (which is a very odd thing to do) and it's not clear where you got to files to do so from, and you haven't answered the question about what files your then "reuploaded", it's difficult to advise further. But you might want to check your tpl_header.php file if you made any changes to it, to ensure that you haven't accidentally remove its inclusion (towards the bottom of the file and clearly marked if it's there).
    Hello,
    the files I have re-uploaded are the ones of the template. I:
    - uploaded into /silverfish all files of /default_template
    - then I uploaded into /silverfish all files of /silverfish template
    I made this to be sure that in /silverfish will not miss any file

    Checked tpl_header and seems ok. But the ez links are note visible both in sidebar and footer, not only in the header.

    Maybe I have to re-install all?
    Thank you

  7. #437
    Join Date
    Dec 2010
    Posts
    35
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Hi all;
    I created EZpages for recipes I am putting together for my site. Is there any way I can put pictures in EZpages next to the recipes?


    Thanks again
    Min

  8. #438

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by Minu View Post
    Is there any way I can put pictures in EZpages next to the recipes?
    If you haven't already done so, in the admin go to:

    Confguration>>My Store


    1. Scroll all the way to the bottom where it says HTML Editor
    2. Set it to "HTMLAREA"
    3. Save changes
    4. Go to the EZ Page you want to add an image to
    5. Place your cursor where you want the image to be
    6. Click the "insert/modify" image button
    7. Type in the URL where the image resides on your server
    8. If the image is not yet uploaded to your server, upload it first
    9. Play around with the settings (and use the preview button) until you have it as you like it.
    10. Save your EZ page when done


    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  9. #439
    Join Date
    Dec 2010
    Posts
    35
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Thanks Script for your help.
    I did everything except the URL every time I put in the URL it shows the link is broken. Please help to write the right URL

    Thanks again

  10. #440

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by Minu View Post
    I did everything except the URL every time I put in the URL it shows the link is broken. Please help to write the right URL
    It's difficult to provide you with the correct syntax for the link when I don't know the image file name or the image file path (i.e. where it is stored on your server).

    So let me give you some examples....

    1. If you have uploaded your images into the image folder within your cart, and if your cart is loaded at the root of your server, then try this:

    Code:
    http://www.YourStoreURL/images/ImageFileName.jpg (or .gif or .png or whatever it is)
    2. If you have uploaded your images to the image folder within your cart and if your cart is loaded into an already existing website, then try this:

    Code:
    http://www.YourSiteURL/YourStoreName/images/ImageFileName.jpg (or .gif or .png or whatever it is)
    3. If you have uploaded your images into a folder other than images, then you would use that folder name instead of 'images'.

    The possibilities are fairly endless depending how you have your website set up, your store set up, your files set up, your files named, and where you store them.

    If you are unable to figure it out, please provide the following information:


    • A link to your store
    • The file path to where the image is stored on your server
    • The name of the image file
    Last edited by ScriptJunkie; 11 Feb 2011 at 10:23 PM. Reason: Added Code Tags
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

 

 
Page 44 of 57 FirstFirst ... 34424344454654 ... LastLast

Similar Threads

  1. v154 Links ON ez-pages TO OTHER turned-off ez-pages don't work after upgrade
    By anduril3019 in forum Upgrading to 1.5.x
    Replies: 2
    Last Post: 19 May 2015, 09:12 AM
  2. how do i get javascript to work in the ez pages?
    By warroyo90 in forum General Questions
    Replies: 2
    Last Post: 28 Mar 2012, 05:14 AM
  3. How can I get my CSS navigation tabs to work for groups of similar pages?
    By sifuhall in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 27 Nov 2009, 07:57 PM
  4. Replies: 3
    Last Post: 22 Jul 2008, 12:01 AM
  5. Bwahahaha How do I get ez-pages to work?
    By hodgejr in forum General Questions
    Replies: 7
    Last Post: 8 Oct 2007, 09:10 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