Results 1 to 5 of 5
  1. #1
    ddm
    ddm is offline Former Member
    Join Date
    July 2006
    Posts
    1,125
    Thanks
    418
    Thanked 470 Times in 287 Posts

    Default wordpress speed hacks - [for Contact form 7 plugin users]

    What: Stop cf7 enqueing CSS and JS on pages with no contact forms (seems like something the plugin author should have done, right?.. )

    Why: Cos of site speed. Google site health is a thing now. every millisecond for page load and render is critical. less scripts / kludge = faster site, happy google, happy users.

    How: put this code in your theme or child theme functions.php

    Code:
    function rjs_lwp_contactform_css_js() {
        global $post;
        if( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'contact-form-7') ) {
            wp_enqueue_script('contact-form-7');
             wp_enqueue_style('contact-form-7');
    
    
        }else{
            wp_dequeue_script( 'contact-form-7' );
            wp_dequeue_style( 'contact-form-7' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'rjs_lwp_contactform_css_js');
    hopefully saves some of ye some milliseconds

  2. The Following 4 Users Say Thank You to ddm For This Useful Post:

    DaftDog (13 August 2020), drifter8 (13 August 2020), PromoteCasino (12 August 2020), vardan (13 August 2020)

  3. #2
    universal4's Avatar
    universal4 is offline Forum Administrator
    Join Date
    July 2003
    Location
    Courage is being scared to death...and saddling up anyway. John Wayne
    Posts
    32,172
    Thanks
    3,762
    Thanked 8,743 Times in 5,577 Posts

    Default

    Thanks but this is frustrating, as I have to now create yet another list of links to your posts that I can refer back to at a later time.....LOL

    Rick
    Universal4

  4. #3
    EPLvip's Avatar
    EPLvip is offline Public Member
    Join Date
    August 2020
    Posts
    27
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Great work with sharing this info.
    Do you have any such hack for WP forms?

  5. #4
    PromoteCasino is offline Private Member
    Join Date
    June 2013
    Location
    London
    Posts
    1,117
    Thanks
    1,074
    Thanked 496 Times in 335 Posts

    Default

    Quote Originally Posted by universal4 View Post
    Thanks but this is frustrating, as I have to now create yet another list of links to your posts that I can refer back to at a later time.....LOL

    Rick
    Universal4
    Same here Rick, at some stage I will look at implementing on to one of my sites.

    Thanks ddm, keep them coming
    BettingOffers.bet - Latest offers and bonuses from reputable UK bookmakers. A New project underway but a long way to go Bookie Rewards

  6. #5
    drifter8's Avatar
    drifter8 is online now Private Member
    Join Date
    March 2017
    Location
    Bulgaria
    Posts
    1,288
    Blog Entries
    1
    Thanks
    2,735
    Thanked 623 Times in 480 Posts

    Default

    Thanks @ddm!
    Seven times fall, eight times stand.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •