Looking for a plugin that does this for Page content type, this one does not.
]]>Hi
I need to add the canonical link in product page of woocommerce product page.after installing the plugin its work fine in the post page but in the product post page the option is not showing.
This plugin creates is own canonical tags. Canonical output is now built into WordPress. Here is the code you need to get the url from the meta box set properly.
Add this code to the canonicalPlugin.php file in the plugin directory.
add_filter( 'get_canonical_url', 'seo_plugin_bens_override', 99, 2 );
function seo_plugin_bens_override( $can_url, $post ) {
$can = get_post_meta($post->ID, '_Seo_plugin_meta_canonical_tag', true);
if ( $can ) {
$can_url = $can;
}
return $can_url;
}
Then remove this line:
add_action( 'wp_head', 'Seo_plugin_canonical_tag' );
Hello guys,
I was just wondering if Canonical Seo WordPress Plugin works on listing pages because it seems that it only works on posts and regular pages,
Thanks,
Roy
Unfortunately, this plugin seems to create 2 canonical urls, one for the original post and one for the value placed into the Custom Canonical URL meta box.
As I understand, Google will ignore both if there are two different ones. So, the plugin doesn’t address/remove the original canonical url for the post, created by the original WordPress function?
]]>Hi,
I am using your plugin, and it will place rel=canonical in the code, but there is also one placed by WordPress, so Google will ignore all of them (see https://webmasters.googleblog.com/2013/04/5-common-mistakes-with-relcanonical.html)
Here are two example pages
https://bleistift.memm.de/2016/04/lamy-2000-mechanical-pencil/
https://bleistift.memm.de/2014/07/lamy-scribble/
What can I do so that only the canonical from your plugin is on the page and not the other one?
https://www.ads-software.com/plugins/canonical-seo-content-syndication/
]]>Canonical link while posting any post it will have link shall i copy and past that. Canonical link and post link both are same or what else?
https://www.ads-software.com/plugins/canonical-seo-content-syndication/
]]>