The text-align property in CSS is used to make the horizontal alignment of text in an element Property Value: The…
You are using bootstrap and you want to add datepicker, then you can use the bootstrap-datepicker library. But if you…
Code Snippet to change stock status option in woocommerce.Here I change out of stock option text to Sold and you…
Code Snippet to change out of stock text to sold in woocommerce add_filter(‘woocommerce_get_availability’, ‘availability_filter_func’); function availability_filter_func($availability){ $availability[‘availability’] = str_ireplace(‘Out of…
Let’s see how to add and remove input fields dynamically with simple jQuery in HTML form. You can set the…
To append form submit data to any <div> or <section> element we need to use manipulation techniques. Initially we need…
Code Snippet for adding discount for cart total in woocommerce add_action( ‘woocommerce_cart_calculate_fees’, ‘code_discount_based_on_total’,25, 1 ); function code_discount_based_on_total( $cart ) {…
Use the following steps to add product custom field for retail price. Step 1: Add Custom field input at product…
Use the following code Snippet to display savings in woocommerce cart page. PHP Code function code_wc_discount_total() { global $woocommerce; $discount_total…
PHP snippet to add a extra fee to the checkout for specific payment gateway.You can copied and pasted in your…