trAvis - MANAGER
Edit File: Tp_Accordion.php
<?php namespace TheplusAddons\WPML; use WPML_Elementor_Module_With_Items; if ( ! defined('ABSPATH') ) exit; // No access of directly access class Tp_Accordion extends WPML_Elementor_Module_With_Items { /** * Get widget field name. * * @return string */ public function get_items_field() { return 'tabs'; } /** * Get the fields inside the repeater. * * @return array */ public function get_fields() { return array( 'tab_title', 'tab_content' ); } /** * @param string $field * * Get the field title string * * @return string */ protected function get_title( $field ) { switch($field) { case 'tab_title': return esc_html__( 'Accordion: Title', 'theplus' ); case 'tab_content': return esc_html__( 'Accordion: Content', 'theplus' ); default: return ''; } } /** * @param string $field * * Get perspective field types. * * @return string */ protected function get_editor_type( $field ) { switch($field) { case 'tab_title': return 'LINE'; case 'tab_content': return 'VISUAL'; default: return ''; } } }