Custom order status background button color in WooCommerce 3.3 admin order list
You can set CSS color and background color to your custom order status displayed in admin order list this way: Code goes in … Read more
You can set CSS color and background color to your custom order status displayed in admin order list this way: Code goes in … Read more
The reason why your image is resizing which is because it is fluid. You have two ways to do it: 1. Either give … Read more
Update for WooCommerce 3+ The hook wc_add_to_cart_message is deprecated and replaced by wc_add_to_cart_message_html. You can use the following (compact effective way): Or the normal way: Before … Read more
First you need to write your script. In your theme folder create a folder called something like ‘js’. Create a file in that … Read more
WordPress uses jQuery in noConflict mode by default. You need to reference it using jQuery as the variable name, not $, e.g. use
By default when you enqueue jQuery in WordPress you must use jQuery, and $ is not used (this is for compatibility with other libraries). Your solution … Read more