REQ Plugin (REQ) Product Feed Elite by adtribes

RealHacker

Well-known member
Trusted Uploader
Dec 30, 2018
304
687
93
Comment with // or /* bla */, or manually add string to variables in lines:

- woocommerce-sea.php: lines 130, 131, 907, 916 <> 925, 3603, 3604, 3608 <> 3614, 3619, 3624

- js/woosea_key.js: lines 30, 36, 43, 44, 46, 47

- classes/class-activate.php: lines 1880, 1881, 1884, 1887 <> 1893, 1987, 1904

You can also download a fresh 7.1.5 from wp repository and compare (notepad++, winmerge, etc) these 3 files with nulled 7.1.5 below

=> Not the right way of nulling because cannot update plugin without doing all modifications again in update plugin code.
=> Add below code to your functions.php/child theme or wherever you want to properly null the plugin in non-destructive way i.e. allow it to update & still maintaining null state.
=> Not tested very thoroughly because not using plugin but prima facie it is working & should work. If needed adjustments or not working, ping me.

CODE (edited & fixed for new installation) -
PHP:
//plugin - product feeds pro - null - START
add_filter('pre_option_license_information','custom_null_product_feed_pro');
function custom_null_product_feed_pro(){
    remove_filter('pre_option_license_information','custom_null_product_feed_pro');
    $productFeedLicense=get_option('license_information');
    if(!is_array($productFeedLicense)){
        $productFeedLicense=[];
    }
    unset($productFeedLicense['message']);
    unset($productFeedLicense['message_type']);
    $productFeedLicenseNull=[
    'license_valid'=>true,
    'license_created'=>'2000-01-01',
    'notice'=>false,
    'license_email'=>'[email protected]',
    'license_key'=>'abcde12345',
    ];
    $productFeedLicense=array_merge($productFeedLicense,$productFeedLicenseNull);
    add_filter('pre_option_license_information','custom_null_product_feed_pro');
    return $productFeedLicense;
}
//plugin - product feeds pro - null - END
 
Last edited:

sobapi

Member
Aug 27, 2019
30
21
8
=> Not the right way of nulling because cannot update plugin without doing all modifications again in update plugin code.
=> Add below code to your functions.php/child theme or wherever you want to properly null the plugin in non-destructive way i.e. allow it to update & still maintaining null state.
=> Not tested very thoroughly because not using plugin but prima facie it is working & should work. If needed adjustments or not working, ping me.

CODE-

Thank you. Will test it that way
 

sobapi

Member
Aug 27, 2019
30
21
8
=> Not the right way of nulling because cannot update plugin without doing all modifications again in update plugin code.
=> Add below code to your functions.php/child theme or wherever you want to properly null the plugin in non-destructive way i.e. allow it to update & still maintaining null state.
=> Not tested very thoroughly because not using plugin but prima facie it is working & should work. If needed adjustments or not working, ping me.

CODE-

Tested with 7.2.6, not working
 

RealHacker

Well-known member
Trusted Uploader
Dec 30, 2018
304
687
93
Tested with 7.2.6, not working
Turns out it was because of new installation having null option value, fixed.
Check now (add in child theme,etc):

PHP:
//plugin - product feeds pro - null - START
add_filter('pre_option_license_information','custom_null_product_feed_pro');
function custom_null_product_feed_pro(){
    remove_filter('pre_option_license_information','custom_null_product_feed_pro');
    $productFeedLicense=get_option('license_information');
    if(!is_array($productFeedLicense)){
        $productFeedLicense=[];
    }
    unset($productFeedLicense['message']);
    unset($productFeedLicense['message_type']);
    $productFeedLicenseNull=[
    'license_valid'=>true,
    'license_created'=>'2000-01-01',
    'notice'=>false,
    'license_email'=>'[email protected]',
    'license_key'=>'abcde12345',
    ];
    $productFeedLicense=array_merge($productFeedLicense,$productFeedLicenseNull);
    add_filter('pre_option_license_information','custom_null_product_feed_pro');
    return $productFeedLicense;
}
//plugin - product feeds pro - null - END
 

theone2019

Member
Jun 21, 2019
46
9
8
Turns out it was because of new installation having null option value, fixed.
Check now (add in child theme,etc):

