OwlCyberSecurity - MANAGER
Edit File: product-additional-information.php
<?php namespace ElementorPro\Modules\Woocommerce\Widgets; use Elementor\Controls_Manager; use Elementor\Group_Control_Typography; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Product_Additional_Information extends Base_Widget { public function get_name() { return 'woocommerce-product-additional-information'; } public function get_title() { return esc_html__( 'Additional Information', 'elementor-pro' ); } public function get_icon() { return ' eicon-product-info'; } protected function register_controls() { $this->start_controls_section( 'section_additional_info_style', [ 'label' => esc_html__( 'General', 'elementor-pro' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'show_heading', [ 'label' => esc_html__( 'Heading', 'elementor-pro' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementor-pro' ), 'label_off' => esc_html__( 'Hide', 'elementor-pro' ), 'render_type' => 'ui', 'return_value' => 'yes', 'default' => 'yes', 'prefix_class' => 'elementor-show-heading-', ] ); $this->add_control( 'heading_color', [ 'label' => esc_html__( 'Color', 'elementor-pro' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.woocommerce {{WRAPPER}} h2' => 'color: {{VALUE}}', ], 'condition' => [ 'show_heading!' => '', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'heading_typography', 'selector' => '.woocommerce {{WRAPPER}} h2', 'condition' => [ 'show_heading!' => '', ], ] ); $this->add_control( 'content_color', [ 'label' => esc_html__( 'Color', 'elementor-pro' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.woocommerce {{WRAPPER}} .shop_attributes' => 'color: {{VALUE}}', ], 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'content_typography', 'selector' => '.woocommerce {{WRAPPER}} .shop_attributes', ] ); $this->end_controls_section(); } protected function render() { global $product; $product = $this->get_product(); if ( ! $product ) { return; } wc_get_template( 'single-product/tabs/additional-information.php' ); } public function render_plain_content() {} public function get_group_name() { return 'woocommerce'; } }