How to Null and Activate Premium WordPress Themes and Plugins [Valuable info]

  • Thread starter Thread starter Deleted member 752298
  • Start date Start date
Hi
i have nulled version of masterstudy wordpress theme
it's ok but when i want to go to theme options error apears.
can anyone solve this problem ?
 
For my reply above, this is what Beyond Compare does. I am using the nulling I did with the Machic theme as an example:

When you are comparing two directories, it will show you what files are different in the whole directory

View attachment 210575

And when you click on any of the highlighted files, it will show the contents of both files side by side, highlighting the differences in red.

View attachment 210576

Hey @zilog357 I see your good works, please I need to null this theme. Any leads?

"don't forget to add a backdoor to the hacked code"??? What are you saying? Your comment suggests that you are only repeating others.

The "backdoor" is what hackers add to nulled scripts. That's the only way of accessing your data. The rest relies on the security configuration of your server.

As for genuine developers, the way they can change your script is through the update functions. That is why I always turn off all updates and other calls to the developer's server instead of only "return TRUE" in some functions and injecting license data in others.

It is not the gun, it is who fires it.

Hey @zilog357 I see your good works, please I need to null this theme. Any leads?
I appreciate your response.
 

Attachments

  • Screenshot_20230428-224837_Brave.png
    Screenshot_20230428-224837_Brave.png
    587.1 KB · Views: 11
  • SmartSelect_20230427-142738_Brave.jpg
    SmartSelect_20230427-142738_Brave.jpg
    292.2 KB · Views: 9
  • Screenshot_20230428-224837_Brave.png
    Screenshot_20230428-224837_Brave.png
    587.1 KB · Views: 10
  • SmartSelect_20230427-142738_Brave.jpg
    SmartSelect_20230427-142738_Brave.jpg
    292.2 KB · Views: 8
Hello @zyzer01

I do not have that theme. I would need to see the files to see what can be done.
 


