Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Has anyone gotten this resolved yet? I’m running into the same issue.

    Hi larssonk22 (or anyone else), would you know why version 4 would cause the overall loading issue on the site?

    Disabled all my plugins and still having the same loading issue.

    It happened to me previously when I tried to update (before using the code solution above), and I just revered back to 3.9 for it to properly display.

    added the code to line 2 as well on functions.php.

    Hi larssonk22 – I’ve updated to the latest version, and the page itself fails to load entirely. Cleared cache and even tested through incognito to ensure that it wasn’t any of my chrome extensions getting in the way.

    The code itself:

    <p>Your Name (required)<br />
        [text* your-name] </p>
    
    <p>Your Email (required)<br />
        [email* your-email] </p>
    
    <p>Subject<br />
        [text your-subject] </p>
    
    <p>Date<br />
        [date date-311]</p>
    
    <p>Your Message<br />
        [textarea your-message] </p>
    
    <p>[submit "Send"]</p>

    Shortcode (though I doubt you need this):

    [contact-form-7 id="270" title="Contact form 1"]

    Hi larssonk22 – please see below. This is the functions.php code for my theme (didn’t include the child one because it didn’t work previously).

    `<?php

    //DEBUG
    if(WP_DEBUG){
    require_once(‘plusquare_admin/config-backend/scripts/FirePHPCore/fb.php’);
    ob_start();
    }

    if(WP_DEBUG)fb::log(“DEBUG ON”);

    //Require Scripts
    require_once( ‘scripts/mr-image-resize.php’ );

    //variables
    $pq_shortname = “esza”;
    $pq_themename = “Essenza”;
    $pq_themename_lc = “essenza”;

    //Check if it’s an ajax call from frontend
    $pq_ajax_frontent = false;
    if(isset($_POST) && isset($_POST[“frontend”])){
    $pq_ajax_frontent = true;
    }

    /*
    * BACKEND
    */
    if(!$pq_ajax_frontent && is_admin()){
    require_once( get_template_directory() . ‘/plusquare_admin/config-backend/backend.php’ );
    }

    /*
    * FRONTEND
    */
    else{

    require_once( get_template_directory() . ‘/plusquare_admin/config-frontend/frontend.php’ );
    }

    /*
    * COMMON
    */
    require_once( get_template_directory() . ‘/plusquare_admin/config-common/common.php’ );

    /*
    * contact form 7 fix
    */

    add_filter( ‘wpcf7_support_html5_fallback’, ‘__return_true’ );

    thanks larssonk22- I tried disabling/reactivating but no luck.

    thanks buzztone – I tried to create a functions.php file under a child theme but that ended up removing my navigation entirely (odd!). thoughts?

    Hi – could someone assist? I’ve updated my theme’s functions.php file with this line:

    add_filter( ‘wpcf7_support_html5_fallback’, ‘__return_true’ );

    And yet on Firefox and IE the datepicker still isn’t appearing. Maybe I’m missing something what “activate” means in the instructions (in addition to adding just the code).

    As reference – I’m using the form on https://fiona.timinyli.com/contact-form-test/.

    Thanks in advance!

Viewing 8 replies - 1 through 8 (of 8 total)