Tagged: gravity forms
-
AuthorPosts
-
March 13, 2015 at 5:04 pm #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 );
}
}March 13, 2015 at 9:21 pm #411299Hi 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,
ElliottMarch 13, 2015 at 9:35 pm #411305This is the code I pasted in the
public_html/wp-content/themes/enfold/config-gravityforms/config.php
March 16, 2015 at 4:14 pm #412254Hi!
Enfold 3.1 was released a bit ago. Go ahead and update to the latest version.
Cheers!
ElliottMarch 16, 2015 at 4:45 pm #412277This reply has been marked as private.March 17, 2015 at 4:23 pm #413049Hi!
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!
ElliottFebruary 1, 2016 at 12:15 am #575463On 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).
February 2, 2016 at 3:47 am #576202Hey!
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.
-
AuthorPosts
- You must be logged in to reply to this topic.