Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Duplicate Title Tags in 3 Pages

Duplicate Title Tags in 3 Pages

Views: 729

Results 1 to 2 of 2
29 Mar 2018, 05:16
#1
wolfish avatar

wolfish

New Zenner

Join Date:
Mar 2018
Location:
Nepal
Posts:
10
Plugin Contributions:
0

Duplicate Title Tags in 3 Pages

I have a problem with my HOME PAGE. I got 3pages that shows same Title Tag ...... Changing in main HOME PAGE automatically changes all the 3pages Title Tag as one. However, the URL varies ...... So is there any way I can set 2of those pages with different Title Tags?

these pages are like -

https://www.HomePAGE.com
https://www.FeaturesPage.com
https://www.BrandsPage.com

29 Mar 2018, 10:13
#2
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: Duplicate Title Tags in 3 Pages

There is guidance within includes/languages/english/meta_tags.php that helps to identify some of the main meta-tag information for a given page. Because the two other pages seem to follow the main page, would suggest creating the definitions for the other two following this pattern:

// Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
// replace "page_name" with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
// repeat pattern as necessary
  define('META_TAG_DESCRIPTION_page_name','');
  define('META_TAG_KEYWORDS_page_name','');
  define('META_TAG_TITLE_page_name', '');

From the provided "links" I wasn't able to identify the exact setting that follows "main_page=" and didn't want to guess.