@oddoneout
You have a great plugin here. If you could please pay this topic a visit, I would highly appreciate it.
Thanks. π
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.
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.
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).
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.
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.
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.
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.