nailstone
Member
- Dec 12, 2020
- 97
- 46
- 18
I have been using this trick for quite a time and saw its not here.
so here it is.
For Example I will use "thrive comments", for that it will be like.
>thrive-comments\thrive-dashboard\classes\Product
and there you will see file 'LicenseManager.php' (open it)
and find the piece of code like below vvv (should be around line number 130)
and EDIT the code to be like this below vvv
and thats all.
NOTE(s) :-
so here it is.
For Example I will use "thrive comments", for that it will be like.
>thrive-comments\thrive-dashboard\classes\Product
and there you will see file 'LicenseManager.php' (open it)
and find the piece of code like below vvv (should be around line number 130)
Code:
protected function checkData( $item = null ) {
if ( empty( $this->license_data ) ) {
return false;
}
if ( in_array( self::ALL_TAG, $this->license_data ) ) {
return true;
}
and EDIT the code to be like this below vvv
Code:
protected function checkData( $item = null ) {
if ( empty( $this->license_data ) ) {
return true;
}
if ( in_array( self::ALL_TAG, $this->license_data ) ) {
return true;
}
and thats all.
NOTE(s) :-
- You have to do that in all the files for all the thrive plugins installed. (so if you have three thrive plugins installed then do that for every plugin)
- This trick will give you free updates and you WILL HAVE TO repeat the process after every update (better keep the auto update off)
- I have used it on three plugins 'thrive comments', thrive headline optimizer and clever widgets.
- LOL so basically just changing one 'false' to 'true' will make it work.