Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function remove_woocommerce_shop_loop_actions() {
- if ( !class_exists( 'WooCommerce' )) {
- return;
- }
- remove_action( 'woocommerce_before_shop_loop', 'nectar_woocommerce_before_shop_loop', 99 );
- remove_action( 'woocommerce_after_shop_loop', 'nectar_woocommerce_after_shop_loop', 99 );
- add_action('nectar_shop_above_loop', 'nectar_woocommerce_before_shop_loop', 10);
- if ( is_shop() || is_product_category() || is_product_tag() || is_product_taxonomy() ) {
- add_action('nectar_hook_before_container_wrap_close', 'nectar_woocommerce_after_shop_loop', 10);
- }
- }
- add_action( 'wp', 'remove_woocommerce_shop_loop_actions' );
Advertisement
Add Comment
Please, Sign In to add comment