#1
Hi everybody! I need please if anybody can help me to null this theme https://themeforest.net/item/ewebot-seo-.../24776025?
on the folder core/registrator/license:verification.php .. Thanks in advance!!
Code:
 
<?php

function gt3_get_product_name (){
    $product = 'Ewebot - SEO and Marketing Agency WordPress Theme';
    return $product;
}

function gt3_registration($code = '',$action_type = 'register'){
if($action_type == 'register'){
return json_encode(array("respond"=>"Product is activated!")); } else {
return json_encode(array("respond"=>"Deregister successfully")); }
    if (empty($code)) {
        $code = get_option( 'gt3_registration');
    }
    global $wp_version;
    $product = gt3_get_product_name();
    $my_theme = wp_get_theme();
    $version = $my_theme->get( 'Version' );
    $response = wp_remote_post('https://gt3accounts.com/update/activate.php', array(
        'user-agent' => 'WordPress/'.$wp_version.'; '.esc_url( home_url() ),
        'sslverify' => false,
        'body' => array(
            'code' => urlencode(esc_attr($code)),
            'action_type' => urlencode($action_type),
            'version' => urlencode($version),
            'product' => urlencode($product)
        )
    ));

    $response_code = wp_remote_retrieve_response_code( $response );
    $version_info = wp_remote_retrieve_body( $response );

    if ( $response_code != 200 || is_wp_error( $version_info ) ) {
        return json_encode(array("respond"=>"Registration Connection error"));
    }

    return $version_info;
}

function gt3_account_activation($code = '',$email = ''){
    if (empty($code)) {
        $code = get_option( 'gt3_registration');
    }
    global $wp_version;
    $product = gt3_get_product_name();
    $my_theme = wp_get_theme();
    $version = $my_theme->get( 'Version' );

    if (!empty($email)) {
            $response = wp_remote_request('https://gt3accounts.com/app?createnewuser=true&purchase_code='.urlencode(gt3_string_coding($code)).'&item='.urlencode(gt3_string_coding($product)).'&useremail=gt3themes'.urlencode(gt3_string_coding($email)), array(
            'user-agent' => 'WordPress/'.$wp_version.'; '.esc_url( home_url() ),
            'sslverify' => false,
            'method' => 'POST',
            'body' => array(
                'code' => urlencode($code),
                'version' => urlencode($version),
                'product' => urlencode($product)
            )
        ));

        $response_code = wp_remote_retrieve_response_code( $response );
        $version_info = wp_remote_retrieve_body( $response );

        if ( $response_code != 200 || is_wp_error( $version_info ) ) {
            $errore_return = new WP_Error( 'registration-error-connection-error', esc_html__( 'Registration Connection error', 'ewebot' ) );
            return json_encode($errore_return);
        }
    }else{
        $errore_return = new WP_Error( 'registration-error-invalid-email', esc_html__( 'Please provide a valid email address.', 'ewebot' ) );
        return json_encode($errore_return);
    }

    return $version_info;
}

function gt3_activation_check($code = '',$email = '',$check_is_linked = false){
return json_encode(array("Status_active"=>"1","already_linked"=>true));
    if (empty($code)) {
        $code = get_option( 'gt3_registration');
    }
    global $wp_version;
    $product = gt3_get_product_name();
    $my_theme = wp_get_theme();
    $version = $my_theme->get( 'Version' );

    if (!empty($email) || $check_is_linked) {
            $response = wp_remote_request('https://gt3accounts.com/app?user_check=true&purchase_code='.urlencode(gt3_string_coding($code)).'&item='.urlencode(gt3_string_coding($product)).'&useremail=gt3themes'.urlencode(gt3_string_coding($email)), array(
            'user-agent' => 'WordPress/'.$wp_version.'; '.esc_url( home_url() ),
            'method' => 'POST',
            'sslverify' => false,
            'body' => array(
                'code' => urlencode($code),
                'version' => urlencode($version),
                'product' => urlencode($product)
            )
        ));

        $response_code = wp_remote_retrieve_response_code( $response );
        $version_info = wp_remote_retrieve_body( $response );

        if ( $response_code != 200 || is_wp_error( $version_info ) ) {
            $errore_return = new WP_Error( 'registration-error-connection-error', esc_html__( 'Registration Connection error', 'ewebot' ) );
            return json_encode($errore_return);
        }
    }else{
        $errore_return = new WP_Error( 'registration-error-invalid-email', esc_html__( 'Please provide a valid email address.', 'ewebot' ) );
        return json_encode($errore_return);
    }

    return $version_info;
}



if (get_option( 'gt3_registration_status') != 'active' && class_exists( 'GT3_Core_Elementor' ) && get_option( 'gt3_supported_account_registration_srart') != 'false') {
    add_action( 'admin_notices', 'gt3_registration_notice' );
}

