Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter cdodge

    (@cdodgenewbcomputerbuildcom)

    Hello,

    I would just like to say thank you so very much with the latest updates – they have fixed my problem wonderfully.

    Your support for this plugin is phenomenal and you are very punctual.

    Bugfix: Title tag issue with $ sign when followed by a number 0-99 (Pre-parse the title replacement text to escape the $n backreferences because of preg_replace issue

    Thread Starter cdodge

    (@cdodgenewbcomputerbuildcom)

    That was quick! & I appreciate it 🙂

    Thread Starter cdodge

    (@cdodgenewbcomputerbuildcom)

    Wow, thanks a bunch for such a quick response and great suggestions.

    Strangely enough, I woke up this morning and everything was working perfectly without a hitch.

    I initially had some trouble installing everything, as the plugin was automatically choosing my php.ini file without giving me a choice. I then just ended up deleting that and then it automatically chose my php5.ini which seemed to work, so maybe there was a moment of complication there.

    Either way everything looks good, thanks for support!

    cdodge

    (@cdodgenewbcomputerbuildcom)

    Hello everyone,

    I have just spent a good 3 hours trying to solve this and I have found a solution that has worked perfectly for myself. I will try to explain as best I can and its not necessarily the best solution, but it works.

    You will need to use the following code for each checkbox field you have in order to fully populate all selected checkbox values –

    YOUR_FORM_ID = the ID of the Gravity Form You have created
    ACF_FIELDNAME = the exact Advanced Custom Fields Field Name of Your Checkbox Field Type.
    ACF_FIELD_KEY = The Field Key of your checkbox Field Type in Advanced Custom Fields. (To get the Field Key open up Custom Fields and go to “Screen Options” at the top of the screen and select “Show Field Key = Yes”

    Paste the following into functions.php

    add_action("gform_after_submission_YOUR_FORM_ID", "acf_post_submission", 10, 2);
    
    function acf_post_submission ($entry, $form)
    {
    $post_id = $entry["post_id"];
    $values = get_post_custom_values("ACF_FIELDNAME", $post_id);
    update_field("ACF_FIELD_KEY", $values, $post_id);
    }
    cdodge

    (@cdodgenewbcomputerbuildcom)

    Hey Morten,

    I found this thread by searching WordPress 3.7 not savings drafts. I had the exact same thing happening where I would safe a draft, get a blank post.php page and having nothing save.

    I dunno if this will help you, but I fixed this by disabling my W3 Total Cache plugin.

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