If you look in the URL for this EzPage, you will see something like id=3 ...
You should then make a define for it that reads:
Code:define('META_TAG_TITLE_EZPAGE_3', 'something');
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
That works for some reason...I guess I have to specify a title for each page I make then..
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:
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));
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));
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
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
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.
Do not understand??But why is the side box option used for the footer?
There are 4 settings for a page
header
sidebox
footer
TOC
Zen-Venom Get Bitten
These have all been toggled and orders entered and removed in the past.
Status - disabled
Status - enabled, sort order 25
Status - enabled, order 30
Status - enabled, Chapter 1, TOC 10
Configuration>EZ-Pages Settings
Display status of footerbar and sidebox both 1 = on
The footer display is my first prize position. Is there a way to incorporate the pricing and custom products links into the shop column?