Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: title.php
<?php /** * Elementor Controls for widget Instructor Display Name settings. * * @since 4.2.3 * @version 1.0.0 */ use Elementor\Controls_Manager; use LearnPress\ExternalPlugin\Elementor\LPElementorControls; // Fields tab content $content_fields = array_merge( LPElementorControls::add_fields_in_section( 'wrapper', esc_html__( 'Wrapper', 'learnpress' ), Controls_Manager::TAB_CONTENT, [ LPElementorControls::add_control_type( 'instructor_id', esc_html__( 'Set Instructor ID', 'learnpress' ), '', Controls_Manager::TEXT, [ 'description' => 'If widget include on page is Single Instructor, will be get instructor id automatic, from query var.', ] ), LPElementorControls::add_control_type( 'wrapper_tags', esc_html__( 'Add html tag wrapper Instructor Name', 'learnpress' ), [ [ 'open_tag' => '<div class="">', 'close_tag' => '</div>', ], ], Controls_Manager::REPEATER, [ 'fields' => [ [ 'name' => 'open_tag', 'label' => esc_html__( 'Html Open tag', 'learnpress' ), 'type' => Controls_Manager::TEXT, 'label_block' => true, ], [ 'name' => 'close_tag', 'label' => esc_html__( 'Html Close tag', 'learnpress' ), 'type' => Controls_Manager::TEXT, 'label_block' => true, ], ], 'prevent_empty' => false, ] ), ] ), [] ); // Fields tab style $style_fields = array_merge( LPElementorControls::add_fields_in_section( 'instructor_name', esc_html__( 'Instructor name', 'learnpress' ), Controls_Manager::TAB_STYLE, LPElementorControls::add_controls_style_text( 'title', '.instructor-display-name' ) ), [] ); return apply_filters( 'learn-press/elementor/instructor/title', array_merge( apply_filters( 'learn-press/elementor/instructor/title/tab-content', $content_fields ), apply_filters( 'learn-press/elementor/instructor/title/tab-styles', $style_fields ) ) );