Welcome to GPLDL - we are still beta - please report any bugs via the contact form.

GPLDLGPLDL
GPLDL
Download the most popular GPL licensed Premium WordPress Themes & Plugins and WooCommerce Extensions for FREE!
  • Blog
    • Blog Articles
    • Latest Updates & Additions
  • Repository
    • Full Repository
    • Premium WordPress Themes
    • Premium WordPress Plugins
    • Premium WooCommerce Extensions
    • Special Gifts for Premium Members
    • Tutorials
  • Forum
  • Free Membership
  • Donations
  • My GPLDL Account
  • Sign In
Menu back  

Elementor Pro 2.9.4 does not work until a valid licence is detected

  • This topic has 18 replies, 9 voices, and was last updated 6 months ago by Fernandes Alexander.
Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • May 25, 2020 at 3:15 am #22332
    keponaa kepona
    Participant

    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 #22351
    Insomnia
    Participant

    I 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 #22352
    Les Osborne
    Participant

    Insomnia, 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 you

    May 29, 2020 at 2:12 pm #22354
    Xtreme Ghost
    Participant

    Insomnia, 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 #22356
    Insomnia
    Participant

    I 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.php

    public 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.php

    public 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 7 months, 3 weeks ago by Insomnia. Reason: syntax fix
    May 29, 2020 at 5:31 pm #22358
    Les Osborne
    Participant

    To 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 #22359
    Critter Pup
    Participant

    I see you have updated the previous post. Great job

    May 29, 2020 at 7:43 pm #22360
    Xtreme Ghost
    Participant

    Insomnia,

    Thank you very much :)

    It works like a charm you’re my hero

    June 2, 2020 at 3:03 am #22372
    Insomnia
    Participant

    @Les Osborne,
    Yes. I used it for the current release.

    June 10, 2020 at 9:40 am #22394
    Critter Pup
    Participant

    Insomnia, 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 #22395
    Critter Pup
    Participant

    Must 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 #22427
    Mahadi Sijan
    Participant

    Can Please send me code which works for elementor new version that I can make nulled ?

    June 21, 2020 at 4:15 pm #22428
    Mahadi Sijan
    Participant

    Please send the code for current release.

    June 21, 2020 at 11:06 pm #22429
    Jone Chang
    Participant

    Yes, please send the code for current release. Thanks!

    • This reply was modified 7 months ago by Jone Chang.
    June 21, 2020 at 11:23 pm #22431
    Critter Pup
    Participant

    The code in the response above works fine. There are 2 code changes.

    June 22, 2020 at 7:00 am #22432
    Mahadi Sijan
    Participant

    Please tell me what code We should change to work element or current release .

    June 22, 2020 at 10:17 am #22434
    Critter Pup
    Participant

    Just look up higher on this topic. Post #22356

    June 29, 2020 at 7:18 pm #22467
    Farhan Ahmed
    Participant

    Thanks 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 #22524
    Fernandes Alexander
    Participant

    its work for me on E.Pro 2.10.3, thanks my broo

  • Author
    Posts
Viewing 19 posts - 1 through 19 (of 19 total)
  • You must be logged in to reply to this topic.
Log In
Search the Repository
We reward your Donations!
We need your Donation to maintain and grow the GPLDL WordPress Repository - and we reward your generosity with Premium Memberships allowing you to download even more files.

Learn more about donations & rewards...
News from our blog
  • How to get the MailPoet Premium Newsletter WordPress Plugin for free forever?
    January 22, 2017
  • How to remove the license code check from the WP-Rocket WordPress Plugin
    January 2, 2017
  • How to remove the WooThemes Updater Plugin notification from your WordPress Admin Dashboard
    May 28, 2016
Latest Updates & Additions
  • GPLDL News: 93 Updates & Additions today – Download 2249 Premium WordPress items!
    January 17, 2021
  • GPLDL News: 97 Updates & Additions today – Download 2248 Premium WordPress items!
    January 10, 2021
  • GPLDL News: 75 Updates & Additions today – Download 2235 Premium WordPress items!
    December 27, 2020
Tags
Admin Area automatic Backend code command display Download Drupal edit Extension fork forked functions.php get rid of GPL Guide hide hoot HowTo Instructions license Magento nag-screen nagscreen notification null nulled off Plugin Premium remove serial switch theme true tutorial Update Updater usage WooCommerce WooThemes wordpress WP-Media WP-Rocket
Welcome to GPLDL!
scr02We love innovation and we believe in free software!

That's why we strive to make the world's best Premium WordPress Themes & Plugins and WooCommerce Extensions & Themes available for everyone!

Find us on:

FacebookTwitterGoogle+RssPinterest
Latest Blog Posts
  • How to get the MailPoet Premium Newsletter WordPress Plugin for free forever?
    January 22, 2017
  • How to remove the license code check from the WP-Rocket WordPress Plugin
    January 2, 2017
  • How to remove the WooThemes Updater Plugin notification from your WordPress Admin Dashboard
    May 28, 2016
Latest Updates & Additions
  • GPLDL News: 93 Updates & Additions today – Download 2249 Premium WordPress items!
    January 17, 2021
  • GPLDL News: 97 Updates & Additions today – Download 2248 Premium WordPress items!
    January 10, 2021
  • GPLDL News: 75 Updates & Additions today – Download 2235 Premium WordPress items!
    December 27, 2020
About GPLDL
  • About GPLDL
  • F.A.Q.
  • Terms of Service
  • Privacy Policy
  • Contact
GPLDL - all Rights reserved.
  • About GPLDL
  • F.A.Q.
  • Terms of Service
  • Privacy Policy
  • Contact
  • Sign In
GPLDL Widget Menu
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkPrivacy policy