Forums / General Questions / Meta tag issue

Meta tag issue

Results 1 to 4 of 4
10 Jan 2013, 04:33
#1
gboyea7 avatar

gboyea7

New Zenner

Join Date:
Jan 2013
Posts:
2
Plugin Contributions:
0

Meta tag issue

Hi all, i have an issue working with the meta tags on my store (www.balshembooks.com), the separator for the title keep showing the full syntax instead of showing the primary/secondary/tertiary separators. I have also tried deactivating them from the configuration menu in the admin, but nothing happens. Whats worse is that when i try to post items to social sites like facebook the title of the page is really messed up. How can i CORRECT this?
10 Jan 2013, 07:17
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,506
Plugin Contributions:
173

Re: Meta tag issue

For some reason you seem to have DELETED the definitions for PRIMARY_SECTION and TERTIARY_SECTION, and perhaps more, from your meta_tags.php file in your languages folder.

NEVER DELETE A define() STATEMENT!

If you wish to make its defined value be blank, simply remove what's between the quotes.

ie:
define('NAME_OF_DEFINITION', 'defined value here');
would become
define('NAME_OF_DEFINITION', '');

ie: '' is two single-quotes with nothing in between, thus resulting in a blank value.

Read: http://www.zen-cart.com/content.php?137-ive-got-text_main-being-displayed-on-my-page-(or-other-unexpected-uppercase-words)
11 Jan 2013, 06:50
#3
gboyea7 avatar

gboyea7

New Zenner

Join Date:
Jan 2013
Posts:
2
Plugin Contributions:
0

Re: Meta tag issue

Thks, i didn't delete nada. i resolved by moving the the define code for the separators back to english.php in the languages folder.
11 Jan 2013, 07:32
#4
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,506
Plugin Contributions:
173

Re: Meta tag issue

gboyea7:

i resolved by moving the the define code for the separators back to english.php in the languages folder.

If you had to do that, then you've mangled many things in ways they weren't designed for.