PHP snippet to add a extra fee to the checkout for every payment gateway.You can copied and pasted in your…
How to redirect customers to a custom landing page after the order process?Some of them need specific page redirection after…
Many dynamic website are created by PHP with MySQL. So this post helps for the beginners to connect the database…
Follow the below file to easily edit table records and submit that details in database using Ajax. Note: When you…
Add below codes on your function.php file and get the sub total amount while customer increase the product quantity on…
Use the following code for current date with different format Input <?php echo "Today is " . date("Y/m/d") . "<br>";…
Add below codes in function.php to restrict the logged out users to view product price. add_action( ‘init’, ‘code_hide_price_add_cart_not_logged_in’ ); function…
Let me share the details for hiding the email address partially using PHP codes. I have seen some websites, hide…
Follow the below code and change bullet color using css, <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> ul…
Actually we can create the “triangle part” in border itself by using the :before or :before pseudo-element. Check the below…