Advertisement
wpgenie

fix for bid input - Shoptimizer theme

May 27th, 2024
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'custom_wpgenie_denqueue_script' , 99 );
  2. function custom_wpgenie_denqueue_script(){
  3.     if ( is_product() ) {
  4.             global $product;
  5.             if ($product->get_type() == 'auction' ) {
  6.                 wp_dequeue_script( 'shoptimizer-quantity');
  7.             }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement