Category: WordPress

  • Onclick Scroll and Animate Sections.

    This Code will animate on button click like Fultion .

    Frist make a section Fixed with height 100vh. Added floating button there. Add ID “expertise”.
    Overlap a section with 100vh, transparent Background. Add ID “blanked”.
    Make content section. Add Content and rest of other there. Add ID “starts”.

    Now Use this code. JQuery.

     

     

     

    jQuery("#expertise").on("click", function() {
    jQuery('#blanked').animate({
    height: '0px'
    }, 1000);
    jQuery("html, body").animate({
    scrollTop: 0
    }, 600);
    });
    jQuery(window).on("scroll", function() {
    let scrollTop = jQuery(this).scrollTop();
    let Section2 = jQuery("#starts").offset().top;
    if (scrollTop === Section2) {
    jQuery('#blanked').animate({
    height: '100vh'
    }, 1000);
    }
    });

  • Singe Post and Page type for WordPress.

    is_singular() || // all pages, posts, CPT single pages
    is_archive() || // category, tag, CPT archive, date archive
    is_404() || // 404 page
    is_home() || // blog page
    is_search() || // search page
    is_author() || // author archive
    is_front_page() || // homepage
    is_page() || // pages (included in is_singular, redundant)
    is_category() // category page (included in is_archive, redundant)

  • Post Slug Regenerate if Some Plugin or Code Block it In Scheduled Post.

    Every time a scheduled post publishes → ALWAYS regenerate the slug from the title


    add_action('publish_future_post', function($post_id) {
    wp_schedule_single_event(time() + 60, 'fix_scheduled_slug', [$post_id]);
    });

    add_action('fix_scheduled_slug', function($post_id) {
    $post = get_post($post_id);

    if (!$post) {
    return;
    }

    $new_slug = sanitize_title($post->post_title);

    wp_update_post([
    'ID' => $post->ID,
    'post_name' => $new_slug,
    ]);
    });

  • Gravity Form UTM Tracker Addons

    Why Use This Plugin?
    Gravity Forms has a built-in dynamic population feature that can capture UTM data. However, there’s a limitation: if a user navigates to another page and then returns to submit the form, the UTM parameters may be lost and not stored in the form.

     

    This plugin solves that problem by persistently storing UTM parameters as users browse your website. The UTM data remains available and automatically populates the Gravity Form fields until the form is submitted, ensuring that no UTM data is lost even if the user visits multiple pages.

     

    Features
    Automatically detects UTM parameters from URL query strings.
    Maps UTM parameters to Gravity Forms fields.
    Works seamlessly with multiple forms.
    Lightweight and easy to use.

     

    Description
    Gravity Forms UTM Tracker automatically captures UTM parameters from URLs and populates corresponding Gravity Forms fields. This enables advanced lead tracking and analytics for marketing campaigns.

     

    Supported UTM parameters:

    utm_source
    utm_medium
    utm_campaign
    utm_term
    utm_content

     

    Installation
    Download the plugin ZIP from this repository.
    Go to your WordPress Dashboard → Plugins → Add New → Upload Plugin.
    Upload the ZIP file and click Install Now.
    Activate the plugin.
    If ULR has UTM parameter it will store with form data.

     

    Usage
    Once installed and activated:Ensure your Gravity Forms Installed.
    Browse your form URL with UTM parameters
    Submit form boom, UTM store using gravity form.

    Gravity Form UTM Tracker Addons
    Plugin URI: https://github.com/Oleraj09/GravityForm-UTM-Tracker
    Author: Oleraj Hossin (https://olerajhossin.top)

     

    Download Now

  • Why WordPress Still Dominates the Web in 2025

    Even with new platforms emerging every year, WordPress continues to power over 40% of the web. Its flexibility, scalability, and ease of use make it perfect for beginners and professionals alike. From personal blogs to enterprise-level websites, WordPress adapts to any need through thousands of themes and plugins. It’s SEO-friendly, mobile-responsive, and supported by a massive global community. Whether you’re looking to launch a blog, build a business site, or create a full-featured eCommerce store with WooCommerce, WordPress remains the most reliable and cost-effective solution for building a strong online presence.

     

    Even with new platforms emerging every year, WordPress continues to power over 40% of the web. Its flexibility, scalability, and ease of use make it perfect for beginners and professionals alike. From personal blogs to enterprise-level websites, WordPress adapts to any need through thousands of themes and plugins. It’s SEO-friendly, mobile-responsive, and supported by a massive global community. Whether you’re looking to launch a blog, build a business site, or create a full-featured eCommerce store with WooCommerce, WordPress remains the most reliable and cost-effective solution for building a strong online presence.

     

    Even with new platforms emerging every year, WordPress continues to power over 40% of the web. Its flexibility, scalability, and ease of use make it perfect for beginners and professionals alike. From personal blogs to enterprise-level websites, WordPress adapts to any need through thousands of themes and plugins. It’s SEO-friendly, mobile-responsive, and supported by a massive global community. Whether you’re looking to launch a blog, build a business site, or create a full-featured eCommerce store with WooCommerce, WordPress remains the most reliable and cost-effective solution for building a strong online presence.

Chat Icon
Preview