Warning: Undefined array key "title" in /home/u593943216/domains/wp-experts.in/public_html/secure_content/themes/wp-experts/inc/classes/class-hooks.php on line 151
Hello Friends. If you want to give an option for your customers to define quantity on shop categories page then use below code. You need to add below code into theme functons.php file function custom_quantity_field_archive() { $product = wc_get_product( get_the_ID() ); if ( ! $product->is_sold_individually() && 'variable' != $product->get_type() && $product->is_purchasable() ) { woocommerce_quantity_input( array(
Hi Friends, WooCommerce by default does display a “Read more” message instead to “Out of stock” for all out of stock products. If you would like to display “Read more” text as ‘Out of stock’ then you can do it without any technical knowledge . You will need to add given below code into your
By default WooCommerce does display the “Read More” for all out of stock products. If you want to change the “Read More” button text to “Out of Stock” then you can do it easily by following the WooCommerce hooks functions even you have not any coding knowledge. You will only require to add below code
Hi Friends, After tested with latest version of WordPress 5.8 & WooCommerce version 5.5.1 Today we have released new version of our WordPress plugin “WooCommerce Sales Count Manager” plugin. Please see below features of our WooCommerce add-on plugin. WooCommerce Sales Count Manager” has providing the feature to display the total sold item number for each
If you want to allow your Shop Managers only to access of woocommerce related settings like manage orders, manage payment, manage products..etc then you will need to restrict the existing shop manager user capability. You can change the woocommerce shop manager user capability using the woocommerce hooks function, there is no need to use any
Hello Friends, I hope you are you doing well. I am here again going to share some useful knowledge regarding to woocommerce shipping information. If you want to change “No Shipping Method Available” then you will need no need to edit in plugin core files. Just add given below code into your theme function files
Hello Friends!! I am here going to share useful knowledge about woocommerce hooks. On product page if you want to remove “Description” title under “Description Tab” without any changes in woocommerce core files then follow given steps. You will just need to add given below code into your theme function.php file. add_filter( 'woocommerce_product_description_heading', 'remove_product_description_heading' );