Page 53 of 57 FirstFirst ... 3435152535455 ... LastLast
Results 521 to 530 of 570
  1. #521
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by Design75 View Post
    EZ-pages are created / edited in tools=> EZ-Pages
    But.....but...I've created the EZ page, it's doesn't appear in my define page manager. Is there a place where I can clearly read the process of creating and editing an EZ page. From what I understand, it seems to be that the whole EZ pages module applies to an easy way to link rather than actually "creating pages". I've taken to manually creating pages because I just could not figure it out. But any help would be appreciated. You'd think that EZ pages would be....well...easy. But looking at this thread there seems to be a heavy amount of confusion.

  2. #522
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: How do EZ-Pages work?

    Quote Originally Posted by joyjoy View Post
    But.....but...I've created the EZ page, it's doesn't appear in my define page manager. Is there a place where I can clearly read the process of creating and editing an EZ page. From what I understand, it seems to be that the whole EZ pages module applies to an easy way to link rather than actually "creating pages". I've taken to manually creating pages because I just could not figure it out. But any help would be appreciated. You'd think that EZ pages would be....well...easy. But looking at this thread there seems to be a heavy amount of confusion.
    EZ pages allows you to create PAGES and LINKS TO PAGES all from the same EZ Pages module.. You do not edit EZ pages with the defined pages editor as EZ pages are NOT defined pages..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #523
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,703
    Plugin Contributions
    123

    Default Re: How do EZ-Pages work?

    They are in your database in the ez_pages table.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  4. #524
    Join Date
    Aug 2011
    Posts
    199
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Worked for me too!
    This should be made sticky. I searched and searched and found the answer today !

    Quote Originally Posted by Ajeh View Post
    That is how it is designed so you can make custom titles ...

    You could try customizing the:
    /includes/modules/meta_tags.php

    using your templates and overrides for:
    /includes/modules/your_template_dir/meta_tags.php

    and customize this code:
    Code:
    // EZ-Pages:
      case 'page':
      $ezpage_id = (int)$_GET['id'];
      $chapter_id = (int)$_GET['chapter'];
      if (defined('META_TAG_TITLE_EZPAGE_'.$ezpage_id)) define('META_TAG_TITLE', constant('META_TAG_TITLE_EZPAGE_'.$ezpage_id));
    to read:
    Code:
    // EZ-Pages:
      case 'page':
      $ezpage_id = (int)$_GET['id'];
      $chapter_id = (int)$_GET['chapter'];
      if (defined('META_TAG_TITLE_EZPAGE_'.$ezpage_id)) {
        define('META_TAG_TITLE', constant('META_TAG_TITLE_EZPAGE_'.$ezpage_id));
      } else {
        define('META_TAG_TITLE', (defined('NAVBAR_TITLE') ? NAVBAR_TITLE . PRIMARY_SECTION : ''));
      }
      if (defined('META_TAG_DESCRIPTION_EZPAGE_'.$ezpage_id)) define('META_TAG_DESCRIPTION', constant('META_TAG_DESCRIPTION_EZPAGE_'.$ezpage_id));

  5. #525
    Join Date
    Dec 2012
    Posts
    607
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Trying to implement a lot of easy pages, with a lot of characters. Product parts manuals and cannot use PDFs!

    What is the best way to use EZ pages without storing data in the database?

    Other than using page2 and page3 method, how can data be pulled, from an outside html page on your own server, utilizing EZ pages?
    Last edited by Kevin205; 5 Nov 2013 at 03:57 PM.
    Using Zen Cart 1.5.1

  6. #526
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How do EZ-Pages work?

    You could create the ez-page as an external link; this would go to the actual html page when clicked, and would be outside the ZC structure.

    You would probably want some standardized HTML wrapping for these pages so they resemble your site, including prominent links to lead back to the ZC structure.

  7. #527
    Join Date
    Dec 2012
    Posts
    607
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Is this the only way that this could be achieved?

    Thanks for the reply.
    Using Zen Cart 1.5.1

  8. #528
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: How do EZ-Pages work?

    Other than using page2 and page3 method, how can data be pulled, from an outside html page on your own server, utilizing EZ pages?
    Define pages are the way to handle external files within Zen Cart. It would take custom coding to make ez-pages do this, and might introduce security risks (one method bears warnings about this).

    There is a define page generator in Plugins that may make the task of creating them easier: http://www.zen-cart.com/downloads.php?do=file&id=566
    Last edited by gjh42; 5 Nov 2013 at 07:10 PM.

  9. #529
    Join Date
    Dec 2012
    Posts
    607
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Thanks Glen.
    Using Zen Cart 1.5.1

  10. #530
    Join Date
    Jun 2009
    Location
    Des Moines, Iowa USA
    Posts
    580
    Plugin Contributions
    0

    Default Re: How do EZ-Pages work?

    Good morning - I dont know if this is where I need to be - but...
    I have read all 53 pages of this thread and my head is swimming. I have just started the need for ez pages and
    I know that I am going about this in the incorrect manner...

    This is what I would like for my informational section to look like:
    http://www.stitchnframeonline.com/in...=index&cPath=2 only instead of linking to cart purchase area I would like to link to informational pages on each subject.

    I have ATTEMPTED to duplicate this in EZpages
    http://www.stitchnframeonline.com/in...d=1&chapter=10

    I do not like the next/continue and previous at the top..

    I am wondering if I need to construct the cover page that has the links in it with define pages(that would be listed in the More Information which would be more desirable) and then use the ezpages as the linking support pages?

    Am I missing something????? I do not totally understand TOC and how that works -I have read FAQ like 3 times.

    Many Thanks Stitchnkitty

 

 
Page 53 of 57 FirstFirst ... 3435152535455 ... 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