Free
Get Current Shipping Method WooCommerce
Update Cart on Quantity Change in WooCommerce
#1 Hide update cart button
.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
display: none;
}
#2 Create a file named update-cart.js
jQuery( function( $ ) {
$('.woocommerce').on('change', 'input.qty', function(){
$("[name='update_cart']").trigger("click");
});
});
#3 Enqueue it only on cart and checkout page
// CART
function add_custom_scripts() {
if( is_cart() ) {
wp_enqueue_script( 'update-cart-js', get_stylesheet_directory_uri() . '/assets/js/update-cart.js' );
}
add_action( 'wp_enqueue_scripts', 'add_custom_scripts' );
Order upcoming events by ACF datepicker
Minimum cart amount for specific category in WooCommerce
Disable Link to Single Product in WooCommerce Archive
Hide all warnings in WP admin
Attach file to WooCommerce order emails
Check if current product belongs to specific category on single product page
How to enqueue JavaScript Asynchronously in WordPress?
functions.php
How to Add Default Country to WooCommerce Checkout?
Display WooCommerce Products with ACF Repeater Field and Post Object
Hide If Empty WooCommerce Notification on Cart Page
Change order status to completed after successful payment in WooCommerce
How to force SSL with .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]