JezK
Edit File: wb_product_short_description.php
<?php namespace Elementor; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Woolentor_Wb_Product_Short_Description_Widget extends Widget_Base { public function get_name() { return 'wl-single-product-short-description'; } public function get_title() { return __( 'WL: Product Short Description', 'woolentor' ); } public function get_icon() { return 'eicon-product-description'; } public function get_categories() { return array( 'woolentor-addons' ); } public function get_help_url() { return 'https://woolentor.com/documentation/'; } public function get_style_depends(){ return [ 'woolentor-widgets', ]; } public function get_keywords(){ return ['short description','description','product short description']; } protected function register_controls() { // Style $this->start_controls_section( 'product_content_style_section', array( 'label' => __( 'Style', 'woolentor' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_responsive_control( 'text_align', [ 'label' => __( 'Alignment', 'woolentor' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'woolentor' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __( 'Center', 'woolentor' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __( 'Right', 'woolentor' ), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => __( 'Justified', 'woolentor' ), 'icon' => 'eicon-text-align-justify', ], ], 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}}', ], ] ); $this->add_control( 'text_color', [ 'label' => __( 'Text Color', 'woolentor' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.woocommerce {{WRAPPER}} .woocommerce-product-details__short-description' => 'color: {{VALUE}}', '.woocommerce {{WRAPPER}} .woocommerce-product-details__short-description p' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'text_typography', 'label' => __( 'Typography', 'woolentor' ), 'selector' => '.woocommerce {{WRAPPER}} .woocommerce-product-details__short-description,.woocommerce {{WRAPPER}} .woocommerce-product-details__short-description p', ] ); $this->end_controls_section(); } protected function render( $instance = [] ) { global $product; $product = wc_get_product(); if( woolentor_is_preview_mode() ){ echo \WooLentor_Default_Data::instance()->default( $this->get_name() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped }else{ if ( empty( $product ) ) { return; } wc_get_template( 'single-product/short-description.php' ); } } }