• Resolved liquidonthedrums

    (@liquidonthedrums)


    Hi,

    I am just testing out the plugin and have come across a bug or conflict that I just wanted to report. I am using Gravity Forms and the Gravity forms user registration addon.

    When I add a new text widget to the admin with Branda it is displaying the text content I have entered but is pulling some code/ text from the Gravity Forms user registration addon plugin and adding that to the widget also.

    Images attached below
    https://ibb.co/ftYP358
    https://ibb.co/bN9Cm8S

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @liquidonthedrums,

    I’m afraid since Gravity Forms is a premium plugin we couldn’t fully test it out in our system to say what exactly is causing it.

    From the given screenshot it looks more like a conflict. Is it possible to check which exact setting or module within Gravity forms is causing the issue? That’s deactivating or activating any specific setting causes the mentioned message to occur?

    Could you also try creating a custom Widget and see whether you get the same issue? This would help in pin pointing where the conflict is.

    You can use the following code to create a custom dashboard widget:

    <?php
    
    add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
      
    function my_custom_dashboard_widgets() {
    global $wp_meta_boxes;
     
    wp_add_dashboard_widget('custom_help_widget', 'Another Test Widget', 'custom_dashboard_help');
    }
     
    function custom_dashboard_help() {
    echo '<p>Hello World</p>';
    
    }

    You can add the above code as a mu-plugins. Please check this link on how to implement the above code as a mu-plugins:
    https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    The above should create a widget as seen here:

    Screenshot at 19:39:39.png

    Please do let us know how that goes. Have a nice day ahead.

    Kind Regards,
    Nithin

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @liquidonthedrums,

    We haven’t heard from you in a while, I’ll close this thread. Feel free to re-open this thread or let us know if you have any further queries.

    Best Regards
    Nithin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text Widget Bug/Conflict’ is closed to new replies.