Please, i apologize i am new here. Can someone post a link to this post #576 ?
@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
thank you for sharing!Hey guys!
I love to contribute to BHW and I would like to share some handy lines of code to make it more easier to activate premium WordPress themes and plugins. To start with, I'd like to share how to null Yoast Premium plugins:
How to Activate Yoast Premium plugins:
Step 1:
Find the following file using a FTP client, such as FileZilla:
wordpress-seo-premium/vendor/yoast/license-manager/class-license-manager.php,
Step 2:
Find the function get_license_status() at line 327:
Code:public function get_license_status() { $license_status = $this->get_option( 'status' ); return trim( $license_status ); }
Step 3:
In line 330, change:
Code:return trim( $license_status );
to:
Code:return 'valid';
Et voilà: your Yoast Premium plugins will work.
More plugins and themes will follow soon.
Stay tuned.
This is awesome... However has anyone test this yet?Done.
The License is completely bypassed. You would need to test if it is successfully posting to social networks because that part I could not test in my test setup.
I mention this because I have seen social plugins like this with some remote functions in the developer's server that will only work with a license (like a SaaS). But so far, what I saw in the code looks like it is full, so real tests are needed.
There were three files modified (search the "//#######" mark inside the files to find the modifications):
- social-auto-poster -> social-auto-poster.php
- social-auto-poster -> includes -> wpw-auto-poster-misc-functions.php
- social-auto-poster -> includes -> admin -> wpw-auto-poster-licence-activation.php
DL:
Code:https://www.mediafire.com/file/1v57aidyqq1t11s/social-auto-poster_N.zip/file
VT (0/63):
Code:https://www.virustotal.com/gui/file/62652dc54e64065ec183c924bd351a4e88bf1e9b3be5726e41aa71f7e5c03693?nocache=1
In line #20,
Change this:
function sw_verify_purchase_code_result( $input ){
To this:
function sw_verify_purchase_code_result( $input ){ return true;
In line #106,
Change this:
function sw_validate_purchase_code( $input ){
To this:
function sw_validate_purchase_code( $input ){ return 'L12345678';
Add the following line in line #5 before the "use..." lines (push everything else down)
update_option( 'sw_purchase_code', 'L12345678' );
guys need this theme plz help me@zilog357 is a legend.
Tq Sir, I Always Admire You As My Master. @zilog357Well, 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.
Hello. As always, not sure if I don't check the code. Leave a download link and I will see what can be done.
@zilog357 could you help me with these two plugins? I've attached the full versions, but they need licenses.
https://mega.nz/file/3UtkzQhA#DD1ebxbWbjlTgnkNTlE5ZllhvlTiQ0ros8MBbLS9uK4
https://mega.nz/file/eFUTFSLT#I79JzJp_IYEEIFnGg0byL5zsx0tKNUxAHLloSrE0Euc
@zilog357 could you help me with these two plugins? I've attached the full versions, but they need licenses.
https://mega.nz/file/3UtkzQhA#DD1ebxbWbjlTgnkNTlE5ZllhvlTiQ0ros8MBbLS9uK4
https://mega.nz/file/eFUTFSLT#I79JzJp_IYEEIFnGg0byL5zsx0tKNUxAHLloSrE0Euc
<tr valign="top" class="global_title_rd <?php echo esc_attr($global_title_style); ?>">
<tr valign="top" class="global_title_rd <?php echo ( isset( $global_title_style ) ? esc_attr($global_title_style) : '' ); //####### ?>">
https://www.mediafire.com/file/na033wj01b27uff/social-auto-poster.zip/file
https://www.virustotal.com/gui/file/68caf99ab3b82750a07cf60e3b79cf17a9848565bb6c81714a91ca209a726f96?nocache=1
Thanks! Away from my desktop atm but will check this out when I get homeYou will have to do the final tests to see if it is actually posting to the networks but I don't see a reason (program-wise) for not doing it.


:| maybe a python dev who picked up just enough PHP...?On a separate note, the developer of this plugin did not care about undefined variables (lame).