function gt3_get_support_time_left(){
    $time_left = array();
    $supported_until = get_option('gt3_registration_supported_until');
    if (!empty($supported_until)) {        
        $date_format = get_option( 'date_format' );
        $supported_until = strtotime($supported_until);
        $current_time = current_time('timestamp');
        $time_left['expired'] = false;
        if (($supported_until - $current_time) < (3600 * 24 * 7)) {
            $time_left['notice_srart'] = true;
        }
        if ($supported_until < $current_time) {
            $time_left['expired'] = true;
        }
        $time_left['time_to_left'] = human_time_diff($supported_until, $current_time);
        return $time_left;
    }else{
        return $time_left;  
    }
}

add_action( 'admin_print_styles', 'gt3_support_notice' );

function gt3_support_notice(){   
    if (get_option('gt3_supported_notice_srart') == 'true' && class_exists( 'GT3_Core_Elementor' )) {
        add_action( 'admin_notices', 'gt3_registration_notice_supported_until');
    } 
}

function gt3_registration_notice() {
    if (get_option( 'gt3_supported_account_registration_srart') != 'false') {
  ?>
  <div class="notice notice-error" style="padding: 5px 25px 15px 75px;position: relative;">
    <i class="fa fa-exclamation" aria-hidden="true" style="position: absolute; top: 50%; left: 15px; margin-top: -22px;font-size: 25px; line-height: 40px; width: 40px;text-align: center; border: 2px solid;border-radius: 40px;"></i>
    <p><?php esc_html_e( 'Purchase Validation! Please activate your theme.', 'ewebot' ); ?></p>
     <div><a class="button button-primary" href="admin.php?page=<?php echo is_child_theme() == true ? 'Ewebot-Child' : 'Ewebot' ?>&tab=<?php echo class_exists('WooCommerce') ? '23' : '18'; ?>"><?php esc_html_e( 'Register Now', 'ewebot' ); ?> <i class="fa fa-angle-right" aria-hidden="true"></i></a> <a target="_blank" class="button button-primary" href="http://themeforest.net/cart/add_items?item_ids=24776025&ref=gt3themes"><?php esc_html_e( 'Buy Theme', 'ewebot' ); ?> <i class="fa fa-angle-right" aria-hidden="true"></i></a> <a style="vertical-align: bottom;margin-left: 10px;line-height: 1.6;" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'gt3-hide-notice', 'account_registration_srart' ), 'gt3_hide_notices_nonce', '_gt3_notice_nonce' ) ); ?>"><?php esc_html_e( 'Dismiss this notice', 'ewebot' ); ?></a></div>
  </div>
  <?php
  }
}

function gt3_registration_notice_supported_until() {
    $support_time_left = gt3_get_support_time_left();
    if (!empty($support_time_left['notice_srart']) && $support_time_left['notice_srart']) {
        $gt3_tmeme_id = get_option( 'gt3_tmeme_id' );
        if (!empty($gt3_tmeme_id)) {
            $theme_link = 'https://themeforest.net/checkout/from_item/'.(int)$gt3_tmeme_id.'?license=regular&size=source&support=renew_6month';
        }else{
            $theme_link = 'https://themeforest.net/user/gt3themes/portfolio?ref=gt3themes';
        }
  ?>
    <div class="notice notice-error is-dismissible" style="background-color: #d54e21; color: #ffffff; border-radius: 4px; padding: 10px 25px 10px 75px;position: relative;border-left: none;">
        <i class="fa fa-exclamation" aria-hidden="true" style="position: absolute; top: 50%; left: 15px; margin-top: -22px;font-size: 25px; line-height: 40px; width: 40px;text-align: center; border: 2px solid;border-radius: 40px;"></i>
        <p style="font-size: 1.4em;font-weight: 500;margin-bottom: 0;"><?php 
        if (!empty($support_time_left['expired']) && $support_time_left['expired'] == true) {
            esc_html_e( 'Your support package for this theme expired', 'ewebot' ); ?><?php echo " ( ".$support_time_left['time_to_left']." ".esc_html__( 'ago', 'ewebot' )." ).";
        }else{
            esc_html_e( 'Your support package for this theme is about to expire', 'ewebot' ); ?><?php echo " ( ".$support_time_left['time_to_left']." ".esc_html__( 'left', 'ewebot' )." ).";
        }     
        ?></p>
        <div style="margin-bottom: 10px;"><a class="button button-primary" target="_blank" href="<?php echo esc_url($theme_link); ?>" style="color: #ffffff;background: #ffffff;border-color: #ffffff;box-shadow: none;text-shadow: none;color: #d54e21;font-weight: 600;margin-top: 5px;"><?php esc_html_e( 'Update Support Package', 'ewebot' ); ?> <i class="fa fa-angle-right" aria-hidden="true"></i></a> <a class="button button-primary" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'gt3-hide-notice', 'notice_srart' ), 'gt3_hide_notices_nonce', '_gt3_notice_nonce' ) ); ?>" style="color: #ffffff;background: #ffffff;border-color: #ffffff;box-shadow: none;text-shadow: none;color: #d54e21;font-weight: 600;margin-top: 5px;"><?php esc_html_e( 'Dismiss this notice', 'ewebot' ); ?> <i class="fa fa-angle-right" aria-hidden="true"></i></a></div>
    </div>
  <?php
    }
}

add_action( 'wp_loaded', 'gt3_hide_hotice' );