PHP:
//plugin - product feeds pro - null - START
add_filter('pre_option_license_information','custom_null_product_feed_pro');
function custom_null_product_feed_pro(){
    remove_filter('pre_option_license_information','custom_null_product_feed_pro');
    $productFeedLicense=get_option('license_information');
    if(!is_array($productFeedLicense)){
        $productFeedLicense=[];
    }
    unset($productFeedLicense['message']);
    unset($productFeedLicense['message_type']);
    $productFeedLicenseNull=[
    'license_valid'=>true,
    'license_created'=>'2000-01-01',
    'notice'=>false,
    'license_email'=>'[email protected]',
    'license_key'=>'abcde12345',
    ];
    $productFeedLicense=array_merge($productFeedLicense,$productFeedLicenseNull);
    add_filter('pre_option_license_information','custom_null_product_feed_pro');
    return $productFeedLicense;
}
//plugin - product feeds pro - null - END


No, it is not working,
it just removes the notification, but Premium functions are not active
 
Last edited:

theone2019

Member
Jun 21, 2019
46
9
8
Version 7.1.1 nulled:


I might have overnulled. I'm sure a more experienced user can null for less

But hey, it works as a charm!


I found the solution,

FIRST; installed nulled version 7.1.1, found in this thread
Second: I use the regular update from WP dashboard
Result: it is updated to 7.3.2. and License remain registreted!

maybe experienced users could comment my way of installing this plugin with Full Premium functions. I don't know - is this a good way of installing this plugin?
 

RealHacker

Well-known member
Trusted Uploader
Dec 30, 2018
304
687
93
I found the solution,

FIRST; installed nulled version 7.1.1, found in this thread
Second: I use the regular update from WP dashboard
Result: it is updated to 7.3.2. and License remain registreted!

maybe experienced users could comment my way of installing this plugin with Full Premium functions. I don't know - is this a good way of installing this plugin?
Please provide photo of what function is not working because prima facie couldn't find anything that was locked and bit busy in my work, if you can share some info/screenshot that this is what is not working/locked/missing than i can help you.
 

NullMaster

Well-known member
Null Master
Trusted Uploader
Jul 25, 2018
12,058
22,063
120
this problem is related to java script. can you test it from different browser. I'm still looking.
 
  • Like
Reactions: johnyblack

NullMaster

Well-known member
Null Master
Trusted Uploader
Jul 25, 2018
12,058
22,063
120
I am using firefox.
 

Attachments

  • screenshoot.png
    screenshoot.png
    20.3 KB · Views: 16

RealHacker

Well-known member
Trusted Uploader
Dec 30, 2018
304
687
93
No, it is not working,
it just removes the notification, but Premium functions are not active
Put everything to rest, updated code to add to functions.php is below.
Only update made in code to make it work more accurately is to change [true (boolean) to "true" (string)]. Yeah fucking crazy. Check & tell.
PHP:
//plugin - product feeds pro - null - START
add_filter('pre_option_license_information','custom_null_product_feed_pro');
function custom_null_product_feed_pro(){
    remove_filter('pre_option_license_information','custom_null_product_feed_pro');
    $productFeedLicense=get_option('license_information');
    if(!is_array($productFeedLicense)){
        $productFeedLicense=[];
    }
    unset($productFeedLicense['message']);
    unset($productFeedLicense['message_type']);
    $productFeedLicenseNull=[
    'license_valid'=>"true",
    'license_created'=>'2000-01-01',
    'notice'=>false,
    'license_email'=>'[email protected]',
    'license_key'=>'abcde12345',
    ];
    $productFeedLicense=array_merge($productFeedLicense,$productFeedLicenseNull);
    add_filter('pre_option_license_information','custom_null_product_feed_pro');
    return $productFeedLicense;
}
//plugin - product feeds pro - null - END
 

RealHacker

Well-known member
Trusted Uploader
Dec 30, 2018
304
687
93
this problem is related to java script. can you test it from different browser. I'm still looking.
Nah checking was done in javascript..but javascript was dynamically build from php variables. If controls used by developer was checking for string "false"/"true" at some places hence causing the issue.
 
  • Like
Reactions: johnyblack

NullMaster

Well-known member
Null Master
Trusted Uploader
Jul 25, 2018
12,058
22,063
120
v7.3.3 null
 
  • Like
Reactions: hwan ji

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu