web-dev-qa-db-fra.com

Puis-je supprimer le hook de contenu principal de WooCommerce?

<?php
    /**
     * woocommerce_before_main_content hook
     *
     * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
     * @hooked woocommerce_breadcrumb - 20
     */
    //do_action( 'woocommerce_before_main_content' );
?>

Pour le moment, je le commente simplement pour désactiver avant le contenu principal et après le contenu principal .
Est-il possible de le faire sans modifier les fichiers du plugin?

<?php
    /**
     * woocommerce_after_main_content hook
     *
     * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
     */
    //do_action( 'woocommerce_after_main_content' );
?>
1
bishal neupane
remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10,0);

remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20,0);

remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10,0);

J'espère que cela fonctionne pour vous =)

3
vol4ikman