Hola!
Gracias por la instrucción he conseguido la solución:
Cuando abro la página web y abro la consola con f12 me registra esto:
Código HTML:
Ver original<link rel="stylesheet" id="all_around-css-css" href="http://dominio.com/wp-content/plugins/all-around_v1.4.2/css/frontend/content_slider_style.css?ver=3.8.2" type="text/css" media="all">
EL ID real del stylesheet es "all_around-css" pero el wordpress coloca una terminación "-css"
Entonces dentro de la página functions.php coloqué:
Código PHP:
Ver originaladd_action( 'wp_enqueue_scripts', 'child_manage_woocommerce_styles', 99 );
/**
* Remove WooCommerce Generator tag, styles, and scripts from the homepage.
* Tested and works with WooCommerce 2.0+
*
*/
function child_manage_woocommerce_styles() {
remove_action
( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) );if ( is_front_page() || is_home() ) {
wp_dequeue_style( 'all_around-css' );
}