Current File : /home/inlingua/www/crm/ninexb/wp-content/plugins/futurio-extra/inc/options/global.php |
<?php
if (!class_exists('Kirki')) {
return;
}
Kirki::add_section('global_section', array(
'title' => esc_attr__('Global Options', 'futurio-extra'),
'priority' => 10,
));
Kirki::add_field('futurio_extra', array(
'type' => 'select',
'settings' => 'custom_blog_feed',
'label' => esc_attr__('Blog & Archive template', 'futurio-extra'),
'section' => 'global_section',
'default' => '',
'placeholder' => esc_attr__('Select an option', 'futurio-extra'),
'description' => esc_attr__('Note: This will override blog and archive template layout.', 'futurio-extra'),
'priority' => 5,
'choices' => Kirki_Helper::get_posts(
array(
'posts_per_page' => -1,
'post_type' => 'elementor_library'
)
),
'active_callback' => 'futurio_extra_check_for_elementor',
));
Kirki::add_field('futurio_extra', array(
'type' => 'slider',
'settings' => 'custom_blog_feed_column',
'label' => esc_html__('Blog & Archive template columns', 'futurio-extra'),
'section' => 'global_section',
'priority' => 6,
'transport' => 'auto',
'default' => 1,
'choices' => array(
'min' => '1',
'max' => '4',
'step' => '1',
),
'active_callback' => 'futurio_extra_check_for_elementor',
));
Kirki::add_field('futurio_extra', array(
'type' => 'select',
'settings' => 'custom_404_page',
'label' => esc_attr__('Elementor 404 page', 'futurio-extra'),
'section' => 'global_section',
'default' => '',
'placeholder' => esc_attr__('Select an option', 'futurio-extra'),
'description' => esc_attr__('Note: This will override your 404 page.', 'futurio-extra'),
'priority' => 7,
'choices' => Kirki_Helper::get_posts(
array(
'posts_per_page' => -1,
'post_type' => 'elementor_library'
)
),
'active_callback' => 'futurio_extra_check_for_elementor',
));
Kirki::add_field('futurio_extra', array(
'type' => 'radio-buttonset',
'settings' => 'widgets-width',
'label' => esc_attr__('Footer widgets columns', 'futurio-extra'),
'section' => 'global_section',
'default' => '25',
'priority' => 10,
'transport' => 'auto',
'choices' => array(
'100' => '1',
'50' => '2',
'33.33333333' => '3',
'25' => '4',
),
'output' => array(
array(
'element' => '.widget.col-md-3',
'property' => 'width',
'media_query' => '@media (min-width: 992px)',
'units' => '%',
),
),
));
Kirki::add_field('futurio_extra', array(
'type' => 'toggle',
'settings' => 'site_preloader',
'label' => esc_attr__('Website preloader', 'futurio-extra'),
'section' => 'global_section',
'default' => '0',
'priority' => 10,
));
Kirki::add_field('futurio_extra', array(
'type' => 'radio-buttonset',
'settings' => 'css_stylesheet',
'label' => esc_attr__('Theme options stylesheet loading', 'futurio-extra'),
'description' => esc_html__( 'Dynamic may slow down your website loading on some servers, but it is better for website score rating. Use Inline, if you have some dificulities with the website speed or some stylesheet errors.', 'futurio-extra' ),
'section' => 'global_section',
'default' => '0',
'priority' => 25,
'choices' => array(
'0' => esc_attr__('Dynamic to file', 'futurio-extra'),
'1' => esc_attr__('Inline', 'futurio-extra'),
),
));