Current File : /home/kelaby89/abl.academy/wp-content/themes/eduma/inc/admin/customizer-sections/course-package.php |
<?php
/**
* Section Course Collection
*
* @package Eduma
*/
thim_customizer()->add_section(
array(
'id' => 'package_setting',
'panel' => 'course',
'title' => esc_html__( 'Package - Upsell', 'eduma' ),
'priority' => 20,
)
);
// Enable or disable breadcrumbs
thim_customizer()->add_field(
array(
'id' => 'thim_package_hide_breadcrumbs',
'type' => 'switch',
'label' => esc_html__( 'Hide Breadcrumbs?', 'eduma' ),
'tooltip' => esc_html__( 'Check this box to hide/show breadcrumbs.', 'eduma' ),
'section' => 'package_setting',
'default' => false,
'priority' => 15,
'choices' => array(
true => esc_html__( 'On', 'eduma' ),
false => esc_html__( 'Off', 'eduma' ),
),
)
);
// Enable or disable title
thim_customizer()->add_field(
array(
'id' => 'thim_package_hide_title',
'type' => 'switch',
'label' => esc_html__( 'Hide Title', 'eduma' ),
'tooltip' => esc_html__( 'Check this box to hide/show title.', 'eduma' ),
'section' => 'package_setting',
'default' => false,
'priority' => 18,
'choices' => array(
true => esc_html__( 'On', 'eduma' ),
false => esc_html__( 'Off', 'eduma' ),
),
)
);
thim_customizer()->add_field(
array(
'type' => 'image',
'id' => 'thim_package_top_image',
'label' => esc_html__( 'Top Image', 'eduma' ),
'priority' => 30,
'transport' => 'postMessage',
'section' => 'package_setting',
'default' => THIM_URI . "images/bg-page.jpg",
)
);
// Page Title Background Color
thim_customizer()->add_field(
array(
'id' => 'thim_package_bg_color',
'type' => 'color',
'label' => esc_html__( 'Background Color', 'eduma' ),
'tooltip' => esc_html__( 'If you do not use background image, then can use background color for page title on heading top. ', 'eduma' ),
'section' => 'package_setting',
'default' => 'rgba(0,0,0,0.5)',
'priority' => 35,
'choices' => array ('alpha' => true),
'transport' => 'postMessage',
'js_vars' => array(
array(
'choice' => 'color',
'element' => '.top_site_main>.overlay-top-header',
'property' => 'background',
)
)
)
);
thim_customizer()->add_field(
array(
'id' => 'thim_package_title_color',
'type' => 'color',
'label' => esc_html__( 'Title Color', 'eduma' ),
'tooltip' => esc_html__( 'Allows you can select a color make text color for title.', 'eduma' ),
'section' => 'package_setting',
'default' => '#ffffff',
'priority' => 40,
'choices' => array ('alpha' => true),
'transport' => 'postMessage',
'js_vars' => array(
array(
'choice' => 'color',
'element' => '.top_site_main h1, .top_site_main h2',
'property' => 'color',
)
)
)
);