Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: How to remove Gravity Forms nag #19503
    Huxu Wu
    Participant

    Took me a while to debug the plugin, but very tricky guys.

    in reply to: Gravity Forms Requesting Key #19501
    Huxu Wu
    Participant

    Guys, go check out the newest thread! I figured it out. They saved the nag into your database.

    in reply to: How to remove Gravity Forms nag #19499
    Huxu Wu
    Participant

    Okay, here is the final answer so you DO NOT need to edit any Gravity plugin form files or install additional plugins:

    function remove_gravity_forms_nag() {
    	update_option( 'rg_gforms_message', '' );
    	remove_action( 'after_plugin_row_gravityforms/gravityforms.php', array( 'GFForms', 'plugin_row' ) );
    }
    add_action( 'admin_init', 'remove_gravity_forms_nag' );

    Just copy and paste into your own plugin or theme functions.php file!

    • This reply was modified 6 years, 5 months ago by Huxu Wu. Reason: added code tag
    in reply to: How to remove Gravity Forms nag #19498
    Huxu Wu
    Participant

    Here are screenshots and proof:

    wp admin: https://snag.gy/wG9ZOi.jpg
    mysql: https://snag.gy/J5uveg.jpg

    in reply to: Gravity Forms Requesting Key #19496
    Huxu Wu
    Participant

    I think the virus total is reporting a virus because there is one function named:

    $result = eval( “return {$formula};” );

    in the calculate function. The way it is used is fine, nothing harmful. Just make sure you are covered under a managed cloud hosting like WP Engine so they un-hack your site just in case!

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