Zen Cart Logo
Forums / General Questions / How do I display an EZ-Pages?

How do I display an EZ-Pages?

Locked

Views: 578

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
22 Jul 2009, 4:02 AM
#1
noelsaw avatar

noelsaw

New Zenner

Join Date:
Jul 2009
Posts:
6
Plugin Contributions:
0

How do I display an EZ-Pages?

I am using Zen Cart v1.3.7.

I've read the instructions over and over but can quite figure out how to show my EZ-page with the page title called "test" (all lower case) to show up in the web browser.

When I try:
http://noteablebowls.web4creatives.com/index.php?main_page=test
It says "page not found"

Simply put I don't understand the instructions enough to figure this out. Please help.

22 Jul 2009, 8:50 AM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: How do I display an EZ-Pages?

You have to call ez-pages by their page id. For example, say "test" is page id 7; you would use

http:// noteablebowls.web4creatives .com/index.php?main_page=page&id=7

Or in a PHP file, you can use

<?php echo '<a href="' . zen_ez_page_link(7) . '">';?>
24 Jul 2009, 4:52 AM
#3
noelsaw avatar

noelsaw

New Zenner

Join Date:
Jul 2009
Posts:
6
Plugin Contributions:
0

Re: How do I display an EZ-Pages?

Thanks that worked!

I wish the FAQ was explicit about this considering how much detail they go into for other issues..