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

  • Thread starter Thread starter Deleted member 752298
  • Start date Start date
Thank you. An interesting possibility, but a little complicated.
 
Thank you. An interesting possibility, but a little complicated.
You have bumped a three year old post, but since its already up, you can manually comapre code using notepad+ . I had manually activated many themes and plugins using same program.
 
I think you mixed something up. I did not bumped the 3 year old post. Look at the dates a little better.
 
@Codx64 For nulling that theme, 2 files must be modified in the "Merlin" class.

machic -> includes -> merlin -> class-merlin.php
machic -> includes -> merlin -> theme-register.php

The modified files are included in the download below.

So download the zip file below, unzip it, and put the resulting two modified PHP files in the following directory, overwriting the original files. If the theme is already installed, you may upload the two modified PHP files alone to the corresponding directory:

Always select "Advanced" and unselect the "Envato Market" plugin when installing the theme. It will not bother if it is installed, but it is not needed. It is for licensing Envato properties.

machic -> includes -> merlin

DL:
Code:
https://www.mediafire.com/file/0qzk7dywlr14w4k/Machic_Mod_Files.zip/file

VT (0/58):
Code:
https://www.virustotal.com/gui/file/ea504038159ec81a650051d364da2d89ae7f9bbfb8e250c6f4fbb25d61dd02cf

If you want to know the changes so you can do the nulling yourself in future versions, simply use a file-compare tool and check the two modified files against the original files in the download you provided.

Talking about that, @saleali asked for a file comparison product for this same purpose. My favorite tool for that is the "Beyond Compare" software (Windows). It goes around $60 but is worth it (I have it cracked though xD ).

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

1652410965511.png

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.

1652411077557.png
 
Thank you @zilog357! That's exactly what I was looking for. Could you send me a cracked version of the program?
 
@zilog357

Hi, can you help me with this plugin? I just changed line 34 of helpers.php to return. It shows plugin as premium activated but the premium functions like pdf print doesn't print as a premium plugin should be.

This is the free plugin, but the activation for premium is also inside.

https://wordpress.org/plugins/mpl-publisher/
I hope you can help. Thank you in advance.
 
Hello @zilog357 can you help me to get this plugin activated

if (isset($_REQUEST['activate_license'])) {

$license_key = $_REQUEST['sample_license_key'];

link: https://www.mediafire.com/file/lcc5bwuehdfyxti/sivtc.zip/file
 
Hi, can you help me with this plugin? I just changed line 34 of helpers.php to return. It shows plugin as premium activated but the premium functions like pdf print doesn't print as a premium plugin should be.
Is the method that is shared in the original post still working?
 
Is the method that is shared in the original post still working?
In a way yes. The plugin says premium activated on the dashboard. But since I only changed one line in the code, the features that supposed to work with a premium isn't working. Like pdf button shows up, but export to pdf does not export the document but shows the sample template of the non-premium version.

I know there should be something else that I need to change in the code that's why I ask for help.
 
Hi can i know How to null

Soledad – Multipurpose, Newspaper, Blog & WooCommerce WordPress Theme ?. after using the original theme for few days i cannot log in to dash board .​

its not allowing (see the attachment) to accesses dashboard. is there any way to bypass this?. any way to null this awesome theme? :):)
 

Attachments

  • screeen shot.jpg
    screeen shot.jpg
    168.8 KB · Views: 19
  • soledad-theme.jpg
    soledad-theme.jpg
    506.9 KB · Views: 17
Hi can i know How to null

Soledad – Multipurpose, Newspaper, Blog & WooCommerce WordPress Theme ?. after using the original theme for few days i cannot log in to dash board .​

its not allowing (see the attachment) to accesses dashboard. is there any way to bypass this?. any way to null this awesome theme? :):)




You must do 5 changes in 3 files

3 Changes in file: / inc / dashboard / inc / require-activation.php

---Around line #3---

