Zen Cart Logo
Forums / General Questions / How do EZ-Pages work?

How do EZ-Pages work?

Views: 245,825

Results 521 to 540 of 570
08 Jun 2013, 07:56
#521
joyjoy avatar

joyjoy

Totally Zenned

Join Date:
Sep 2010
Posts:
611
Plugin Contributions:
0

How do EZ-Pages work?

Design75:

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.

11 Jun 2013, 23:30
#522
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: How do EZ-Pages work?

joyjoy:

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..

28 Jul 2013, 19:06
#523
swguy avatar

swguy

Administrator

Join Date:
Feb 2006
Location:
Tampa Bay, Florida
Posts:
10,682
Plugin Contributions:
56

Re: How do EZ-Pages work?

They are in your database in the ez_pages table.

02 Sep 2013, 13:08
#524
devyani avatar

devyani

Zen Follower

Join Date:
Aug 2011
Posts:
199
Plugin Contributions:
0

Re: How do EZ-Pages work?

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

Ajeh:

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:

// 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:
> ```
// 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));
05 Nov 2013, 14:52
#525
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

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?

05 Nov 2013, 16:04
#526
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

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.

05 Nov 2013, 16:24
#527
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

Re: How do EZ-Pages work?

Is this the only way that this could be achieved?

Thanks for the reply.

05 Nov 2013, 18:08
#528
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

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

05 Nov 2013, 19:17
#529
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

Re: How do EZ-Pages work?

Thanks Glen.

13 Apr 2014, 18:13
#530
stitchnkitty avatar

stitchnkitty

Totally Zenned

Join Date:
Jun 2009
Location:
Des Moines, Iowa USA
Posts:
618
Plugin Contributions:
0

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/index.php?main_page=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/index.php?main_page=page&id=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

21 Apr 2014, 16:20
#531
millie63 avatar

millie63

New Zenner

Join Date:
Apr 2014
Location:
London
Posts:
22
Plugin Contributions:
0

Re: How do EZ-Pages work?

Hi I've just figured out that I can't really do what I want to do as I can't put php in EZ pages (is that correct?)
I have a form which is javascript validated which is linked to 2 php pages and outputs some text (1 html page and 2 php pages).
I've put these 3 files in a folder within zencart and uploaded the 1st page as an internal link on EZ pages. But when I click on its link in Important Links it just takes me out of the zencart altogether which is not what I want. Is there any way of embedding or putting this page to show up on the main content area?
If not do you have any suggestions (short of just adding a back to zencart link on the last of the 3 pages?)
Thanks

08 May 2014, 22:58
#532
rocco_habit avatar

rocco_habit

New Zenner

Join Date:
May 2014
Location:
United States
Posts:
14
Plugin Contributions:
0

Re: How do EZ-Pages work?

I have a question that I hope someone can lead me in the right direction to answer.

I have created a site to sell vintage British motorcycle parts online.
Here is my site currently: www.testbaxterparts.host22.com

One of the most important parts of the site will be a section for users to view an online PDF flip-book of motorcycle parts books.

Located on the right sidebox, there is a section named Parts Books Online. If you click the link that says Test Parts Book, It will bring up a PDF Parts book that has been converted to a Flipbook.

What I want to be able to do is use the EZ Pages to create a page that I can list several different parts book under each Motorcycle manufacturer. (I have the EZ Pages created for the three main manufacturers, Triumph, BSA, Norton)

Ideally, What I would like this to look like would be, When a customer clicks the Triumph link under Parts Books Online, they will be taken to a page that will individually list off all the parts books available to view. Each flip-book would be a separate link.

Here is a really good example of what I am trying to accomplish on another British motorcycle site. http://www.bigdcycle.com/books.html

I just want to make a simple page to list the different parts books.

I have messed around with the EZ pages and I am just not sure about how I would go about inputting the links for the Flip Books.

I plan on storing all the PDF flip books on the server that we will be using, So they will be an internal link.

If anyone can give me some input on how they would accomplish this, It would be greatly appreciated!

If you have any further questions about what I am trying to accomplish, Please let me know!

Thanks,
Chris

09 May 2014, 00:16
#533
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: How do EZ-Pages work?

The simplest approach would be to make an ez-page for each of the manufacturers and enter the HTML links for each flipbook as content on the page. If the links do go to folders under the Zen Cart root, you can make them relative links for portability. Mark up the page layout to display as you want.

If you install EZ-Page Improved TOC from Plugins, you can make each of the main pages the first page of a "chapter", with all of the links entered as ez-page internal links having the appropriate title, chapter affiliation, sort order, and set to display in the TOC and not in the menus. (Stock functionality is to not display internal links in the TOC, even if you have set them to do so. This is for foolproofing, as you could go to an internal link and find that you no longer have a link to get back. You can cover this by including a link to your main ez-page in the linked page; a PDF probably wouldn't work this way, but as it opens in a new window, your original page is still there and open.)

02 Apr 2015, 12:55
#534
annav avatar

annav

Zen Follower

Join Date:
Jul 2008
Location:
Sydney, Australia
Posts:
171
Plugin Contributions:
0

Re: How do EZ-Pages work?

Hi,

I have created an ezy page called Areas We Service and on that page is listed a number of suburbs we travel to.

In a nutshell I would like each individual suburb to be able to be clicked on which will then open another page with information regarding this suburb only.

Is this possible and how can it be done.

(I did a search of my question but couldn't really find any information about it.)

http://frontlinerefrigeration.com.au...page=page&id=7

21 May 2015, 07:51
#535
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: How do EZ-Pages work?

ZC 1.5.4
Winchester Responsive template
http://joburgonline.com

I have created a new EZ Page, and toggled, chaptered, TOC'd, sort ordered, :frusty:, and cannot get the link to display. Anywhere.

I would like to display ez-pages links under the shop links list (or other location in the footer)

Current settings:

Attachment #15309

I hard wired the top EZ-Page to get that to work using an existing page. I am trying to get the Pricing page to display it's link.:wacko:

21 May 2015, 07:57
#536
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: How do EZ-Pages work?

Parafanaylya:

ZC 1.5.4
Winchester Responsive template
http://joburgonline.com

I have created a new EZ Page, and toggled, chaptered, TOC'd, sort ordered, :frusty:, and cannot get the link to display. Anywhere.

I would like to display ez-pages links under the shop links list (or other location in the footer)

Current settings:

Attachment #15309

I hard wired the top EZ-Page to get that to work using an existing page. I am trying to get the Pricing page to display it's link.:wacko:

OK - I got that to work eventually in admin>configuration>ez-pages settings, but need to match the template.

21 May 2015, 08:58
#537
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: How do EZ-Pages work?

but need to match the template.
Post a link to this for detailed assistance

21 May 2015, 10:37
#538
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: How do EZ-Pages work?

kobra:

Post a link to this for detailed assistance

http://joburgonline.com

21 May 2015, 12:00
#539
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: How do EZ-Pages work?

Parafanaylya,

but need to match the template
It appears that your ez-page is styled the same as your site??
Can you explain in detail what your issue is?

21 May 2015, 12:50
#540
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Location:
Hoedspruit
Posts:
470
Plugin Contributions:
1

Re: How do EZ-Pages work?

kobra:

Parafanaylya,

It appears that your ez-page is styled the same as your site??
Can you explain in detail what your issue is?

The template by Picaflor-Azul is slick and clean. The EZ-Pages nav bar looks as if somebody pasted onto the page. It does not look cool.

Attachment #15310