function gt3_hide_hotice (){
    if ( isset( $_GET['gt3-hide-notice'] ) && isset( $_GET['_gt3_notice_nonce'] ) ) {
        if ( ! wp_verify_nonce( $_GET['_gt3_notice_nonce'], 'gt3_hide_notices_nonce' ) ) {
            wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'ewebot' ) );
        }
        $hide_notice = sanitize_text_field( $_GET['gt3-hide-notice'] );
        update_option( 'gt3_supported_'.$hide_notice , 'false' );
    }
}

if (get_option('gt3_supported_account_notice_srart') != 'false' 
    && get_option( 'gt3_registration_status') == 'active' 
    && class_exists( 'GT3_Core_Elementor' )
    && get_option( 'gt3_account_attached' ) != 'true') {
    add_action( 'admin_notices', 'gt3_account_notice' );
}
function gt3_account_notice(){    
    ?>
  <div class="notice notice-warning" style="padding: 10px">
    <p><strong><?php esc_html_e( 'Create account and manage your theme purchase codes.', 'ewebot' ) ?></strong></p>
    <p><strong><a href="admin.php?page=<?php echo is_child_theme() == true ? 'Ewebot-Child' : 'Ewebot' ?>&tab=23"><?php esc_html_e( 'Register Now', 'ewebot' ); ?></a> |  <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'gt3-hide-notice', 'account_notice_srart' ), 'gt3_hide_notices_nonce', '_gt3_notice_nonce' ) ); ?>"><?php esc_html_e( 'Dismiss this notice', 'ewebot' ); ?></a></strong></p>
  </div>
  <?php
}

//  Autoupdate theme
function gt3_check_theme_update ( $transient ){
return;
    $slug = 'ewebot';
    global $wp_version;

    if ( empty( $transient->checked ) || empty( $transient->checked[ $slug ] ) || ! empty( $transient->response[ $slug ] ) ) {
        return $transient;
    }    

    $product = gt3_get_product_name();
    $purchase_code = gt3_option('gt3_registration_id');
    if (is_array($purchase_code)) {
        $purchase_code = $purchase_code['puchase_code'];
    }
    $plugins = array('revslider','gt3-elementor-unlimited-charts','gt3-themes-core'); 
    $response = wp_remote_post('https://gt3accounts.com/update/upgrade.php', array(
        'user-agent' => 'WordPress/'.$wp_version.'; '.esc_url( home_url() ),
        'sslverify' => false,
        'body' => array(
            'code' => urlencode($purchase_code),
            'slug' => urlencode($slug),
            'product' => urlencode($product),
            'plugins' => $plugins
        )
    ));

    $response_code = wp_remote_retrieve_response_code( $response );
    $version_info = wp_remote_retrieve_body( $response );    

    if ( $response_code != 200 || is_wp_error( $version_info ) ) {
        return $transient;
    }

    $response = json_decode($version_info,true);
    if (isset( $response['transient'] ) && !empty( $response['transient']['changelog'])) {
        global $wp_version;
        $my_theme = wp_get_theme();
        $version = $my_theme->get( 'Version' );
        $gt3_changelog = get_option( 'gt3_changelog' );
        if (!empty($gt3_changelog) && is_array($gt3_changelog) && !empty($gt3_changelog[$slug])) {
            if (version_compare( $gt3_changelog[$slug]['changelog_version'], $response['transient']['new_version'], '<')) {
                $gt3_changelog[$slug]['changelog_version'] = $response['transient']['new_version'];
                $gt3_changelog[$slug]['content'] = gt3_modify_changelog($response['transient']['changelog']);
                update_option( 'gt3_changelog' , $gt3_changelog);
            }           
        }else{
            $gt3_changelog = array();
            $gt3_changelog[$slug]['changelog_version'] = $response['transient']['new_version'];
            $gt3_changelog[$slug]['content'] = gt3_modify_changelog($response['transient']['changelog']);
            update_option( 'gt3_changelog' , $gt3_changelog);
        }
    } 

    if (isset( $response['plugins'] ) && !empty($response['plugins']) && is_array($response['plugins'])) {
        $plugins = $response['plugins'];
        update_option( 'gt3_plugins' , $plugins);
    }
    
    if ( isset( $response['allow_update'] ) && $response['allow_update'] && isset( $response['transient'] ) 
    && version_compare( $transient->checked[ $slug ], $response['transient']['new_version'], '<') ) {
        $transient->response[ $slug ] = (array) $response['transient'];
    }

    return $transient;
}
if (gt3_option('gt3_auto_update')) {
    add_action( 'pre_set_site_transient_update_themes', 'gt3_check_theme_update', 100 );
}

function gt3_modify_changelog($content){
    if (!empty($content)) {
        $pattern = array(
            '/(\*\*\*)(.+)(\*\*\*)/',                    
            '/(\=\=)(.+)(\=\=)/',
            '/(\*)/'
        );
        $replace = array('<h1>${2}</h1>','</br><h2>${2}</h2>','</br>▪');
        $content = preg_replace($pattern,$replace,$content);
        return $content;
    }else{
        return;
    }
[align=left]}[/align]