Jump to content
  • 0

Не могу избавиться от <link rel='canonical'


Sel-p
 Share

Question

Добрый день не могу избавиться от <link rel='canonical' на трех страницах как это сделать? Страницы находятся на магазине http://wordpress.org/extend/plugins/wp-e-commerce/. На трех страницах вылезли эти <link rel='canonical'

1) http://goprors.ru/buy_gopro-2/action-cameras/gopro-hero-3-black-edition/

2) http://goprors.ru/buy_gopro-2/action-cameras/gopro-hero-3-silver-edition/

3) http://goprors.ru/buy_gopro-2/action-cameras/gopro-hero-3-white-edition/

Как можно убрать canonical?

Заранее спасибо.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Обычно Wordpress генерирует canonical url сам. Это можно отключить так:

remove_action('wp_head', 'rel_canonical');

Возможно, имеет смысл подцепить этот код на событие init:

function my_remove_canonical() {
remove_action('wp_head', 'rel_canonical');
}

add_action( 'init', 'my_remove_canonical' );

Но другие плагины могут сами генерировать метаданные, поэтому если не поможет - копать в плагинах.

Link to comment
Share on other sites

  • 0

Обычно Wordpress генерирует canonical url сам. Это можно отключить так:

remove_action('wp_head', 'rel_canonical');

Возможно, имеет смысл подцепить этот код на событие init:

function my_remove_canonical() {
remove_action('wp_head', 'rel_canonical');
}

add_action( 'init', 'my_remove_canonical' );

Но другие плагины могут сами генерировать метаданные, поэтому если не поможет - копать в плагинах.

Спасибо за ответ. А подскажите в каком файле эти строчик вставлять? Заранее спасибо.

Link to comment
Share on other sites

  • 0

functions.php выбранной темы (но если тема не ваша и предполагается ее обновление, то после обновления изменения пропадут), либо плагином. Третий вариант - дочерняя тема :)

Link to comment
Share on other sites

  • 0

functions.php выбранной темы (но если тема не ваша и предполагается ее обновление, то после обновления изменения пропадут), либо плагином. Третий вариант - дочерняя тема :)

Да судя по всему это надо копать в самом Wp-e-commerce

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy