skip to content
AdaWiki
User Tools
Log In
Site Tools
Search
Tools
Show page
Old revisions
Backlinks
Recent Changes
Media Manager
Sitemap
Log In
>
Recent Changes
Media Manager
Sitemap
You are here:
start
»
tutorials
»
zencartmods
»
pids.html
Trace:
tutorials:zencartmods:pids.html
====== Adding Product ID to description ====== Zen Cart automatically adds product numbers to each of your products. Here's some super easy ways to make those numbers more visible. {{:tutorials:zencartmods:id.jpg|}} This is also a good tutorial introducing how one edits the product page ==== Add the product ID to the product page ==== Add this code to **includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php** wherever you like (we chose right under the title, line 62) <code php> ID: <?php echo $_GET['products_id']; ?><br /> </code> ==== Add the ID number to the page title ==== in **includes/modules/meta_tags.php** \\ Find line 275 <code php> define('META_TAG_TITLE', str_replace('"','',$review_on . $meta_products_name . $meta_products_price . PRIMARY_SECTION . TITLE . TAGLINE)); </code> and replace it with <code php> $meta_products_name .= " ID: " . $product_info_metatags->fields['products_id']; define('META_TAG_TITLE', str_replace('"','',$review_on . $meta_products_name . $meta_products_price . PRIMARY_SECTION . TITLE . TAGLINE)); </code>
/home/ladyada/public_html/wiki/data/pages/tutorials/zencartmods/pids.html.txt
· Last modified: 2016/01/28 18:05 (external edit)
Page Tools
Show page
Old revisions
Backlinks
Back to top