-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
xtrasolutionsco.com
/
wp-content
/
plugins
/
tp-core
/
include
/
elementor
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
cssjs
--
NONE
templates
--
NONE
about.php
57.33KB
Edit File
Delete File
Rename
advanced-pricing.php
64.474KB
Edit File
Delete File
Rename
advanced-tab.php
22.697KB
Edit File
Delete File
Rename
animate-breadcrumb.php
21.405KB
Edit File
Delete File
Rename
application-form.php
5.887KB
Edit File
Delete File
Rename
blog-post.php
14.489KB
Edit File
Delete File
Rename
brand-animation.php
14.009KB
Edit File
Delete File
Rename
brand.php
11.774KB
Edit File
Delete File
Rename
browser-link.php
19.368KB
Edit File
Delete File
Rename
button.php
13.898KB
Edit File
Delete File
Rename
choose.php
28.192KB
Edit File
Delete File
Rename
contact-form.php
5.874KB
Edit File
Delete File
Rename
contact-info.php
24.333KB
Edit File
Delete File
Rename
contact-location.php
12.081KB
Edit File
Delete File
Rename
contact-tab.php
28.563KB
Edit File
Delete File
Rename
cta.php
26.845KB
Edit File
Delete File
Rename
fact.php
19.314KB
Edit File
Delete File
Rename
faq-info.php
17.712KB
Edit File
Delete File
Rename
faq.php
8.988KB
Edit File
Delete File
Rename
features.php
19.782KB
Edit File
Delete File
Rename
heading.php
11.38KB
Edit File
Delete File
Rename
hero-banner-1.php
72.672KB
Edit File
Delete File
Rename
industrial-info.php
30.671KB
Edit File
Delete File
Rename
info-banner.php
25.576KB
Edit File
Delete File
Rename
intregration-slider.php
7.619KB
Edit File
Delete File
Rename
job-details-title.php
9.157KB
Edit File
Delete File
Rename
jobs-post.php
7.874KB
Edit File
Delete File
Rename
journey.php
10.352KB
Edit File
Delete File
Rename
list.php
7.856KB
Edit File
Delete File
Rename
platform-area.php
20.835KB
Edit File
Delete File
Rename
portfolio-details-info.php
12.162KB
Edit File
Delete File
Rename
portfolio-details-sidebar.php
20.109KB
Edit File
Delete File
Rename
portfolio-grid.php
11.735KB
Edit File
Delete File
Rename
portfolio-post.php
11.561KB
Edit File
Delete File
Rename
pricing.php
27.578KB
Edit File
Delete File
Rename
process.php
18.193KB
Edit File
Delete File
Rename
project-slider.php
12.682KB
Edit File
Delete File
Rename
projects.php
22.576KB
Edit File
Delete File
Rename
rank.php
24.613KB
Edit File
Delete File
Rename
sale-info.php
36.763KB
Edit File
Delete File
Rename
services-title-list.php
20.188KB
Edit File
Delete File
Rename
services.php
51.222KB
Edit File
Delete File
Rename
slider.php
42.381KB
Edit File
Delete File
Rename
social.php
20.705KB
Edit File
Delete File
Rename
team-details-skill.php
16.175KB
Edit File
Delete File
Rename
team-details.php
24.703KB
Edit File
Delete File
Rename
team.php
31.657KB
Edit File
Delete File
Rename
testimonial.php
44.519KB
Edit File
Delete File
Rename
text-slider.php
9.134KB
Edit File
Delete File
Rename
video-popup-button.php
8.592KB
Edit File
Delete File
Rename
video-popup.php
6.003KB
Edit File
Delete File
Rename
<?php namespace TPCore\Widgets; use Elementor\Widget_Base; use Elementor\Controls_Manager; use \Elementor\Group_Control_Background; use \Elementor\Group_Control_Image_Size; use \Elementor\Repeater; use \Elementor\Utils; use TPCore\Elementor\Controls\Group_Control_TPBGGradient; use TPCore\Elementor\Controls\Group_Control_TPGradient; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * Tp Core * * Elementor widget for hello world. * * @since 1.0.0 */ class TP_Contact_Tab extends Widget_Base { use \TPCore\Widgets\TPCoreElementFunctions; /** * Retrieve the widget name. * * @since 1.0.0 * * @access public * * @return string Widget name. */ public function get_name() { return 'tp-contact-tab'; } /** * Retrieve the widget title. * * @since 1.0.0 * * @access public * * @return string Widget title. */ public function get_title() { return __( 'Contact Form Tabs', 'tpcore' ); } /** * Retrieve the widget icon. * * @since 1.0.0 * * @access public * * @return string Widget icon. */ public function get_icon() { return 'tp-icon'; } /** * Retrieve the list of categories the widget belongs to. * * Used to determine where to display the widget in the editor. * * Note that currently Elementor supports only one category. * When multiple categories passed, Elementor uses the first one. * * @since 1.0.0 * * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'tpcore' ]; } /** * Retrieve the list of scripts the widget depended on. * * Used to set scripts dependencies required to run the widget. * * @since 1.0.0 * * @access public * * @return array Widget scripts dependencies. */ public function get_script_depends() { return [ 'tpcore' ]; } public function get_tp_contact_form(){ if ( ! class_exists( 'WPCF7' ) ) { return; } $tp_cfa = array(); $tp_cf_args = array( 'posts_per_page' => -1, 'post_type'=> 'wpcf7_contact_form' ); $tp_forms = get_posts( $tp_cf_args ); $tp_cfa = ['0' => esc_html__( 'Select Form', 'tpcore' ) ]; if( $tp_forms ){ foreach ( $tp_forms as $tp_form ){ $tp_cfa[$tp_form->ID] = $tp_form->post_title; } }else{ $tp_cfa[ esc_html__( 'No contact form found', 'tpcore' ) ] = 0; } return $tp_cfa; } /** * Register the widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * * @access protected */ protected function register_controls(){ $this->register_controls_section(); $this->style_tab_content(); } protected function register_controls_section() { // layout Panel $this->start_controls_section( 'tp_layout', [ 'label' => esc_html__('Design Layout', 'tpcore'), ] ); $this->add_control( 'tp_design_style', [ 'label' => esc_html__('Select Layout', 'tpcore'), 'type' => Controls_Manager::SELECT, 'options' => [ 'layout-1' => esc_html__('Layout 1', 'tpcore'), 'layout-2' => esc_html__('Layout 2', 'tpcore'), ], 'default' => 'layout-1', ] ); $this->end_controls_section(); $this->tp_section_title_render_controls('section', 'Section Title', 'Sub Title', 'your title here', $default_description = 'Hic nesciunt galisum aut dolorem aperiam eum soluta quod ea cupiditate.',['layout-1', 'layout-2']); // Contact group $this->start_controls_section( 'tp_contacts', [ 'label' => esc_html__('Contact Tab List', 'tpcore'), 'description' => esc_html__( 'Control all the style settings from Style tab', 'tpcore' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $repeater = new \Elementor\Repeater(); $repeater->add_control( 'repeater_condition', [ 'label' => __( 'Field condition', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'style_1' => __( 'Style 1', 'tpcore' ), ], 'default' => 'style_1', 'frontend_available' => true, 'style_transfer' => true, ] ); $repeater->add_control( 'tp_contact_icon_type', [ 'label' => esc_html__('Select Icon Type', 'tpcore'), 'type' => \Elementor\Controls_Manager::SELECT, 'default' => 'icon', 'options' => [ 'image' => esc_html__('Image', 'tpcore'), 'icon' => esc_html__('Icon', 'tpcore'), 'svg' => esc_html__('SVG', 'tpcore'), ], ] ); $repeater->add_control( 'tp_contact_image', [ 'label' => esc_html__('Upload Icon Image', 'tpcore'), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_contact_icon_type' => 'image' ] ] ); if (tp_is_elementor_version('<', '2.6.0')) { $repeater->add_control( 'tp_contact_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICON, 'label_block' => true, 'default' => 'fa fa-star', 'condition' => [ 'tp_contact_icon_type' => 'icon' ] ] ); } else { $repeater->add_control( 'tp_contact_selected_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'icon', 'label_block' => true, 'default' => [ 'value' => 'fas fa-star', 'library' => 'solid', ], 'condition' => [ 'tp_contact_icon_type' => 'icon' ] ] ); } $repeater->add_control( 'tp_contact_icon_svg', [ 'show_label' => false, 'type' => Controls_Manager::TEXTAREA, 'label_block' => true, 'placeholder' => esc_html__('SVG Code Here', 'tp-core'), 'condition' => [ 'tp_contact_icon_type' => 'svg', ] ] ); $repeater->add_control( 'tp_contact_btn_title', [ 'label' => esc_html__('Button Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__('Home', 'tpcore'), 'label_block' => true, ] ); $repeater->add_control( 'tp_contact_title', [ 'label' => esc_html__('Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__('Contact Title', 'tpcore'), 'label_block' => true, ] ); if (class_exists( 'WPCF7' ) ){ $repeater->add_control( 'tpcore_select_contact_form', [ 'label' => esc_html__( 'Select Form', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'default' => '0', 'options' => $this->get_tp_contact_form(), ] ); } $this->add_control( 'tp_contact_list', [ 'label' => esc_html__('Contact - List', 'tpcore'), 'type' => \Elementor\Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'default' => [ [ 'tp_contact_btn_title' => esc_html__('Home', 'tpcore'), 'tp_contact_title' => esc_html__('Business Stratagy', 'tpcore'), ], [ 'tp_contact_btn_title' => esc_html__('Vehicle', 'tpcore'), 'tp_contact_title' => esc_html__('Website Development', 'tpcore') ], [ 'tp_contact_btn_title' => esc_html__('Life', 'tpcore'), 'tp_contact_title' => esc_html__('Marketing & Reporting', 'tpcore') ] ], 'title_field' => '{{{ tp_contact_btn_title }}}', ] ); $this->end_controls_section(); // _tp_image $this->start_controls_section( '_tp_image', [ 'label' => esc_html__('Thumbnail', 'tpcore'), 'condition' => [ 'tp_design_style' => ['layout-1', 'layout-2'] ] ] ); $this->add_control( 'tp_image', [ 'label' => esc_html__( 'Choose Image', 'tpcore' ), 'type' => \Elementor\Controls_Manager::MEDIA, 'default' => [ 'url' => \Elementor\Utils::get_placeholder_image_src(), ], ] ); $this->add_control( 'tp_image_2', [ 'label' => esc_html__( 'Choose Image 2', 'tpcore' ), 'type' => \Elementor\Controls_Manager::MEDIA, 'default' => [ 'url' => \Elementor\Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_design_style' => 'layout-2' ] ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'tp_image_size', 'default' => 'full', 'exclude' => [ 'custom' ] ] ); $this->end_controls_section(); // shape $this->start_controls_section( 'tp_shape', [ 'label' => esc_html__( 'Shape', 'tpcore' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, 'condition' => [ 'tp_design_style' => 'layout-2' ] ] ); $this->add_control( 'tp_shape_switch', [ 'label' => esc_html__( 'Shape On/Off', 'tpcore' ), 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'tpcore' ), 'label_off' => esc_html__( 'Hide', 'tpcore' ), 'return_value' => 'yes', 'default' => '0', ] ); $this->add_control( 'tp_shape_image_1', [ 'label' => esc_html__( 'Choose Shape Image 1', 'tp-core' ), 'type' => \Elementor\Controls_Manager::MEDIA, 'default' => [ 'url' => \Elementor\Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_shape_switch' => 'yes' ] ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'shape_image_size', // // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`. 'exclude' => ['custom'], 'condition' => [ 'tp_shape_switch' => 'yes' ], 'default' => 'full' ] ); $this->end_controls_section(); } // style_tab_content protected function style_tab_content(){ $this->tp_section_style_controls('contacts_section', 'Section Style', '.ele-section'); } /** * Render the widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); ?> <?php if ( $settings['tp_design_style'] == 'layout-2' ) : // thumbnail image if ( !empty($settings['tp_image']['url']) ) { $tp_image = !empty($settings['tp_image']['id']) ? wp_get_attachment_image_url( $settings['tp_image']['id'], $settings['tp_image_size_size']) : $settings['tp_image']['url']; $tp_image_alt = get_post_meta($settings['tp_image']["id"], "_wp_attachment_image_alt", true); } if ( !empty($settings['tp_image_2']['url']) ) { $tp_image_2 = !empty($settings['tp_image_2']['id']) ? wp_get_attachment_image_url( $settings['tp_image_2']['id'], $settings['tp_image_size_size']) : $settings['tp_image_2']['url']; $tp_image_alt_2 = get_post_meta($settings['tp_image_2']["id"], "_wp_attachment_image_alt", true); } // shape image if ( !empty($settings['tp_shape_image_1']['url']) ) { $tp_shape_image = !empty($settings['tp_shape_image_1']['id']) ? wp_get_attachment_image_url( $settings['tp_shape_image_1']['id'], $settings['shape_image_size_size']) : $settings['tp_shape_image_1']['url']; $tp_shape_image_alt = get_post_meta($settings["tp_shape_image_1"]["id"], "_wp_attachment_image_alt", true); } $this->add_render_attribute('title_args', 'class', 'tp-section-title'); ?> <div class="tp-insurance-area pt-120 p-relative overflow-hidden pb-120 grey-bg-1"> <div class="tp-insurance-innar"> <?php if(!empty($tp_shape_image)) : ?> <div class="tpquote-3__quote-bg"> <img src="<?php echo esc_url($tp_shape_image); ?>" alt="<?php echo esc_attr($tp_shape_image_alt); ?>"> </div> <?php endif; ?> <div class="container"> <?php if ( !empty($settings['tp_section_section_title_show']) ) : ?> <div class="row"> <div class="col-xl-6"> <div class="tp-insurance-section-box mb-50 p-relative z-index-2"> <?php if ( !empty($settings['tp_section_sub_title']) ) : ?> <div class="tp-section-subtitle mb-15"><?php echo tp_kses($settings['tp_section_sub_title']); ?></div> <?php endif; ?> <?php if ( !empty($settings['tp_section_title' ]) ) : printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings['tp_section_title_tag'] ), $this->get_render_attribute_string( 'title_args' ), tp_kses( $settings['tp_section_title' ] ) ); endif; ?> <?php if ( !empty($settings['tp_section_description']) ) : ?> <p><?php echo tp_kses( $settings['tp_section_description'] ); ?></p> <?php endif; ?> </div> </div> </div> <?php endif; ?> <div class="row align-items-center"> <div class="col-xl-6 col-lg-6 col-md-6 col-12 z-index-1"> <div class="tp-inurance-tab-section "> <nav> <div class="nav tp-Insurance-tab " id="nav-tab" role="tablist"> <?php foreach($settings['tp_contact_list'] as $key => $item) : $active = $key == 0 ? 'active' : NULL; ?> <button class="nav-links <?php echo esc_attr($active); ?>" id="nav-Home-tab-<?php echo esc_attr($key);?>" data-bs-toggle="tab" data-bs-target="#Home-<?php echo esc_attr($key);?>" type="button" role="tab" aria-controls="nav-Home-tab-<?php echo esc_attr($key);?>" aria-selected="true"> <span class="getquote"> <span class="getquote__item d-flex justify-content-between align-items-center"> <span class="getquote__item-info d-flex align-items-center"> <?php if($item['tp_contact_icon_type'] == 'icon') : ?> <?php if (!empty($item['tp_contact_icon']) || !empty($item['tp_contact_selected_icon']['value'])) : ?> <?php tp_render_icon($item, 'tp_contact_icon', 'tp_contact_selected_icon'); ?> <?php endif; ?> <?php elseif( $item['tp_contact_icon_type'] == 'image' ) : ?> <?php if (!empty($item['tp_contact_image']['url'])): ?> <img src="<?php echo $item['tp_contact_image']['url']; ?>" alt="<?php echo get_post_meta(attachment_url_to_postid($item ['tp_contact_image']['url']), '_wp_attachment_image_alt', true); ?>"> <?php endif; ?> <?php else : ?> <?php if (!empty($item['tp_contact_icon_svg'])): ?> <?php echo $item['tp_contact_icon_svg']; ?> <?php endif; ?> <?php endif; ?> <span class="tp-feature-title m-0"><?php echo tp_kses($item['tp_contact_btn_title']); ?></span> </span> </span> </span> </button> <?php endforeach; ?> </div> </nav> </div> <div class="tab-content mr-50" id="nav-tabContent"> <?php foreach($settings['tp_contact_list'] as $key => $item) : $active = $key == 0 ? 'active show' : NULL; ?> <div class="tab-pane fade <?php echo esc_attr($active); ?>" id="Home-<?php echo esc_attr($key); ?>" role="tabpanel" aria-labelledby="nav-Home-tab-<?php echo esc_attr($key); ?>" tabindex="0"> <div class="tp-contact-form-wrapper"> <?php if(!empty($item['tp_contact_title'])) : ?> <div class="contact-section-title-box"> <h4 class="tp-contact-sm-title"><?php echo tp_kses($item['tp_contact_title']); ?></h4> </div> <?php endif; ?> <div id="contactform"> <?php if( !empty($item['tpcore_select_contact_form']) ) : ?> <?php echo do_shortcode( '[contact-form-7 id="'.$item['tpcore_select_contact_form'].'"]' ); ?> <?php else : ?> <?php echo '<div class="alert alert-info"><p class="m-0">' . __('Please Select contact form.', 'tpcore' ). '</p></div>'; ?> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> <div class="col-md-6 col-lg-6 col-md-6 col-12"> <div class="tpquote-3__quote-themb p-relative text-end"> <?php if(!empty($tp_image)) : ?> <div class="tpquote-3__quote-sm-img ml-40"> <img class="w-100" src="<?php echo esc_url($tp_image); ?>" alt="<?php echo esc_attr($tp_image_alt); ?>"> </div> <?php endif; ?> <?php if(!empty($tp_image_2)) : ?> <div class="tpquote-3__quote-lg-img"> <img src="<?php echo esc_url($tp_image_2); ?>" alt="<?php echo esc_attr($tp_image_alt_2); ?>"> </div> <?php endif; ?> <div class="tpquote__before"></div> </div> </div> </div> </div> </div> </div> <?php else: // thumbnail image if ( !empty($settings['tp_image']['url']) ) { $tp_image = !empty($settings['tp_image']['id']) ? wp_get_attachment_image_url( $settings['tp_image']['id'], $settings['tp_image_size_size']) : $settings['tp_image']['url']; $tp_image_alt = get_post_meta($settings['tp_image']["id"], "_wp_attachment_image_alt", true); } $this->add_render_attribute('title_args', 'class', 'tp-section-title'); ?> <div class="tp-insurance-area pt-110 pb-120 p-relative fix pb-70 ele-section" > <div class="tp-insurance-innar"> <div class="container"> <div class="row align-items-center"> <div class="col-xl-6 col-lg-6 col-md-12"> <?php if ( !empty($settings['tp_section_section_title_show']) ) : ?> <div class="tp-insurance-section-box mb-50"> <?php if ( !empty($settings['tp_section_sub_title']) ) : ?> <div class="tp-section-subtitle mb-15"><?php echo tp_kses($settings['tp_section_sub_title']); ?></div> <?php endif; ?> <?php if ( !empty($settings['tp_section_title' ]) ) : printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings['tp_section_title_tag'] ), $this->get_render_attribute_string( 'title_args' ), tp_kses( $settings['tp_section_title' ] ) ); endif; ?> <?php if ( !empty($settings['tp_section_description']) ) : ?> <p><?php echo tp_kses( $settings['tp_section_description'] ); ?></p> <?php endif; ?> </div> <?php endif; ?> <div class="tp-inurance-tab-section "> <nav> <div class="nav tp-Insurance-tab " id="nav-tab" role="tablist"> <?php foreach($settings['tp_contact_list'] as $key => $item) : $active = $key == 0 ? 'active' : NULL; ?> <button class="nav-links <?php echo esc_attr($active); ?>" id="nav-Home-tab-<?php echo esc_attr($key);?>" data-bs-toggle="tab" data-bs-target="#Home-<?php echo esc_attr($key);?>" type="button" role="tab" aria-controls="nav-Home-tab-<?php echo esc_attr($key);?>" aria-selected="true"> <span class="getquote"> <span class="getquote__item d-flex justify-content-between align-items-center"> <span class="getquote__item-info d-flex align-items-center"> <?php if($item['tp_contact_icon_type'] == 'icon') : ?> <?php if (!empty($item['tp_contact_icon']) || !empty($item['tp_contact_selected_icon']['value'])) : ?> <?php tp_render_icon($item, 'tp_contact_icon', 'tp_contact_selected_icon'); ?> <?php endif; ?> <?php elseif( $item['tp_contact_icon_type'] == 'image' ) : ?> <?php if (!empty($item['tp_contact_image']['url'])): ?> <img src="<?php echo $item['tp_contact_image']['url']; ?>" alt="<?php echo get_post_meta(attachment_url_to_postid($item ['tp_contact_image']['url']), '_wp_attachment_image_alt', true); ?>"> <?php endif; ?> <?php else : ?> <?php if (!empty($item['tp_contact_icon_svg'])): ?> <?php echo $item['tp_contact_icon_svg']; ?> <?php endif; ?> <?php endif; ?> <span class="tp-feature-title m-0"><?php echo tp_kses($item['tp_contact_btn_title']); ?></span> </span> </span> </span> </button> <?php endforeach; ?> </div> </nav> </div> <div class="tab-content mr-50" id="nav-tabContent"> <?php foreach($settings['tp_contact_list'] as $key => $item) : $active = $key == 0 ? 'active show' : NULL; ?> <div class="tab-pane fade <?php echo esc_attr($active); ?>" id="Home-<?php echo esc_attr($key); ?>" role="tabpanel" aria-labelledby="nav-Home-tab-<?php echo esc_attr($key); ?>" tabindex="0"> <div class="tp-contact-form-wrapper"> <?php if(!empty($item['tp_contact_title'])) : ?> <div class="contact-section-title-box"> <h4 class="tp-contact-sm-title"><?php echo tp_kses($item['tp_contact_title']); ?></h4> </div> <?php endif; ?> <div id="contactform"> <?php if( !empty($item['tpcore_select_contact_form']) ) : ?> <?php echo do_shortcode( '[contact-form-7 id="'.$item['tpcore_select_contact_form'].'"]' ); ?> <?php else : ?> <?php echo '<div class="alert alert-info"><p class="m-0">' . __('Please Select contact form.', 'tpcore' ). '</p></div>'; ?> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> <div class="col-md-6 col-lg-6 col-md-12"> <?php if(!empty($tp_image)) : ?> <div class="quote-bg-mask ml-25 wow slideInRight animated" data-wow-duration="2500ms" data-wow-delay="100ms"> <img src="<?php echo esc_url($tp_image); ?>" alt="<?php echo esc_attr($tp_image_alt); ?>"> </div> <?php endif; ?> </div> </div> </div> </div> </div> <?php endif; } } $widgets_manager->register( new TP_Contact_Tab() );
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat