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.
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 );
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;
In line #33, replace this:
public function get_license_status() : string {
with this:
public function get_license_status() : string { return 'active';
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?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.
https://send.cm/d/1E9ap
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?
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.
$mytheme = get_template();
update_option( 'trx_addons_theme_' . $mytheme . '_activated', true );
update_option( 'purchase_code_' . $mytheme, 'L12345678' );
update_option( 'purchase_code_src_' . $mytheme, 'L12345678' );
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?@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?


Can you send me the edited file as a zip
https://www.mediafire.com/file/zn2ml90m4oq3qfi/prisma.zip/file
https://www.virustotal.com/gui/file/22bb7fa22bfae2d0514026bcb8e3152279c0b9771ba2fdeb32176c3ad5c78195?nocache=1
Hey, @zilog357 Can you help me! to Active this plugin!
Plugin : https://send.cm/d/1EED1
VT: https://www.virustotal.com/gui/file...79ca57e665aa84107b139cc9c27a60156ea?nocache=1
@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
@zilog357 this one is tricky for me, every time I try to bypass the activation it stops working
https://drive.google.com/file/d/1CW4AheUkfGVXQjUKTb0h-jrFg1w7PqMv/view?usp=drive_link
VT : https://www.virustotal.com/gui/file...3e7206d97c2e43d3c046f5d3c595ded101c?nocache=1
$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 );
It worked! Thank you very much@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.
@zilog357 this one is tricky for me, every time I try to bypass the activation it stops working
https://drive.google.com/file/d/1CW4AheUkfGVXQjUKTb0h-jrFg1w7PqMv/view?usp=drive_link
VT : https://www.virustotal.com/gui/file...3e7206d97c2e43d3c046f5d3c595ded101c?nocache=1