- This topic has 2 replies, 2 voices, and was last updated 12 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore General Questions › Turn off bad behaviour warnings
Tagged: bad behaviour
I have purchased both eStore and eMember and have bad behaviours installed. I have added all the PayPal IPs bad behaviour whitelist and don’t believe I will have anymore problems so, for the love of Gd, is there anyway to turn of the now 2 x yellow warnings at the top of every single screen about having bad behaviour installed.
Please please please tell me there is a way to hide or disable these!!
Open the “wp_eStore1.php” file from eStore and look for the following block of code:
if(function_exists('bb2_install'))
{
$msg .= '<br />You have the Bad Behavior plugin active! This plugin is known to block PayPal's payment notification (IPN). Please see <a href="https://support.tipsandtricks-hq.com/forums/topic/list-of-plugins-that-dont-play-nice-conflicting-plugins" target="_blank">this post</a> for more details.<br />';
}
Once you find it delete that block of code and that will turn off the warning display from eStore.
Then find the following block of code from “wp_eMember1.php” file for eMember:
if(function_exists('bb2_install'))
{
$msg .= '<div class="updated fade">You have the Bad Behavior plugin active! This plugin is known to block PayPal's payment notification (IPN). Please see <a href="https://support.tipsandtricks-hq.com/forums/topic/list-of-plugins-that-dont-play-nice-conflicting-plugins" target="_blank">this post</a> for more details.</div>';
}
Once you find it delete that code block and it will turn off the bad behavior warning from eMember.
That’s what I ended up doing althought I only commented out the code rather than deleting it. I do realise I will have to repeat the exercise after each upgrade but at least I can use wordpress again without my eyeballs being seared out of my head on every page.