SHELL BYPASS 403 |
Modern UI. Responsive. Powerful.

Faizzz-Chin Shell

Uname\Kernel: Linux server.kxo.bgz.mybluehostin.me 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Server: Apache
PHP Version: 8.2.28 [ PHP INFO ]
Operating System: Linux
Server Ip: 162.240.163.222
Your Ip: 216.73.216.114
Date Time: 2025-07-11 02:43:22
User: dilseshaadi (1027) | Group: dilseshaadi (1027)
Safe Mode: OFF
Disable Function: exec,passthru,shell_exec,system

name : shortcode.php
<?php 

namespace WPV_AE; 

use Elementor\Plugin;

class Shortcode{

    private static $_instance = null;

    public static function instance()
    {
        if (is_null(self::$_instance)) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    private function __construct(){

        add_shortcode('INSERT_ELEMENTOR', [$this, 'render_shortcode']);

        add_filter( 'widget_text', 'do_shortcode' );
    }

    public function render_shortcode($atts){
        
        // Enable support for WPML & Polylang
        $language_support = apply_filters('ae_multilingual_support', false);

        if(!class_exists('Elementor\Plugin')){
            return '';
        }
		
        if(!isset($atts['id']) || empty($atts['id'])){
            return '';
        }

        $post_id = $atts['id'];

		if($language_support){
            $post_id = apply_filters( 'wpml_object_id', $post_id, 'ae_global_templates' );
        }

		$post = get_posts(
			[
				'post_type' => get_post_type($post_id),
				'post__in' => [$post_id] 
			]
		);

		if(!$post){
			return '';
		}

        $response = Plugin::instance()->frontend->get_builder_content_for_display($post[0]->ID);
        return $response;
    }

}

Shortcode::instance();
© 2025 Faizzz-Chin