Best Blackhat Forum

Full Version: [GET][NULLED] - Elementor Pro Live Page Builder For WordPress v2.0.11
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(06-17-2018 05:31 AM)ageav57 Wrote: [ -> ]<?php
/**
* Plugin Name: Elementor Pro
* Description: Elementor Pro brings a whole new design experience to WordPress. Customize your entire theme: header, footer, single post, archive and 404 page, all with one page builder.
* Plugin URI: https://elementor.com/
* Author: Elementor.com
* Version: 2.0.11
* Author URI: https://elementor.com/
*
* Text Domain: elementor-pro
*/

if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}

define( 'ELEMENTOR_PRO_VERSION', '2.0.11' );
define( 'ELEMENTOR_PRO_PREVIOUS_STABLE_VERSION', '1.15.6' );

update_option( 'elementor_pro_license_key', 'GANjAf05958872E193feb37a505a84be' );
set_transient( 'elementor_pro_license_data', [ 'license' => 'valid', 'expires' => '01.01.2050' ] );
set_transient( 'timeout_elementor_pro_license_data', 1893456000 );

define( 'ELEMENTOR_PRO__FILE__', __FILE__ );
define( 'ELEMENTOR_PRO_PLUGIN_BASE', plugin_basename( ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_PATH', plugin_dir_path( ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_MODULES_PATH', ELEMENTOR_PRO_PATH . 'modules/' );
define( 'ELEMENTOR_PRO_URL', plugins_url( '/', ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_ASSETS_URL', ELEMENTOR_PRO_URL . 'assets/' );
define( 'ELEMENTOR_PRO_MODULES_URL', ELEMENTOR_PRO_URL . 'modules/' );

/**
* Load gettext translate for our text domain.
*
* @since 1.0.0
*
* @return void
*/
function elementor_pro_load_plugin() {
load_plugin_textdomain( 'elementor-pro' );

if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', 'elementor_pro_fail_load' );
return;
}

$elementor_version_required = '2.0.12';
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_required, '>=' ) ) {
add_action( 'admin_notices', 'elementor_pro_fail_load_out_of_date' );
return;
}

$elementor_version_recommendation = '2.0.12';
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_recommendation, '>=' ) ) {
add_action( 'admin_notices', 'elementor_pro_admin_notice_upgrade_recommendation' );
}

require( ELEMENTOR_PRO_PATH . 'plugin.php' );
}
add_action( 'plugins_loaded', 'elementor_pro_load_plugin' );

/**
* Show in WP Dashboard notice about the plugin is not activated.
*
* @since 1.0.0
*
* @return void
*/
function elementor_pro_fail_load() {
$screen = get_current_screen();
if ( isset( $screen->parent_file ) and& 'plugins.php' === $screen->parent_file and& 'update' === $screen->id ) {
return;
}

$plugin = 'elementor/elementor.php';

if ( _is_elementor_installed() ) {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}

$activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $plugin . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $plugin );

$message = '<p>' . __( 'Elementor Pro not working because you need to activate the Elementor plugin.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Elementor Now', 'elementor-pro' ) ) . '</p>';
} else {
if ( ! current_user_can( 'install_plugins' ) ) {
return;
}

$install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );

$message = '<p>' . __( 'Elementor Pro not working because you need to install the Elementor plugin', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $install_url, __( 'Install Elementor Now', 'elementor-pro' ) ) . '</p>';
}

echo '<div class="error"><p>' . $message . '</p></div>';
}

function elementor_pro_fail_load_out_of_date() {
if ( ! current_user_can( 'update_plugins' ) ) {
return;
}

$file_path = 'elementor/elementor.php';

$upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path );
$message = '<p>' . __( 'Elementor Pro not working because you are using an old version of Elementor.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '</p>';

echo '<div class="error">' . $message . '</div>';
}

function elementor_pro_admin_notice_upgrade_recommendation() {
if ( ! current_user_can( 'update_plugins' ) ) {
return;
}

$file_path = 'elementor/elementor.php';

$upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path );
$message = '<p>' . __( 'A new version of Elementor is available. For better performance and compatibility of Elementor Pro, we recommend updating to the latest version.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '</p>';

echo '<div class="error">' . $message . '</div>';
}

if ( ! function_exists( '_is_elementor_installed' ) ) {

function _is_elementor_installed() {
$file_path = 'elementor/elementor.php';
$installed_plugins = get_plugins();

return isset( $installed_plugins[ $file_path ] );
}
}


I managed to fix the error in line 71 while pasting this to the file, still didn' work. all function works good but pro templates can't be imported, nor update can work too, also the annoying notification above the page http://prntscr.com/k08om6

