Advertisement
verygoodplugins

Untitled

Oct 14th, 2020 (edited)
2,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. function show_cart_button() {
  2.  
  3.     if ( ! function_exists( 'wp_fusion' ) ) {
  4.         return;
  5.     }
  6.  
  7.     remove_action( 'woocommerce_loop_add_to_cart_link', array( wp_fusion()->integrations->woocommerce, 'add_to_cart_buttons' ), 10, 2 );
  8.     remove_filter( 'woocommerce_is_purchasable', array( wp_fusion()->integrations->woocommerce, 'is_purchaseable' ), 10, 2 );
  9.  
  10. }
  11.  
  12. add_action( 'plugins_loaded', 'show_cart_button' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement