PenciDesign Supporter replied
Hi,
Here is the other solution.
You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/
function fix_product_pagination_canonical() {
if (isset($_GET['product-page']) && is_singular('product')) {
echo '<link rel="canonical" href="' . get_permalink() . '" />' . "\\n";
}
}
add_action('wp_head', 'fix_product_pagination_canonical', 1);
Regards,
PenciDesign.