• Resolved Alex Stine

    (@alexstine)


    Hello,

    Under the General Options page, there is recommended plugins, news, and sharing buttons. Anyway to remove all this? I don’t want the site making outside calls to whoever knows where and would like to remove this stuff.

    Thanks and awesome plugin you have created.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Alex Stine

    (@alexstine)

    @oddoneout

    You have a great plugin here. If you could please pay this topic a visit, I would highly appreciate it.

    Thanks. πŸ™‚

    Thread Starter Alex Stine

    (@alexstine)

    Seems like this isn’t being watched very closely, I will look in to it and post a solution when I find one for the benefit of others.

    Thread Starter Alex Stine

    (@alexstine)

    It’s pretty poor that support doesn’t come after this long of a time. The plugin is free and it’s a good one, but not answering after this long makes people think it’s not supported anymore. Is there anyone out there that is ever going to answer?

    @oddoneout Awaiting your reply.

    Thanks.

    Plugin Author Khang Minh

    (@oddoneout)

    Hi Alex,

    Sorry for my extremely late reply.

    You can remove the sidebar by filtering bwp_sidebar_showable to false. For the social buttons, pleas filter bwp_donation_showable to false (the name is misleading, I know).

    Thread Starter Alex Stine

    (@alexstine)

    Hello,

    Thanks, I’ll give it a try. You have a great reCAPTCHA plugin out there. No need for so much advertising. It works well that’s what is going to keep me recommending it over the others.

    Thanks.

    Thread Starter Alex Stine

    (@alexstine)

    Hello,

    That did not work. Maybe these need priority? If so, what will be good? I have it in a custom plugin but don’t really like changing priorities to a high number.

    add_filter('bwp_sidebar_showable', '__return_false');
    add_filter('bwp_donation_showable', '__return_false');

    This is to complicated. They are really coded in good wherever they might be.

    Thanks, awaiting response.

    Plugin Author Khang Minh

    (@oddoneout)

    How are you currently calling those add_filter functions? Are they called during the init process? Please keep in mind that BWP plugins also use the init action hook (default priority of 10) so you can either try:

    – Calling those add_filter functions directly when your plugin file is included (it is safe as you basically return false).
    – Use a higher priority for the function that calls the above add_filter. For example:

    add_action(‘init’, ‘call_my_filters’, 9);
    function call_my_filters()
    {
    /// your two add_filter functions here
    }

    • This reply was modified 8 years, 10 months ago by Khang Minh.
    Thread Starter Alex Stine

    (@alexstine)

    Hello,

    Adding the priority of 9 seemed to do the trick.

    add_filter('bwp_sidebar_showable', '__return_false', 9);
    add_filter('bwp_donation_showable', '__return_false', 9);

    Thanks, marking resolved.

    Plugin Author Khang Minh

    (@oddoneout)

    Great to hear!

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Hide Plugin News’ is closed to new replies.