Quantcast
Viewing all articles
Browse latest Browse all 112696

cubecolour on "problem with meta tags and not still solved........."

You have a meta generator line for WordPress and one for WooCommerce.

you should be able to remove the WooCommerce one by adding the following to your theme' functions.php

function remove_woo_commerce_generator_tag()
{
    remove_action('wp_head',array($GLOBALS['woocommerce'], 'generator'));
}
add_action('get_header','remove_woo_commerce_generator_tag');

Viewing all articles
Browse latest Browse all 112696

Trending Articles