- Aug 7, 2022
- 131
- 126
- 43
I've been using that nulled version and so far it has been working fine. I suppose as long as the activation procedure stays the same, it'll work just fine.You copied the "api.php" file from the old version overwriting the new version, so I'm not sure if it will work fine with the new version![]()
I just tested on my test server and %100 working...Test this and give your feedback
Fixed and Tested in a local server = working 100%
If you have time to check what i changed please continu and test it .You copied the "api.php" file from the old version overwriting the new version, so I'm not sure if it will work fine with the new version![]()
I can't answer that question but if you check the changelog for this version it mentions a change to how licences are checked so I imagine that has something to do with the api?If you have time to check what i changed please continu and test it .
Can you tell me what's the function of this file "api.php" ? Please, i wanna learn .
If you have time to check what i changed please continu and test it .
Can you tell me what's the function of this file "api.php" ? Please, i wanna learn .
As far as I understand, in this new version developer has changed to manage v2 license key, manage Elementor free account connection. They have some changes in 2 files admin.php and api.php (elementor-pro\license\admin.php and elementor-pro\license\api.php)I can't answer that question but if you check the changelog for this version it mentions a change to how licences are checked so I imagine that has something to do with the api?
As far as I understand, in this new version developer has changed to manage v2 license key, manage Elementor free account connection. They have some changes in 2 files admin.php and api.php (elementor-pro\license\admin.php and elementor-pro\license\api.php)
Although license key v1 is still active, it may change in future versions.
Tested, all perfect! Thanks bro*** Hidden text: cannot be quoted. ***
if ( empty( $license_key ) ) {
$admin_notices->print_admin_notice( [
'title' => esc_html__( 'Welcome to Elementor Pro!', 'elementor-pro' ),
'description' => $this->get_activate_message(),
'button' => [
'text' => '<i class="dashicons dashicons-update" aria-hidden="true"></i>' . esc_html__( 'Connect & Activate', 'elementor-pro' ),
'url' => $this->get_connect_url( [
'utm_source' => 'wp-notification-banner',
'utm_medium' => 'wp-dash',
'utm_campaign' => 'connect-and-activate-license',
] ),
],
] );
return;
}
<?php
namespace ElementorPro\Core\Editor;
use Elementor\Core\Editor\Notice_Bar as Base_Notice_Bar;
use ElementorPro\License\Admin;
use ElementorPro\License\API as License_API;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Notice_Bar extends Base_Notice_Bar {
const ELEMENTOR_PRO_EDITOR_GO_PRO_TRIAL_ABOUT_TO_EXPIRE_LICENSE_NOTICE_DISMISSED = '_elementor_pro_editor_go_pro_trial_about_to_expire_license_notice_dismissed';
const ELEMENTOR_PRO_EDITOR_GO_PRO_TRIAL_EXPIRED_LICENSE_NOTICE_DISMISSED = '_elementor_pro_editor_go_pro_trial_expired_license_notice_dismissed';
const ELEMENTOR_PRO_EDITOR_RENEW_LICENSE_NOTICE_DISMISSED = '_elementor_pro_editor_renew_license_notice_dismissed';
const ELEMENTOR_PRO_EDITOR_ACTIVATE_LICENSE_NOTICE_DISMISSED = '_elementor_pro_editor_activate_license_notice_dismissed';
const ELEMENTOR_PRO_EDITOR_RENEW_ABOUT_TO_EXPIRE_LICENSE_NOTICE_DISMISSED = '_elementor_pro_editor_renew_about_to_expire_license_notice_dismissed';
}
core/editor/notice-bar.phpv3.9.0 (nulled)
Because this is simply a CTRL C + CTRL V.@Ledzepy this one![]()
Thank you for your kind answer...Because this is simply a CTRL C + CTRL V.
In the cited version the file is still being used "_elementor_pro_license_data" and in version 3.9.0 this does not exist.
In version 3.9.0 what exists is "_elementor_pro_license_v2_data" with new parameters.
That is, they are adding things from old versions to newer versions thinking they are doing the right thing.
Another thing they do is edit files that don't need to be edited.
-
PS.: Im not referring to the person quoted, im just saying what happens a lot here (specially with this plugin).