IMPORTANT : Your are using older version of WP Armour Extended. Please update to 1.17 or above for it to work properly.

'; } } if (current_user_can( 'manage_options' )): // ONLY SHOW IF ADMIN // FOR REVIEWS if (get_option('wpa_reviews_notice_hide') != 'yes'){ $installedDate = strtotime(get_option('wpa_installed_date')); $todayDate = time(); $installedDays = round(($todayDate - $installedDate) / (60 * 60 * 24)); $wpa_stats = json_decode(get_option('wpa_stats'),true); $all_spam_blocked = $wpa_stats ? $wpa_stats['total']['all_time'] : 0; if ($installedDays > 30 && $all_spam_blocked > 30){ echo '
Hey, WP Armour has blocked '.$all_spam_blocked.' spam submissions till date - that’s awesome! Could you please do us a BIG favor and give it a 5-star rating on WordPress ? Just to help us spread the word and boost our motivation.

'; } } // FOR PATERON if (!is_plugin_active('wp-armour-extended/wp-armour-extended.php')){ if (get_option('wpa_pateron_notice_hide') != 'yes'){ $installedDate = strtotime(get_option('wpa_installed_date')); $todayDate = time(); $installedDays = round(($todayDate - $installedDate) / (60 * 60 * 24)); $wpa_stats = json_decode(get_option('wpa_stats'),true); $all_spam_blocked = $wpa_stats ? $wpa_stats['total']['all_time'] : 0; if ($installedDays > 100 && $all_spam_blocked > 300 ){ echo '
Your support is vital for us to keep fighting spam. By supporting us on Patreon with as little as USD 1, you will help us continue developing of WP Armour Anti Spam Plugin.
'; } } } // UPSELLING EXTENDED VERSION if (get_option('wpa_extended_notice_hide') != 'yes' && !is_plugin_active('wp-armour-extended/wp-armour-extended.php') ){ $installedDate = strtotime(get_option('wpa_installed_date')); $todayDate = time(); $installedDays = round(($todayDate - $installedDate) / (60 * 60 * 24)); $wpa_stats = json_decode(get_option('wpa_stats'),true); $all_spam_blocked = $wpa_stats ? $wpa_stats['total']['all_time'] : 0; if ($installedDays > 90 && $all_spam_blocked > 1000){ echo '
Hey, WP Armour has blocked '.$all_spam_blocked.' spam submissions till date - that’s awesome!

Can you help us by purchasing our Extended Version ? This will helps up maintain and support the plugin in upcoming days and make it even better. Our Extended version starts from 19.99 USD and comes with yearly license, No API calls & Fully GDPR Complaint.

It has additional support including WooCommerce ( Blocks card testing orders), Ajax and Multi page Gravity Forms, Easy Digital Downloads, QuForm, MC4WP: Mailchimp for WordPress and have Spammer blocking based on IP, Record Spam Submission and many more.
'; } } endif; // CAN MANAGE OPTION }