What is the purpose of body_class function in wordpress ? body_class function helps to show the bunch of classes name to the body element that have information about what kind of page is currently being displayed. Here is the way...
How to add Category name to body class wordpress!
Make Phone Number Field Not Required on Checkout in WooCommerce
Sometime we don't want Phone number as required on woo-commerce checkout page so here is hook/script that works for this.. add_filter( 'woocommerce_billing_fields', 'wc_nst_filter_phone', 10, 1 ); function wc_nst_filter_phone( $address_fields ) { $address_fields['billing_phone']['required'] = false; return $address_fields; } Thanks 🙂🙏
How to show Estimate Delivery Date on product Page in Shopify!
Here is one of the way to Show Estimate Delivery Date and time of products on product page template under add to cart button in Shopify. NOTICE : Please do only if you have little bit knowledge of files.. otherwise...