Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
start_controls_section(
'layout_section',
[
'label' => __( 'Layout', 'wallox-addon' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'layout_type',
[
'label' => __( 'Select Layout', 'wallox-addon' ),
'type' => \Elementor\Controls_Manager::SELECT2,
'default' => 'layout_one',
'options' => [
'layout_one' => __( 'Layout One', 'wallox-addon' ),
'layout_two' => __( 'Layout Two', 'wallox-addon' ),
'layout_three' => __( 'Layout Three', 'wallox-addon' ),
]
]
);
$this->end_controls_section();
include wallox_get_elementor_option( 'faq-one-option.php' );
include wallox_get_elementor_option( 'faq-two-option.php' );
include wallox_get_elementor_option( 'faq-three-option.php' );
//General style
$this->start_controls_section(
'general_style',
[
'label' => esc_html__( 'Content Style', 'wallox-addon' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
]
);
wallox_elementor_general_style_options( $this, 'Section Title', '{{WRAPPER}} .sec-title__title', [ 'layout_one' ] );
wallox_elementor_general_style_options( $this, 'Section Sub Title', '{{WRAPPER}} .sec-title__tagline', [ 'layout_one' ] );
wallox_elementor_general_style_options( $this, 'Description', '{{WRAPPER}} .faqs-two__top__text', [ 'layout_one' ] );
wallox_elementor_general_style_options( $this, 'Check Title', '{{WRAPPER}} .faq-page__list__title', [ 'layout_three' ] );
wallox_elementor_general_style_options( $this, 'Check Description', '{{WRAPPER}} .faq-page__list__text', [ 'layout_three' ] );
wallox_elementor_general_style_options( $this, 'Icon', '{{WRAPPER}} .faq-page__list__icon i', [ 'layout_three' ] );
wallox_elementor_general_style_options( $this, 'Question', '{{WRAPPER}} .faq-page__accordion .accrodion-title h4,{{WRAPPER}} .faq-page__accordion .accrodion-title .accrodion-title__text', [ 'layout_one', 'layout_two', 'layout_three' ] );
wallox_elementor_general_style_options( $this, 'Answer', '{{WRAPPER}} .faq-page__accordion .accrodion-content p,{{WRAPPER}} .faq-page__accordion .accrodion-content p', [ 'layout_one', 'layout_two', 'layout_three' ] );
wallox_elementor_general_style_options( $this, 'Feature Title', '{{WRAPPER}} .faqs-two__list__item', [ 'layout_one' ] );
wallox_elementor_general_style_options( $this, 'Feature Icon', '{{WRAPPER}} .faqs-two__list__item i', [ 'layout_one' ] );
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
include wallox_get_template( 'faq-one.php' );
include wallox_get_template( 'faq-two.php' );
include wallox_get_template( 'faq-three.php' );
}
}