thanks senoob. Will try it.
(06-07-2016 01:01 AM)senoob Wrote: [ -> ]Look into \x\framework\functions\global\admin\addons\modules\class-addons-validation.php
Save a backup copy in case you screw things up. Play around with it.
Start with line 70 to line 108.
Good luck.
(06-07-2016 12:53 AM)luckyse7en Wrote: [ -> ]Hi Senoob,
can share the tips on how to null it?
thanks
(06-06-2016 05:24 PM)senoob Wrote: [ -> ]Upgrade using ftp.
1. Unzip x_nulled.zip
2.Go to wp-content/themes, rename existing folder from 'x' to 'x-4.4.2'.
3. Transfer x to /wp-content/themes
4. Test site to see if everything shows up like usual.
5. If everything is working fine, delete 'x-4.4.2'
Please give credit to luckyse7en for sharing the original x theme.
AND DON'T FORGET TO REP damador! I used his method to null this theme.
Code:
http://www15.zippyshare.com/v/9NY4jZOj/file.html
I got message "Congratulations! Your site is validated. Addons are now unlocked." Below it say You're almost finished! your license of X is not validated. Input code and hit enter. Below the extensions the button Unlock All Extensions appears. It look like it's not completely nulled. I still be able to active the plugins manually via ftp trasnfer. But when I try ver 4.42 nulled by Damador, it's validated and all the extensions unlocked. I can see all the extensions. and no more input code and hit enter.
they changed validation method - i set another hint what is needed to do - sennob way worked up to 4.40 now need one more change in a different file to work
good. Hope that you can solve it. Thanks a lot...
(06-07-2016 01:45 AM)damador Wrote: [ -> ]they changed validation method - i set another hint what is needed to do - sennob way worked up to 4.40 now need one more change in a different file to work
This works
To Install a fresh copy (the one who are installing for the first time, not upgrading)
1. Download and install from the link provided by senoob.
2. Enter anything you need as activation key.
3. It will reload and again pouch back as enter the license(Something new modification by author).
4. Navigate to
Quote:/wp-content/themes/x/framework/functions/global
and find
helper.php open it.
5.
Change code on line 50:
from:
Quote:function x_is_validated() {
if ( get_option( 'x_product_validation_key' ) != false ) {
return true;
} else {
return false;
}
}
to:
Quote:function x_is_validated() {
if ( get_option( 'x_product_validation_key' ) != false ) {
return false;
} else {
return true;
}
}
7. Reload
can be both set to true too :) good find :)
Strange. Up until now my site is still working fine.
I don't see all the msg that luckyse7en saw. I always update themes or plugins manually thru' FTP, could this be the reason?
Like they say if it's working don't fix it. Guess they change validation files with new update which affect new install.
Great job blarrow.
So IN This Post I Teach You How To Null Your X The Theme WordPress Theme To Pro Version!!!
1: Go To /wp-content/themes/x/framework/functions/global
2: Open helper.php
3: Change code on line 50:
function x_is_validated() {
if ( get_option( ‘x_product_validation_key’ ) != false ) {
return true;
} else {
return false;
}
}
4: To:
function x_is_validated() {
if ( get_option( ‘x_product_validation_key’ ) != false ) {
return false;
} else {
return true;
}
}
After changed the helper.php validation worked and all extensions unlocked. Greats!!!.... Thanks for everyone who contribute this valuable info. thanks a lot...
(06-07-2016 11:34 AM)amintab2001 Wrote: [ -> ]So IN This Post I Teach You How To Null Your X The Theme WordPress Theme To Pro Version!!!
1: Go To /wp-content/themes/x/framework/functions/global
2: Open helper.php
3: Change code on line 50:
function x_is_validated() {
if ( get_option( ‘x_product_validation_key’ ) != false ) {
return true;
} else {
return false;
}
}
4: To:
function x_is_validated() {
if ( get_option( ‘x_product_validation_key’ ) != false ) {
return false;
} else {
return true;
}
}