File: //home/madepabj/gamepointpk.com/wp-content/plugins/groovy-functions/admin/sections/footer.php
<?php
/* Unique options for every EP theme */
$opt_name = EPCL_FRAMEWORK_VAR;
/* Footer */
CSF::createSection( $opt_name, array(
'title' => esc_html__('Footer', 'epcl_framework'),
'icon' => 'fa fa-columns',
'fields' => array(
array(
'id' => 'copyright_text',
'type' => 'wp_editor',
'title' => esc_html__('Footer copyright text (optional)', 'epcl_framework'),
'subtitle' => esc_html__('HTML and Shortcodes are allowed', 'epcl_framework'),
'desc' => '',
'media_buttons' => false,
),
array(
'id' => 'copyright_theme_author',
'type' => 'switcher',
'title' => esc_html__('Footer Theme Author Link', 'epcl_framework'),
// 'desc' => __('This link will not be indexed and will help us to bring more features to our themes.Of course, you can disable it, if you want.', 'epcl_framework'),
'default' => '1'
),
array(
'id' => 'enable_back_to_top',
'type' => 'switcher',
'title' => esc_html__('Enable back to top button', 'epcl_framework'),
'desc' => '',
'default' => '1'
),
// array(
// 'id' => 'enable_footer_logo',
// 'type' => 'switcher',
// 'title' => esc_html__('Enable Logo on Footer', 'epcl_framework'),
// 'desc' => esc_html__('By default is used your from the header, you can upload a custom logo below.', 'epcl_framework'),
// 'default' => '1'
// ),
// array(
// 'id' => 'enable_footer_custom_logo',
// 'type' => 'switcher',
// 'title' => esc_html__('Enable custom Logo on Footer', 'epcl_framework'),
// 'desc' => esc_html__('By default is used the same one from the header, you can activate this option to upload a custom logo.', 'epcl_framework'),
// 'default' => '0'
// ),
// array(
// 'id' => 'footer_logo_type',
// 'type' => 'button_set',
// 'title' => esc_html__('Footer Logo Type', 'epcl_framework'),
// 'subtitle' => '',
// 'desc' => esc_html__('Select image if you want to upload a custom logo.', 'epcl_framework'),
// 'options' => array('1' => 'Image', '2' => 'Text'),
// 'default' => '1',
// 'dependency' => array('enable_footer_custom_logo', '==', '1'),
// ),
// array(
// 'id' => 'footer_logo_icon',
// 'type' => 'icon',
// 'dependency' => array(
// array( 'footer_logo_type', '==', '2' ),
// array( 'enable_footer_custom_logo', '==', '1' ),
// ),
// // 'data' => 'elusive-icons',
// 'title' => esc_html__('Logo icon (optional)', 'epcl_framework'),
// 'desc' => esc_html__('e.g. fa-shield', 'epcl_framework'),
// ),
// array(
// 'id' => 'footer_logo_icon_color',
// 'type' => 'color',
// 'dependency' => array(
// array( 'footer_logo_type', '==', '2' ),
// array( 'enable_footer_custom_logo', '==', '1' ),
// ),
// 'title' => esc_html__('Logo Icon Color', 'epcl_framework'),
// 'default' => '#ffffff',
// // 'validate' => 'color',
// 'transparent' => false
// ),
// array(
// 'id' => 'footer_logo_text_color',
// 'type' => 'color',
// 'dependency' => array(
// array( 'footer_logo_type', '==', '2' ),
// array( 'enable_footer_custom_logo', '==', '1' ),
// ),
// 'title' => esc_html__('Logo Text Color', 'epcl_framework'),
// 'default' => '#ffffff',
// // 'validate' => 'color',
// 'transparent' => false
// ),
// array(
// 'id' => 'footer_logo_image',
// 'type' => 'media',
// 'dependency' => array('footer_logo_type', '==', '1'),
// 'dependency' => array(
// array( 'footer_logo_type', '==', '1' ),
// array( 'enable_footer_custom_logo', '==', '1' ),
// ),
// 'url' => true,
// 'preview'=> true,
// 'title' => esc_html__('Logo Uploader', 'epcl_framework'),
// 'desc' => esc_html__('Recommended sizes - width: 200px, height: 50px.', 'epcl_framework'),
// ),
// array(
// 'id' => 'footer_logo_width',
// 'type' => 'number',
// // 'validate' => 'numeric',
// 'dependency' => array(
// array( 'footer_logo_type', '==', '1' ),
// array( 'enable_footer_custom_logo', '==', '1' ),
// ),
// 'title' => esc_html__('Logo width (Optional)', 'epcl_framework'),
// 'subtitle' => esc_html__('Default: 200 (pixels)', 'epcl_framework'),
// // 'desc' => esc_html__('Note: this is the half width of your uploaded logo for retina display purposes.', 'epcl_framework'),
// 'default' => '200',
// 'unit' => 'px'
// ),
)
) );