Wordfence Security Premium 7.11.5

kerovito

New member
XNullUser
Joined
May 20, 2024
Messages
6
Reaction score
4
Points
3
Location
Belgium
NullCash
110
Wordfence Security – Anti-virus, Firewall and Malware Scan

WordPress Pro and Free versions are same
, Here is how to enable Pro features:

Install the Wordfence plugin from here and use the following code snippets in your themes functions.php file

add_action('plugins_loaded', function(){
if( !class_exists('wfConfig') ) return;
wfConfig::set('isPaid', 1);
wfConfig::set('success', 1);
wfConfig::set('keyType', wfLicense::KEY_TYPE_PAID_CURRENT);
wfConfig::set('licenseType', wfLicense::TYPE_RESPONSE);
wfConfig::set('premiumNextRenew', time()+31536000);
}, 99);
When you activate Wordfence it will ask for a license, join the free Wordfence plan and use the license code Wordfence sends to your email. That will activate all the premium features.
 

Attachments

  • wordfence.zip
    5.5 MB · Views: 3

noople

Member
XNullUser
Joined
May 4, 2024
Messages
34
Reaction score
0
Points
6
Location
US
NullCash
7
Thank you so much for keeping it updated here.
 

nicol

Member
XNullUser
Joined
Aug 4, 2020
Messages
274
Reaction score
16
Points
18
NullCash
7
Wordfence Security – Anti-virus, Firewall and Malware Scan

WordPress Pro and Free versions are same
, Here is how to enable Pro features:

Install the Wordfence plugin from here and use the following code snippets in your themes functions.php file

add_action('plugins_loaded', function(){
if( !class_exists('wfConfig') ) return;
wfConfig::set('isPaid', 1);
wfConfig::set('success', 1);
wfConfig::set('keyType', wfLicense::KEY_TYPE_PAID_CURRENT);
wfConfig::set('licenseType', wfLicense::TYPE_RESPONSE);
wfConfig::set('premiumNextRenew', time()+31536000);
}, 99);
When you activate Wordfence it will ask for a license, join the free Wordfence plan and use the license code Wordfence sends to your email. That will activate all the premium features.
Install the Wordfence plugin from here and use the following code snippets in your themes functions.php file

add_action('plugins_loaded', function(){
if( !class_exists('wfConfig') ) return;
wfConfig::set('isPaid', 1);
wfConfig::set('success', 1);
wfConfig::set('keyType', wfLicense::KEY_TYPE_PAID_CURRENT);
wfConfig::set('licenseType', wfLicense::TYPE_RESPONSE);
wfConfig::set('premiumNextRenew', time()+31536000);
}, 99);
When you activate Wordfence it will ask for a license, join the free Wordfence plan and use the license code Wordfence sends to your email. That will activate all the premium features.
 

hello222

Member
XNullUser
Joined
Feb 12, 2022
Messages
82
Reaction score
0
Points
6
NullCash
4
Thank you so much for keeping it updated here.
 
Top