I know "TL;DR" (Too Long, Didn't Read). I try to condense the best I can all the information so people don't get bored reading and do get all the information. You know, like when someone shares a file that is password protected and mentions the password in the first post, and then you get tons of posts asking for the password... we humans...

Well, here we go.

The theme can be activated but there are external extra things, like the extra skins, that will not be downloaded because the provider's server will check the validity of the license first, before providing the download files.

All other things and functions of the theme that work without any remote server dependency, will work with no problem.

That been said, the theme will be activated by using the method below. You will need to try it for yourself to see what things will work and what things will not.

An important thing is that the theme requires the "TRX_ADDONS" free plugin and it is installed when you install the theme. Such plugin requires a modification too of one line (listed below too). ANY time that there is an update to that plugin and you update it (and it will because it is free), you will need to do the plugin modification line again.

When there is a modification available for that free plugin, you will see it in the plugins area but it will not update until you click on "update", so you won't need to worry about the plugin auto-updating unless you have configured your server to do so.


MODIFICATIONS IN THE THEME (2):

#1

Code:
File:
chinchilla/plugins/trx_addons/trx_addons.php
Line:
1156
Change:
function chinchilla_is_theme_activated() {
To:
function chinchilla_is_theme_activated() { return true;

#2
Code:
File:
chinchilla/functions.php
Line:
21
Add the following block in the empty line 21:
if( get_option( sprintf( 'trx_addons_theme_%s_activated', get_option( 'template' ) ) ) != 1 ) {
  update_option( sprintf( 'trx_addons_theme_%s_activated', get_option( 'template' ) ), '1' );
  update_option( sprintf( 'purchase_code_%s', get_option( 'template' ) ), 'L12345678' );
}

NOTE: The "L12345678" in the code above is a fake license number. You may use anything or any random string of any number of characters.

MODIFICATION IN THE PLUGIN "TRX_ADDONS" (1)

Code:
File:
plugins/trx_addons/components/theme-panel/theme-panel.php
Line:
211
Change:
    function trx_addons_get_theme_activated_status() {
To:
    function trx_addons_get_theme_activated_status() { return 'active';

NOTE: Do not confuse the plugin with the other plugin with the same name in the theme/plugins folder. The one to be modified is the one downloaded in the WordPress plugin folder, NOT the theme folder.

Now, if you prefer the job done for you instead of messing with the above code, then below is the download for the main theme you provided, already modified, and the latest version of the "TRX_ADDONS" plugin, also already modified.

The child theme needs no modification. The other plugins, like "js_composer", "Elementor", etc. that's another story. Those are not covered in this report xD

DL:
Code:
https://www.mediafire.com/file/pna4abi82rijs4e/mod_files.zip/file

VT (0/57):
Code:
https://www.virustotal.com/gui/file/d2dbd53c502eb549ca0b9d67556017f11f3be1c561627dac70bc649d47d3b36b

Lol, thanks bro @RoiBox

You are always the first one to like my posts even if it does not help you directly.

Thank you, my friend :)
 
I know "TL;DR" (Too Long, Didn't Read). I try to condense the best I can all the information so people don't get bored reading and do get all the information. You know, like when someone shares a file that is password protected and mentions the password in the first post, and then you get tons of posts asking for the password... we humans...

Well, here we go.

The theme can be activated but there are external extra things, like the extra skins, that will not be downloaded because the provider's server will check the validity of the license first, before providing the download files.

All other things and functions of the theme that work without any remote server dependency, will work with no problem.

That been said, the theme will be activated by using the method below. You will need to try it for yourself to see what things will work and what things will not.

An important thing is that the theme requires the "TRX_ADDONS" free plugin and it is installed when you install the theme. Such plugin requires a modification too of one line (listed below too). ANY time that there is an update to that plugin and you update it (and it will because it is free), you will need to do the plugin modification line again.

When there is a modification available for that free plugin, you will see it in the plugins area but it will not update until you click on "update", so you won't need to worry about the plugin auto-updating unless you have configured your server to do so.


MODIFICATIONS IN THE THEME (2):

#1

Code:
File:
chinchilla/plugins/trx_addons/trx_addons.php
Line:
1156
Change:
function chinchilla_is_theme_activated() {
To:
function chinchilla_is_theme_activated() { return true;

#2
Code:
File:
chinchilla/functions.php
Line:
21
Add the following block in the empty line 21:
if( get_option( sprintf( 'trx_addons_theme_%s_activated', get_option( 'template' ) ) ) != 1 ) {
  update_option( sprintf( 'trx_addons_theme_%s_activated', get_option( 'template' ) ), '1' );
  update_option( sprintf( 'purchase_code_%s', get_option( 'template' ) ), 'L12345678' );
}

NOTE: The "L12345678" in the code above is a fake license number. You may use anything or any random string of any number of characters.

MODIFICATION IN THE PLUGIN "TRX_ADDONS" (1)

Code:
File:
plugins/trx_addons/components/theme-panel/theme-panel.php
Line:
211
Change:
    function trx_addons_get_theme_activated_status() {
To:
    function trx_addons_get_theme_activated_status() { return 'active';

NOTE: Do not confuse the plugin with the other plugin with the same name in the theme/plugins folder. The one to be modified is the one downloaded in the WordPress plugin folder, NOT the theme folder.

Now, if you prefer the job done for you instead of messing with the above code, then below is the download for the main theme you provided, already modified, and the latest version of the "TRX_ADDONS" plugin, also already modified.

The child theme needs no modification. The other plugins, like "js_composer", "Elementor", etc. that's another story. Those are not covered in this report xD

DL:
Code:
https://www.mediafire.com/file/pna4abi82rijs4e/mod_files.zip/file

VT (0/57):
Code:
https://www.virustotal.com/gui/file/d2dbd53c502eb549ca0b9d67556017f11f3be1c561627dac70bc649d47d3b36b
I'm literally wowed.
@zilog357
You don't know how much this means to me. Thank you very much
I'll give a feedback once I try it out.

I'm literally wowed.
@zilog357
You don't know how much this means to me. Thank you very much
I'll give a feedback once I try it out.
Hahaha
It worked.
Again, thank you very much!
 

Attachments

  • Screenshot_20230430-022906_Gallery.png
    Screenshot_20230430-022906_Gallery.png
    897.1 KB · Views: 12
Hi, I've been wondering if someone could help me with a theme that I've gotten recently. I have read all the posts on this thread and have been trying to figure it out myself, but unfortunately, the files in the plugin did not mention terms like 'license', or 'activated' anywhere. So, I'm currently stuck without ideas.

Can someone shows me which lines of codes I need to modify for the theme to work?

The themes mentioned are by themesia.
Here are the links to the files:
https://mega.nz/file/hOVTAIjZ#Zju19gQU1yPQ0uvUvruaZcY6CdGcEQBVLl6V0inV4j0
https://mega.nz/file/FHcljQ6D#UCWH5r56cZYkJwE5oHo1VdgmxkOrYfmOjZsuDBsmlKY
Thanks in advance.

Hi, I've been wondering if someone could help me with a theme that I've gotten recently. I have read all the posts on this thread and have been trying to figure it out myself, but unfortunately, the files in the plugin did not mention terms like 'license', or 'activated' anywhere. So, I'm currently stuck without ideas.

Can someone shows me which lines of codes I need to modify for the theme to work?

The themes mentioned are by themesia.
Here are the links to the files:
https://mega.nz/file/hOVTAIjZ#Zju19gQU1yPQ0uvUvruaZcY6CdGcEQBVLl6V0inV4j0
https://mega.nz/file/FHcljQ6D#UCWH5r56cZYkJwE5oHo1VdgmxkOrYfmOjZsuDBsmlKY
Thanks in advance.
ah, just found out that i need to use ioncube decoder to decode some of the scripts... which i dont have
 
Thanks for this! Very valuable information!
 
@zilog357

Hello Sir, is there a way to null the latest version of the Newspaper theme, version 12.4 ? earlier in this thread, I saw that you helped with the Newspaper theme, but that was years ago. your change of file in that instance was the td-composer, which was version 2.6... for Newspaper theme 12.4, the td-composer is now version 4.1

any help will be greatly appreciated.
 
Last edited:
@zilog357

Hello Sir, is there a way to null the latest version of the Newspaper theme, version 12.4 ? earlier in this thread, I saw that you helped with the Newspaper theme, but that was years ago. your change of file in that instance was the td-composer, which was version 2.6... for Newspaper theme 12.4, the td-composer is now version 4.1

any help will be greatly appreciated.


I do not have any of the files.

Can you share the theme so I can look at it? Otherwise, share the new td-composer plugin to check the file. Even when it is free, I do not have the download link. The link is in the theme files thou.
 
I do not have any of the files.

Can you share the theme so I can look at it? Otherwise, share the new td-composer plugin to check the file. Even when it is free, I do not have the download link. The link is in the theme files thou.
Thank you for responding... here are the files:

https://1drv.ms/u/s!Aq7Uqe8gh1amwUJzO8OfDVBBzzXf?e=FFWuWa

https://1drv.ms/u/s!Aq7Uqe8gh1amwUOuVJXTZ27Gsi52?e=2XzsLQ
 
Thank you for responding... here are the files:

The Newspaper Theme 12.3.1

td-composer 4.1

I will take a look at it later today. I will do it with Newsletter v12.4 instead of v12.3.1 and share it here if it can be nulled. I did not offer it because I thought you had a newer version.

Cheers

@zilog357 Deleted member 752298
Could you take a look and activate the Popcorn Theme, which is a famous theme for niche blog? Thanks a lot.

Not sure. I need to see it first. If you have a download, please share it. Otherwise, I can take a look at it when someone else shares it here.

Regards
 
I will take a look at it later today. I will do it with Newsletter v12.4 instead of v12.3.1 and share it here if it can be nulled. I did not offer it because I thought you had a newer version.

Cheers

Appreciate it.
Doing it with v12.4 or 12.3.1 doesn't matter to me. Yes, I have v12.3.1, but I can easily get v12.4.
Thanks again.
 
Back
Top