hide paypal button when no shipping available
-
HI all , Below code hides the order button on checkout page when there are no available shipping methods. But unfortuntely unable to hide the paypal button in your plugin please suggest how to hide paypal button at checkout .
This code works for me. It hides the "checkout" button on checkout page if there are no available shipping methods. Goes into your child theme's functions.php. //Hide checkout button if no shipping is available add_filter('woocommerce_order_button_html', 'hide_checkout_button__no_shipping_html' ); function hide_checkout_button__no_shipping_html( $button ) { $package_counts = array(); $packages = WC()->shipping->get_packages(); foreach( $packages as $key => $pkg ) { $package_counts[ $key ] = count( $pkg[ 'rates' ] ); } if( in_array( 0, $package_counts ) ) { //no available shipping method $button = ''; }
The page I need help with: [log in to see the link]
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘hide paypal button when no shipping available’ is closed to new replies.