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 need to remove the annoying notices from the Soledad 8.5.4 theme when checking the purchase code
https://send.cm/d/1Crk1

Thank you so so much.
https://send.cm/d/1Crk1
 
Hi!
I need to remove the annoying notices from the Soledad 8.5.4 theme when checking the purchase code
https://send.cm/d/1Crk1

Thank you so so much.

Well, the theme was only partially nulled by someone else.

Do this to properly null it (3 files):

#1 One mod in the file "soledad / functions.php":
Code:
At the top of the file, replace the line:
update_option( 'penci_soledad_is_activated', '1' );

and put this block instead (copy and paste it):
$array_data = [
  'buyer' => '[email protected]',
  'bount_time' => date( "M-d, Y" ),
  'purchase_code' => 'L1234567812345678',
];
update_option( 'penci_validate_check', strtotime( '+365 days' ) );
update_option( 'penci_soledad_is_activated', 1 );
update_option( 'penci_soledad_purchased_data', $array_data );
update_option( 'penci_loads_cm', 'load' );
update_option( 'penci_hide_license_notice', true );

#2 Two mods in the file "soledad / inc / dashboard / inc / require-activation.php":
Code:
A: In line #3, replace this:
function penci_soledad_is_activated() {

with this:
function penci_soledad_is_activated() { return true;

B: In line #9, replace this:
function penci_soledad_is_license() {

with this:
function penci_soledad_is_license() { return true;

NOTE: In the above modifications, there are similar lines preceding the lines to be modified using the "function_exists" function. Make sure you modify the correct lines.

#3 One mod in the file "soledad / inc / dashboard / lib / meta-box / src / Updater / Option.php":

Code:
In line #33, replace this:
public function get_license_status() : string {

with this:
public function get_license_status() : string { return 'active';

That will do the trick.
 
Well, the theme was only partially nulled by someone else.

Do this to properly null it (3 files):

#1 One mod in the file "soledad / functions.php":
Code:
At the top of the file, replace the line:
update_option( 'penci_soledad_is_activated', '1' );

and put this block instead (copy and paste it):
$array_data = [
  'buyer' => '[email protected]',
  'bount_time' => date( "M-d, Y" ),
  'purchase_code' => 'L1234567812345678',
];
update_option( 'penci_validate_check', strtotime( '+365 days' ) );
update_option( 'penci_soledad_is_activated', 1 );
update_option( 'penci_soledad_purchased_data', $array_data );
update_option( 'penci_loads_cm', 'load' );
update_option( 'penci_hide_license_notice', true );

#2 Two mods in the file "soledad / inc / dashboard / inc / require-activation.php":
Code:
A: In line #3, replace this:
function penci_soledad_is_activated() {

with this:
function penci_soledad_is_activated() { return true;

B: In line #9, replace this:
function penci_soledad_is_license() {

with this:
function penci_soledad_is_license() { return true;

NOTE: In the above modifications, there are similar lines preceding the lines to be modified using the "function_exists" function. Make sure you modify the correct lines.

#3 One mod in the file "soledad / inc / dashboard / lib / meta-box / src / Updater / Option.php":

Code:
In line #33, replace this:
public function get_license_status() : string {

with this:
public function get_license_status() : string { return 'active';

That will do the trick.

Marvelous!!!
You are the code wizard!

How can I learn to do these techniques so as not to disturb in the future?
 
Well, the theme was only partially nulled by someone else.

Do this to properly null it (3 files):

#1 One mod in the file "soledad / functions.php":
Code:
At the top of the file, replace the line:
update_option( 'penci_soledad_is_activated', '1' );

and put this block instead (copy and paste it):
$array_data = [
  'buyer' => '[email protected]',
  'bount_time' => date( "M-d, Y" ),
  'purchase_code' => 'L1234567812345678',
];
update_option( 'penci_validate_check', strtotime( '+365 days' ) );
update_option( 'penci_soledad_is_activated', 1 );
update_option( 'penci_soledad_purchased_data', $array_data );
update_option( 'penci_loads_cm', 'load' );
update_option( 'penci_hide_license_notice', true );

#2 Two mods in the file "soledad / inc / dashboard / inc / require-activation.php":
Code:
A: In line #3, replace this:
function penci_soledad_is_activated() {

with this:
function penci_soledad_is_activated() { return true;

B: In line #9, replace this:
function penci_soledad_is_license() {

with this:
function penci_soledad_is_license() { return true;

NOTE: In the above modifications, there are similar lines preceding the lines to be modified using the "function_exists" function. Make sure you modify the correct lines.

#3 One mod in the file "soledad / inc / dashboard / lib / meta-box / src / Updater / Option.php":

Code:
In line #33, replace this:
public function get_license_status() : string {

with this:
public function get_license_status() : string { return 'active';

That will do the trick.
where can we learn this?

can someone help me out with prisma wordpress theme? I am unable to share the link as the admins are not approving links

is this nullable??
Rich (BB code):
https://send.cm/d/1E9ap

Rich (BB code):
https://www.virustotal.com/gui/file/117451174ee1c246b073071bafe0a0fc53fa76a836805bb1ad22c63aca22aeea
 
Marvelous!!!
You are the code wizard!

How can I learn to do these techniques so as not to disturb in the future?

where can we learn this?

Guys, this is about PHP programming.

I am not an expert. I am still learning on the go as I implement custom modifications in my website to make it work exactly as I want.

PHP is all about functions. Each function is programmed to do something different. Find the functions that deal with the license and apply your learned knowledge of PHP to bypass it.

Nothing really magical. PHP has many similarities with C++, Python, Arduino, and even BASIC.

So to answer your question, learn PHP.

is this nullable??
Rich (BB code):
https://send.cm/d/1E9ap

Rich (BB code):
https://www.virustotal.com/gui/file/117451174ee1c246b073071bafe0a0fc53fa76a836805bb1ad22c63aca22aeea

I will check soon and will let you know.

I will check soon and will let you know.


@NovaKo

The Prisma theme uses the TrxAddons plugin. That means that you can use the generic activation code shared here.

Do this:

In the main folder of the theme, look for the file "functions.php". At the top of that file, there are 4 "Define" statements for constants. After those, line #21 is blank, insert there the following block:

Code:
$mytheme = get_template();
update_option( 'trx_addons_theme_' . $mytheme . '_activated', true );
update_option( 'purchase_code_' . $mytheme, 'L12345678' );
update_option( 'purchase_code_src_' . $mytheme, 'L12345678' );

And watch the "magic" happen
 
@NovaKo

The Prisma theme uses the TrxAddons plugin. That means that you can use the generic activation code shared here.

Do this:

In the main folder of the theme, look for the file "functions.php". At the top of that file, there are 4 "Define" statements for constants. After those, line #21 is blank, insert there the following block:

Code:
$mytheme = get_template();
update_option( 'trx_addons_theme_' . $mytheme . '_activated', true );
update_option( 'purchase_code_' . $mytheme, 'L12345678' );
update_option( 'purchase_code_src_' . $mytheme, 'L12345678' );

And watch the "magic" happen
the code worked Thanks a lot. now the issue is that the import demo option is not visible. is there any way to fix it?
 
the code worked Thanks a lot. now the issue is that the import demo option is not visible. is there any way to fix it?

Not sure what's wrong on your side, but here it is working perfectly.

Go to "Theme Panel" in the admin left menu and click on the "Demo Data" tab. Remember to first install the recommended / required plugins.

1723611573975.png


Then click on the "Full Import" tab and go from there.

1723611629917.png
 
Hey, @zilog357 Can you help me! to Active this plugin!
Plugin : https://send.cm/d/1EED1
VT: https://www.virustotal.com/gui/file/a76d0bb044629dadb43304a3f9bab79ca57e665aa84107b139cc9c27a60156ea?nocache=1
 
Can you send me the edited file as a zip

Sure, here it is.

Remember to install the needed plugins.

Also, if you installed the TRXAddon plugin already, erase it and install it new just in case.

DL:
Code:
https://www.mediafire.com/file/zn2ml90m4oq3qfi/prisma.zip/file

VT (0/66):
Code:
https://www.virustotal.com/gui/file/22bb7fa22bfae2d0514026bcb8e3152279c0b9771ba2fdeb32176c3ad5c78195?nocache=1
 
Deleted member 752298 okay, thanks

@zilog357 please, can you help me activate this theme: https://www.mediafire.com/file/0qk96ui2xo21tm1/hygia.zip/file

VT: https://www.virustotal.com/gui/file/541147b0ce290651d75752440e3b4d302146293b3008d75b7227de31debc496d/detection

I think (hygia/theme-specific/theme-about/theme-upgrade.php) is where to edit, but am not sure.

Thank you
 
Can someone help me to activate this theme? https://workupload.com/file/kf3cHUR9Epp
It says that I need a key to import demo content files.
 
@zilog357 please, can you help me activate this theme: https://www.mediafire.com/file/0qk96ui2xo21tm1/hygia.zip/file

VT: https://www.virustotal.com/gui/file...d302146293b3008d75b7227de31debc496d/detection

I think (hygia/theme-specific/theme-about/theme-upgrade.php) is where to edit, but am not sure.

Thank you



Got it. Will check soon and will let you know.

@ChucksW

This also uses the TRXAddon from ThemeRex.

Go back to page #29 of this thread, post #576, and do the same described there for line #21 of the "functions.php" file.

Now checking the other themes from the other two users... I will post soon.
 
@eldofcb

Try this:

In the main theme folder, look for the "functions.php" file, and at the top, in line #2 (right after the PHP opening tag "<?php"), put the following block:

Code:
$theme_data = [];
$theme_data['purchase'] = 'L12345678';
$theme_data['email'] = '[email protected]';
$theme_data['message'] = 'Thank you, your license has been validated';
$theme_data['success'] = '1';
$theme_data['error'] = '';
$theme_data['supported_until'] = '2080-01-01';
$theme_data['item_url'] = '1';
update_option( 'wgl_licence_validated', $theme_data );

Done!

Remember to install ALL the required plugins

Now one more theme for today for the theme from @MasterSina ...
 
Last edited:
@ChucksW

This also uses the TRXAddon from ThemeRex.

Go back to page #29 of this thread, post #576, and do the same described there for line #21 of the "functions.php" file.

Now checking the other themes from the other two users... I will post soon.
It worked! Thank you very much:-)
 

I see what you mean. I will try again tomorrow. This theme is different. It vastly uses the RestAPI for many things, even for license checking.

This one is a good challenge though.

I will let you know if I can break it.
 
Hey, @zilog357 Can you help me null this plugin with freemius? I tried to null it as you said in previous posts but for some cases it work and for some other its not working. Also when im deactivating the plugin its showing a fatal error on the site.
Plugin : https://www.mediafire.com/file/eymf7gzporssw4u/fibofilters-pro.zip/file
VT: https://www.virustotal.com/gui/file/d9d081b1e15a8447558cd29760561cdd170b6afd514a0ac46794df0ee34bf99c
 
Last edited:
Back
Top