Code:
Original code:
function penci_soledad_is_activated() {

Change to code:
function penci_soledad_is_activated() { return true;

---Around line #9---

Code:
Original code:
function penci_soledad_is_license() {

Change to code:
function penci_soledad_is_license() { return true;

---Around line #57---

Code:
Original code:
public function add_admin_scripts( $hook ) {

Change to code:
public function add_admin_scripts( $hook ) { return;


1 Change in file: / inc / custom-sidebar.php

---Around line #279---

Code:
Original code:
public static function sidebar_code( $code ) {

Change to code:
public static function sidebar_code( $code ) { return true;



1 Change in file: / functions.php


---Around line #23---

Code:
Right BEFORE:

add_action( 'after_setup_theme', 'penci_soledad_theme_setup' );

Add this code:

$license_data = [ 'buyer' => 'Anonymous', 'bount_time' => '1.1.2022', 'purchase_code' => 'L12345678'];
update_option( 'penci_soledad_purchased_data', $license_data );
update_option( 'penci_soledad_is_activated', true );



This last one above is the "Pseudo-License" data. You can replace 'Anonymous' with any name and 'L12345678' with any license key you can imagine. If left like it is, it will work no problem too.

Note, this was based in the version 8.1.4. Because at this writing, the latest version is 8.1.8, line numbers may vary a little. Just search the code nearby.
 
You must do 5 changes in 3 files

3 Changes in file: / inc / dashboard / inc / require-activation.php

---Around line #3---

Code:
Original code:
function penci_soledad_is_activated() {

Change to code:
function penci_soledad_is_activated() { return true;

---Around line #9---

Code:
Original code:
function penci_soledad_is_license() {

Change to code:
function penci_soledad_is_license() { return true;

---Around line #57---

Code:
Original code:
public function add_admin_scripts( $hook ) {

Change to code:
public function add_admin_scripts( $hook ) { return;


1 Change in file: / inc / custom-sidebar.php

---Around line #279---

Code:
Original code:
public static function sidebar_code( $code ) {

Change to code:
public static function sidebar_code( $code ) { return true;



1 Change in file: / functions.php


---Around line #23---

Code:
Right BEFORE:

add_action( 'after_setup_theme', 'penci_soledad_theme_setup' );

Add this code:

$license_data = [ 'buyer' => 'Anonymous', 'bount_time' => '1.1.2022', 'purchase_code' => 'L12345678'];
update_option( 'penci_soledad_purchased_data', $license_data );
update_option( 'penci_soledad_is_activated', true );



This last one above is the "Pseudo-License" data. You can replace 'Anonymous' with any name and 'L12345678' with any license key you can imagine. If left like it is, it will work no problem too.

Note, this was based in the version 8.1.4. Because at this writing, the latest version is 8.1.8, line numbers may vary a little. Just search the code nearby.
Hay zilog357 its worked..!!.. :):)
Thank you very much for the Quick reply and for your valuable time and effort.. really appreciate it..! :):);)
 
Hello, can I know how to do Newspaper X theme

this one: https://themeforest.net/item/newspaper/5489609

How to do this one? :)

Bump anyone can help with Newspaper X theme?
 
What are you trying to achieve?
Hey mate, I want to be able to null it every time it releases an update. that's all. Can you write which codes to edit as you did with the Rehub theme in this thread? :)
 
Hey mate, I want to be able to null it every time it releases an update. that's all. Can you write which codes to edit as you did with the Rehub theme in this thread? :)

Actually, the Rehub theme can be used without a license key (not the import of demo content), what features are limited for you?
 
Actually, the Rehub theme can be used without a license key (not the import of demo content), what features are limited for you?
Particularly looking for that newspaper theme from ThemeForest. That has the layout, widgets, looks, and everything.
 
That has the layout, widgets, looks, and everything.

These features can also be used without a license key as TF does not allow to block features behind a paywall.
 
Back
Top