The Latest

  • ,

    Fixing the White Screen of Death (WSOD) in WordPress

    If you’re delving into WordPress development, you’ve probably encountered one of the most irritating challenges: the “White Screen of Death” (WSOD).Suddenly, your website goes blank, displaying nothing but a white…

  • smooth scroll

    , ,

    Smooth scrolling functionality to different sections on the same page

    Smooth scrolling isn’t functioning properly when you click on the navigation menu links that lead to different sections on the same page? Below is the solution Will make the smooth…

  • Bootstrap HTML contact form with Ajax validation and send via php

    Every time we are creating html form using Bootstrap with jquery validation ,but in this we can see how to send the html form data to mail with ajax and…

  • ,

    reCAPTCHA v2 Responsive

    In this we can see how to make the google reCAPTCHA v2 as responsive for mobile devices.Thats very simple Just add the below style code in your css @media screen and…

  • Shortcode creation for CPT

    Create the shortcode for our custom post type. Step 1: Add the below code into functions.php Here custom post type name is ‘events’ add_shortcode( ‘all-events’, ‘display_custom_post_type’ ); function display_custom_post_type() {…

  • Google reCAPTCHA validation

    In this you can see how to make google captcha valifation in HTML form(s).In this we can see two methods of validation. Method 1 : If using Jquery for form…