Guest User

Untitled

a guest
Mar 14th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function remove_woocommerce_shop_loop_actions() {
  2. if ( !class_exists( 'WooCommerce' )) {
  3. return;
  4. }
  5.  
  6. remove_action( 'woocommerce_before_shop_loop', 'nectar_woocommerce_before_shop_loop', 99 );
  7. remove_action( 'woocommerce_after_shop_loop', 'nectar_woocommerce_after_shop_loop', 99 );
  8.  
  9. add_action('nectar_shop_above_loop', 'nectar_woocommerce_before_shop_loop', 10);
  10. if ( is_shop() || is_product_category() || is_product_tag() || is_product_taxonomy() ) {
  11. add_action('nectar_hook_before_container_wrap_close', 'nectar_woocommerce_after_shop_loop', 10);
  12. }
  13. }
  14. add_action( 'wp', 'remove_woocommerce_shop_loop_actions' );
Advertisement
Add Comment
Please, Sign In to add comment