| Server IP : 104.21.80.248 / Your IP : 162.159.115.41 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/training/wp-content/themes/flatsome/inc/admin/options/styles/ |
Upload File : |
<?php Flatsome_Option::add_section( 'lightbox', array( 'title' => __( 'Image Lightbox', 'flatsome-admin' ), 'panel' => 'style', ) ); Flatsome_Option::add_field( 'option', array( 'type' => 'checkbox', 'settings' => 'flatsome_lightbox', 'label' => __( 'Enable Flatsome Lightbox', 'flatsome-admin' ), 'section' => 'lightbox', 'default' => 1, ) ); Flatsome_Option::add_field( 'option', array( 'type' => 'color', 'settings' => 'flatsome_lightbox_bg', 'label' => __( 'Lightbox background color', 'flatsome-admin' ), 'section' => 'lightbox', 'transport' => $transport, 'default' => '', 'active_callback' => array( array( 'setting' => 'flatsome_lightbox', 'operator' => '==', 'value' => true, ), ), ) ); Flatsome_Option::add_field( '', array( 'type' => 'custom', 'settings' => 'custom_lightbox_gallery_layout', 'label' => '', 'section' => 'lightbox', 'default' => '<div class="options-title-divider">Gallery</div>', 'active_callback' => array( array( 'setting' => 'flatsome_lightbox', 'operator' => '==', 'value' => true, ), ), ) ); Flatsome_Option::add_field( 'option', array( 'type' => 'checkbox', 'settings' => 'flatsome_lightbox_multi_gallery', 'label' => __( 'Use multiple galleries on a page', 'flatsome-admin' ), 'description' => __( 'When enabled, lightbox galleries on a page are treated separately, else combined in one gallery.', 'flatsome-admin' ), 'section' => 'lightbox', 'default' => 0, 'active_callback' => array( array( 'setting' => 'flatsome_lightbox', 'operator' => '==', 'value' => true, ), ), ) );