Onclick Change Text & Then Change It Back
Show Total Users In WordPress
#Add this code in functions.php file #echo the shortcode to display the data
Disable Direct Access to A WordPress Page
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
On Link Click Open Chat Window Widget
#CHAT PLUGIN: https://www.livechatinc.com/
On Select Change Product Title In Woocommerce
Disable Minus Button For WooCommerce Product Quantity(1)
How to change text in checkout ‘Order Notes’ section
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 […]
Print Fibonacci Series In PHP
#CODE EXAMPLE
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