PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
plugins
/
fusion-builder
/
inc
/
options
<?php // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * Slideshows settings * * @param array $sections An array of our sections. * @return array */ function fusion_builder_options_section_slideshows( $sections ) { $sections['slideshows'] = array( 'label' => esc_html__( 'Slideshows', 'fusion-builder' ), 'id' => 'heading_slideshows', 'priority' => 19, 'icon' => 'el-icon-picture', 'fields' => array( 'slideshow_autoplay' => array( 'label' => esc_html__( 'Autoplay', 'fusion-builder' ), 'description' => esc_html__( 'Turn on to autoplay the slideshows.', 'fusion-builder' ), 'id' => 'slideshow_autoplay', 'default' => '1', 'type' => 'switch', ), 'slideshow_smooth_height' => array( 'label' => esc_html__( 'Smooth Height', 'fusion-builder' ), 'description' => esc_html__( 'Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.', 'fusion-builder' ), 'id' => 'slideshow_smooth_height', 'default' => '0', 'type' => 'switch', ), 'slideshow_speed' => array( 'label' => esc_html__( 'Slideshow Speed', 'fusion-builder' ), 'description' => esc_html__( 'Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.', 'fusion-builder' ), 'id' => 'slideshow_speed', 'default' => '7000', 'type' => 'slider', 'choices' => array( 'min' => '100', 'max' => '20000', 'step' => '50', ), ), 'pagination_video_slide' => array( 'label' => esc_html__( 'Pagination Circles Below Video Slides', 'fusion-builder' ), 'description' => esc_html__( 'Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.', 'fusion-builder' ), 'id' => 'pagination_video_slide', 'default' => '0', 'type' => 'switch', ), 'slider_nav_box_dimensions' => array( 'label' => esc_html__( 'Navigation Box Dimensions', 'fusion-builder' ), 'description' => esc_html__( 'Controls the width and height of the navigation box.', 'fusion-builder' ), 'id' => 'slider_nav_box_dimensions', 'units' => false, 'default' => array( 'width' => '30px', 'height' => '30px', ), 'type' => 'dimensions', ), 'slider_arrow_size' => array( 'label' => esc_html__( 'Navigation Arrow Size', 'fusion-builder' ), 'description' => esc_html__( 'Controls the font size of the navigation arrow.', 'fusion-builder' ), 'id' => 'slider_arrow_size', 'default' => '14px', 'type' => 'dimension', ), ), ); return $sections; }
[+]
..
[-] slideshows.php
[edit]
[-] dynamic_css_js.php
[edit]
[-] elements.php
[edit]
[-] rollover.php
[edit]
[-] custom_css.php
[edit]
[-] pagination.php
[edit]
[-] responsive.php
[edit]
[-] lightbox.php
[edit]
[-] globals.php
[edit]