U rock anyway, for trying to help chief. Thanks
same here
(06-28-2018 02:57 PM)HorLa Wrote: [ -> ]
(06-17-2018 05:31 AM)ageav57 Wrote: [ -> ]<?php
/**
* Plugin Name: Elementor Pro
* Description: Elementor Pro brings a whole new design experience to WordPress. Customize your entire theme: header, footer, single post, archive and 404 page, all with one page builder.
* Plugin URI: https://elementor.com/
* Author: Elementor.com
* Version: 2.0.11
* Author URI: https://elementor.com/
*
* Text Domain: elementor-pro
*/

if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}

define( 'ELEMENTOR_PRO_VERSION', '2.0.11' );
define( 'ELEMENTOR_PRO_PREVIOUS_STABLE_VERSION', '1.15.6' );

update_option( 'elementor_pro_license_key', 'GANjAf05958872E193feb37a505a84be' );
set_transient( 'elementor_pro_license_data', [ 'license' => 'valid', 'expires' => '01.01.2050' ] );
set_transient( 'timeout_elementor_pro_license_data', 1893456000 );

define( 'ELEMENTOR_PRO__FILE__', __FILE__ );
define( 'ELEMENTOR_PRO_PLUGIN_BASE', plugin_basename( ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_PATH', plugin_dir_path( ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_MODULES_PATH', ELEMENTOR_PRO_PATH . 'modules/' );
define( 'ELEMENTOR_PRO_URL', plugins_url( '/', ELEMENTOR_PRO__FILE__ ) );
define( 'ELEMENTOR_PRO_ASSETS_URL', ELEMENTOR_PRO_URL . 'assets/' );
define( 'ELEMENTOR_PRO_MODULES_URL', ELEMENTOR_PRO_URL . 'modules/' );

/**
* Load gettext translate for our text domain.
*
* @since 1.0.0
*
* @return void
*/
function elementor_pro_load_plugin() {
load_plugin_textdomain( 'elementor-pro' );

if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', 'elementor_pro_fail_load' );
return;
}

$elementor_version_required = '2.0.12';
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_required, '>=' ) ) {
add_action( 'admin_notices', 'elementor_pro_fail_load_out_of_date' );
return;
}

$elementor_version_recommendation = '2.0.12';
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_recommendation, '>=' ) ) {
add_action( 'admin_notices', 'elementor_pro_admin_notice_upgrade_recommendation' );
}

require( ELEMENTOR_PRO_PATH . 'plugin.php' );
}
add_action( 'plugins_loaded', 'elementor_pro_load_plugin' );

/**
* Show in WP Dashboard notice about the plugin is not activated.
*
* @since 1.0.0
*
* @return void
*/
function elementor_pro_fail_load() {
$screen = get_current_screen();
if ( isset( $screen->parent_file ) and& 'plugins.php' === $screen->parent_file and& 'update' === $screen->id ) {
return;
}

$plugin = 'elementor/elementor.php';

if ( _is_elementor_installed() ) {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}

$activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $plugin . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $plugin );

$message = '<p>' . __( 'Elementor Pro not working because you need to activate the Elementor plugin.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Elementor Now', 'elementor-pro' ) ) . '</p>';
} else {
if ( ! current_user_can( 'install_plugins' ) ) {
return;
}

$install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );

$message = '<p>' . __( 'Elementor Pro not working because you need to install the Elementor plugin', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $install_url, __( 'Install Elementor Now', 'elementor-pro' ) ) . '</p>';
}

echo '<div class="error"><p>' . $message . '</p></div>';
}

function elementor_pro_fail_load_out_of_date() {
if ( ! current_user_can( 'update_plugins' ) ) {
return;
}

$file_path = 'elementor/elementor.php';

$upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path );
$message = '<p>' . __( 'Elementor Pro not working because you are using an old version of Elementor.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '</p>';

echo '<div class="error">' . $message . '</div>';
}

function elementor_pro_admin_notice_upgrade_recommendation() {
if ( ! current_user_can( 'update_plugins' ) ) {
return;
}

$file_path = 'elementor/elementor.php';

$upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path );
$message = '<p>' . __( 'A new version of Elementor is available. For better performance and compatibility of Elementor Pro, we recommend updating to the latest version.', 'elementor-pro' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '</p>';

echo '<div class="error">' . $message . '</div>';
}

if ( ! function_exists( '_is_elementor_installed' ) ) {

function _is_elementor_installed() {
$file_path = 'elementor/elementor.php';
$installed_plugins = get_plugins();

return isset( $installed_plugins[ $file_path ] );
}
}


I managed to fix the error in line 71 while pasting this to the file, still didn' work. all function works good but pro templates can't be imported, nor update can work too, also the annoying notification above the page http://prntscr.com/k08om6

U rock anyway, for trying to help chief. Thanks
Not working
Works fine thank's
works perfect, thanks
Pages: 1 2
Reference URL's