Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #411119

    Hi,

    I saw a post from a few days ago mentioning that this would be fixed in the next theme update. I downloaded 3.0.8 and I still can’t create a new form. I added the following code (see below) which was posted in the forum and still I can’t create a new form. Are you guys still working on this?

    I added this to our bug list so it should be fixed in the next update but in the meantime try opening up /enfold/config-gravityforms/config.php and change lines 21 – 25 from this.

    add_filter(‘gform_display_add_form_button’, ‘avia_add_gf_button_to_editor’, 10, 1);
    function avia_add_gf_button_to_editor($is_post_edit_page)
    {
    return true;
    }

    To this.

    add_action( ‘current_screen’, ‘avia_add_gf_button_to_editor’ );
    function avia_add_gf_button_to_editor( $screen ) {
    if ( $screen->base == ‘post’ ) {
    add_filter( ‘gform_display_add_form_button’, function(){ return true; }, 10, 1 );
    }
    }

    #411299

    Hi Snerp!

    That should be working for you, perhaps you did the edit wrong. You could try completely deleting the theme and try it again. The next update is version 3.1 though and it should be released here in the next couple of days so I would go ahead and wait for that.

    Best regards,
    Elliott

    #411305

    This is the code I pasted in the

    public_html/wp-content/themes/enfold/config-gravityforms/config.php

    http://s11.postimg.org/s8kp7mxqb/gravity.png

    #412254

    Hi!

    Enfold 3.1 was released a bit ago. Go ahead and update to the latest version.

    Cheers!
    Elliott

    #412277
    This reply has been marked as private.
    #413049

    Hi!

    Your getting a bunch of 404 not found errors on the gravityform scripts. Try deleting the plugin from your WordPress plugin directory and then install a fresh copy and check to see if it has correct permissions.

    You’ll notice it’s doing the same in the default theme so it’s not an Enfold issue. It would be best to contact gravityforms support if the updated permissions are not working.

    Cheers!
    Elliott

    #575463

    On http://www.chaseflooring.com/ I’m experiencing something similar. Cannot create a new Gravity Forms and cannot duplicate an existing form. I tried deactivating all plugins, I’m using the latest version of WordPress, of Gravity Forms, and the Enfold theme is 3.4.7.

    I tried updating lines 21-24 of the config.php to the following:

    add_action( ‘current_screen’, ‘avia_add_gf_button_to_editor’ );
    function avia_add_gf_button_to_editor( $screen ) {
    if ( $screen->base == ‘post’ ) {
    add_filter( ‘gform_display_add_form_button’, function(){ return true; }, 10, 1 );
    }
    }

    Looks like Gravity Forms works on my other Enfold installations (I have about 10 Enfold installs).

    #576202

    Hey!

    You can send us a WordPress login and we can take a look but I would try contacting gravity forms support to see if they have an idea on what it could be first off.

    Cheers!
    Elliott

    • This reply was modified 8 years, 9 months ago by Elliott.
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.