- This topic has 18 replies, 9 voices, and was last updated 4 years, 3 months ago by Fernandes Alexander.
-
AuthorPosts
-
May 25, 2020 at 3:15 am #22332keponaa keponaParticipant
After updating to elementor 2.9.4, pro widgets cannot be used until a valid licence is detected. However if you have built the website using version other than 2.9.4, all the pro widgets will work and your site will work fine. But you will not be able to use any pro widgets without activating it. Does anyone have a method to remove licence verification?
May 29, 2020 at 10:18 am #22351InsomniaParticipantI don’t know if it’s allowed/wanted because I am not sure for the license but if some higher instance here gives his/her/its okay I could tell you a way to remove the licence barrier.
May 29, 2020 at 12:15 pm #22352Les OsborneParticipantInsomnia, I just got here from another post that walks people through this process. It uses the License fold and a couple files there that are modified. This was from mid 2019 so it is not valid any more. If you have a solution to Null the Elementor Pro plugin, it looks like it is OK to post it here.
Thank youMay 29, 2020 at 2:12 pm #22354Xtreme GhostParticipantInsomnia, Same here. If you could post it here. I think you will make a lot of people happy.
May 29, 2020 at 5:23 pm #22356InsomniaParticipantI found the mentioned post. Indeed it doesn’t seem up to date.
Like described there you need to edit 2 files with 2 methods.1)
In elementor-pro/license/admin.phppublic static function get_license_key() { return trim( get_option( 'elementor_pro_license_key' ) ); }
to
public static function get_license_key() { return '123456'; }
2)
In elementor-pro/license/api.phppublic static function get_license_data( $force_request = false ) { $license_data = get_transient( 'elementor_pro_license_data' ); if ( false === $license_data || $force_request ) { $body_args = [ 'edd_action' => 'check_license', 'license' => Admin::get_license_key(), ]; $license_data = self::remote_post( $body_args ); if ( is_wp_error( $license_data ) ) { $license_data = [ 'license' => 'http_error', 'payment_id' => '0', 'license_limit' => '0', 'site_count' => '0', 'activations_left' => '0', ]; self::set_license_data( $license_data, 30 * MINUTE_IN_SECONDS ); } else { self::set_license_data( $license_data ); } } return $license_data; }
to
public static function get_license_data( $force_request = false ) { return $license_data = [ 'license' => 'valid', 'expires' => '2100-12-31 23:59:59', 'payment_id' => 0, 'license_limit' => 100, 'site_count' => 100, 'activations_left' => 100, ]; }
The array of the get_license_data-method can contain more values but they are not needed
- This reply was modified 4 years, 5 months ago by Insomnia. Reason: syntax fix
May 29, 2020 at 5:31 pm #22358Les OsborneParticipantTo Insomnia, The one posted was from January of 2019. This will still work with the current 2020 release?
Thank you.May 29, 2020 at 6:56 pm #22359Critter PupParticipantI see you have updated the previous post. Great job
May 29, 2020 at 7:43 pm #22360Xtreme GhostParticipantInsomnia,
Thank you very much :)
It works like a charm you’re my hero
June 2, 2020 at 3:03 am #22372InsomniaParticipant@Les Osborne,
Yes. I used it for the current release.June 10, 2020 at 9:40 am #22394Critter PupParticipantInsomnia, I ust tried this on E-Pro version 2.10 and E 2.9.11 and I get a critical error when trying to go to a page edit.
June 10, 2020 at 10:51 am #22395Critter PupParticipantMust have been a minor error in the API file. It works now. I only replaced the small section.
June 21, 2020 at 4:10 pm #22427Mahadi SijanParticipantCan Please send me code which works for elementor new version that I can make nulled ?
June 21, 2020 at 4:15 pm #22428Mahadi SijanParticipantPlease send the code for current release.
June 21, 2020 at 11:06 pm #22429Jone ChangParticipantYes, please send the code for current release. Thanks!
- This reply was modified 4 years, 4 months ago by Jone Chang.
June 21, 2020 at 11:23 pm #22431Critter PupParticipantThe code in the response above works fine. There are 2 code changes.
June 22, 2020 at 7:00 am #22432Mahadi SijanParticipantPlease tell me what code We should change to work element or current release .
June 22, 2020 at 10:17 am #22434Critter PupParticipantJust look up higher on this topic. Post #22356
June 29, 2020 at 7:18 pm #22467Farhan AhmedParticipantThanks a looot man man. I downloaded the elementor pro from gpldl.com but I faced the same issue. It asked license key for working properly then I found your tips here and followed your instruction..Now It worked….You help me looot because I have’t budget for buy elementor pro
July 23, 2020 at 8:09 pm #22524Fernandes AlexanderParticipantits work for me on E.Pro 2.10.3, thanks my broo
-
AuthorPosts
- You must be logged in to reply to this topic.