Site logo

Archived topic

Gravity Forms

12 replies · Started by Rick on May 8, 2018

Viewing posts 1–13 of 13

The Gravity Forms "Add Form" button is showing in the WordPress editor, but not in the GP Sections editor. See URL.

Hi Rick Sections rebuilds the tinyMCE, Tom had added the Envira Gallery to work. But we don't have a gravity forms set-uo. Would you be willing to provide us backend access to the site so a solution can be found?

Yes. How would you like me to send the admin login info?

Okay, thanks!

Can you try this?:

add_action( 'admin_head','tu_enable_section_buttons' );
tu_enable_section_buttons() {
    ?>
    <style>
        #wp-generate-sections-editor-wrap .wp-media-buttons>a#add_gform {
            display: inline-block;
        }
    </style>
    <?php
}

Let me know :)

Syntax error reported: unexpected '?>'

Hi Rick, i think Tom missed a function, can you try this:

add_action( 'admin_head','tu_enable_section_buttons' );
function tu_enable_section_buttons() {
?>
    <style>
        #wp-generate-sections-editor-wrap .wp-media-buttons>a#add_gform {
            display: inline-block;
        }
    </style>
<?php
}

Thanks David! That fixed the Gravity Forms issue.

Thats great, thank you for providing the access so it could be resolved.

Ooops, just noticed that it works in sections on 'pages' but not in sections on 'posts' (not a big deal for me, but thought you should know)

Thanks Rick for the feedback, if you don't mind leaving the our user on the site so we can have a further look.

Sure, no problem. Thanks!

This archived topic is closed to new replies.