Modify Woocommerce Mini Cart

#header.php Now modify mini-cart.php from woocommerce>cart>mini-cart.php #mini-cart.php (woocommerce file) #add this code in function.php

Disable Variable Product Price Range In WooCommerce

#Change Woocommerce variable product price range. For example, change it from ($15-$80) to “Starting At: $15” #Disable & Change Variable Product Price Range For A Single Product (according to product ID)

How To Fix: CSS Updating Issue On Browser

###WordPress Add a random version number at the end of the CSS file you are attaching. If you are using ‘wp_enqueue_style’ or ‘wp_register_style’ functions, you can pass a random (version) number rand(111,9999) to 4th parameter. ###HTML If you are attaching CSS as an HTML tag, you should add “?ver=” at the end of the file […]

Recursion & Recursive Function In PHP

Recursion occurs when a function calls itself. There’s nearly always an end condition of some sort — known as the base case — otherwise, the function would continue to call itself indefinitely (or at least until the computer ran out of memory). #CODE EXAMPLE