- This topic has 46 replies, 1 voice, and was last updated 1 year ago by Will Winnubst.
-
AuthorPosts
-
June 6, 2017 at 8:13 am #19033Elisabetta ElisaParticipant
Hello friends !
I have tested Thrive Leads 1.95.18 … the process activated the pplugin
but ….when I make TWO different widgets Leads , one work correctly and the other NO
Someone have this problem ?
How can I solve it?
By Ely (from Italy) and sorry for my bad english !
July 9, 2017 at 11:36 am #19134s dwParticipantyes, thrive theme know this site I guess, and they have updated the codes to add in one more steps to activate .
July 24, 2017 at 7:58 pm #19168James KattParticipantI see that Thrive Themes plugins and themes are no longer on GPLDL.com.
September 19, 2017 at 9:55 am #19306Alan ThorpParticipantIs this hack still working? about to try now but have not got high hopes
September 22, 2017 at 1:59 pm #19319Vicky MindyParticipantAmazing guide, its working.
Thanks.September 27, 2017 at 6:44 pm #19328s dwParticipantNot working anymore.
April 2, 2019 at 2:46 pm #21245Yuri GorenkovParticipantWorks great! Thanks!
But there is a small correction, today it is necessary to change the following lines:
#119 – $licensed = true;
#138 – if ( empty( $this->license_data ) ) {
return true;Hope this information will be useful!
April 14, 2019 at 2:35 am #21276John RaduParticipantYeah … this is still working. Every time plugins update just need to replace various values with “true”.
On line 127 for me said $license. I changed with “true” and bam … that was all.I ran into this hack when I found the plugin and decided to evaluate it.
Everything that shows “true” has been either false or different values.
I will upload a screenshot with values changed.May 28, 2019 at 12:16 am #21389Md Hayat AhmadParticipantjust change only 132 line false to true .. thats it .it will work bcse i have done nd it was doing great ..
guys just change 132 line false to true and else leave as it is.
May 30, 2019 at 7:47 pm #21397John RaduParticipantAfter this update, they changed and added different lines.
But I am 100% sure Thrive receives notifications from this thread, as I have noticed that the second day after someone posts another “hack”, there is an update that blocks it.I managed to figure it out again, but it will get disabled again if it gets posted
May 31, 2019 at 5:32 am #21398Claude TuringParticipantA simple logic switch is sufficient. No need to complicate things by switching a bunch of “false’s” to “true’s.”
Try to keep it minimalistic and only change line 137 from “false” to “true.”
Before:
protected function checkData( $item = null ) {
if ( empty( $this->license_data ) ) {
return false;
}
After:
protected function checkData( $item = null ) {
if ( empty( $this->license_data ) ) {
return true; // <-- This part.
}
Keep in mind that you’ll need to change this for all the updated TT plugins and theme that you’re using.
A quick way to see if you’ve missed a plugin, or theme, is to check the Thrive Dashboard. Every option available should be green-lighted and show you the name of the plugin. I.e.: THRIVE LEADS DASHBOARD
Hope that helps!
May 31, 2019 at 5:48 am #21399Claude TuringParticipantAn oversimplified explanation of the code is as follows:
protected function checkData( $item = null )
A protected function can only be accessed from within the class only.The function of checkData is to see if it it contains a value, in this case a licence key (license_data), or not (empty/no license key added.)
if ( empty( $this->license_data ) )
Checks to see “if” license_data is empty or not. When you don’t add your license key, the values is empty (null.)return false;
Since the license_data doesn’t contain any value (null) this part returns a false, thus disabling the possibility to use the plugin or theme in question.When we switch “false” to “true”, we’re basically fooling the code by asking it to return true when the license_data doesn’t contain a value. Thus we’re “switching” the logic.
}
The end bracket used to encapsulate the function.May 31, 2019 at 10:42 pm #21400John RaduParticipantClaude, I get it.
However, after each update, each module asks for registration, again :)
I was thinking on “nulling” mine, but after that might not get updated :)
I also found it online as “nulled”, but usually there is extra code, and I am not going to install it, to get the server hacked/cracked/infected.Plus, what you showed on line 137, for me shows on line 165.
June 20, 2019 at 12:57 pm #21450Prince KumarParticipantAny nice person here, who could share a link to download Thrive theme bundle.
July 9, 2019 at 9:53 am #21499Olawale DanielParticipantThe lines have been reduced to less than 100 lines right now. I changed all the false to true but nothing happened so far.
Kindly help @all
November 2, 2019 at 7:30 am #21821pieter raxisParticipantGuys, Girls,
Any news on the cracking?
November 20, 2023 at 6:04 pm #25224Will WinnubstParticipantI am very curious if you still manage to break the licence key of Thrive architect.
With the new version 3.261 I get an ‘critical error on the website’ when I try to edit a page with Thrive architect. (version 3.21 was not a problem)
-
AuthorPosts
- You must be logged in to reply to this topic.