Zen Cart Logo
Forums / Customization from the Admin / Change meta title comma to pipe or vertical bar

Change meta title comma to pipe or vertical bar

Views: 1,286

Results 1 to 3 of 3
16 Jun 2014, 7:02 PM
#1
jennydutch avatar

jennydutch

New Zenner

Join Date:
Apr 2014
Location:
Bronx, New York, United States
Posts:
83
Plugin Contributions:
0

Change meta title comma to pipe or vertical bar

// page title
define('TITLE', ' mytitle');

// Site Tagline
define('SITE_TAGLINE', 'mytagline');

Output

mytitle,mytagline

But i want

mytitle|mytagline

Pease Help

16 Jun 2014, 7:26 PM
#2
balihr avatar

balihr

Totally Zenned

Join Date:
Oct 2008
Location:
Croatia
Posts:
1,782
Plugin Contributions:
21

Re: Change meta title comma to pipe or vertical bar

You'll need to edit your includes/languages/YOUR_LANGUAGE/meta_tags.php at around line 53 and change:

// Define Tertiary Section Output
  define('TERTIARY_SECTION', ', ');

to

// Define Tertiary Section Output
  define('TERTIARY_SECTION', ' | ');

Please note that this file can be in your override directory, so check your includes/languages/YOUR_LANGUAGE/YOUR_TEMPLATE/meta_tags.php as well...

Regards,
Leonard

16 Jun 2014, 7:42 PM
#3
jennydutch avatar

jennydutch

New Zenner

Join Date:
Apr 2014
Location:
Bronx, New York, United States
Posts:
83
Plugin Contributions:
0

Re: Change meta title comma to pipe or vertical bar

balihr:

You'll need to edit your includes/languages/YOUR_LANGUAGE/meta_tags.php at around line 53 and change:

// Define Tertiary Section Output
define('TERTIARY_SECTION', ', ');

> to
> ```
// Define Tertiary Section Output
  define('TERTIARY_SECTION', ' | ');

Please note that this file can be in your override directory, so check your includes/languages/YOUR_LANGUAGE/YOUR_TEMPLATE/meta_tags.php as well...

Regards,
Leonard

Wow.......... Thanks