Version Description
- Lock icons removed for the Innofit theme.
- Upgrade to Plus buttom removed from the customizer settings.
Download this release
Release Info
Developer | spicethemes |
Plugin | Spice Box |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.2.2
- inc/innofit/customizer/client-section.php +0 -133
- inc/innofit/customizer/contact-section.php +1 -1
- inc/innofit/customizer/customizer_color_back_settings.php +0 -90
- inc/innofit/customizer/customizer_layout_manager.php +0 -128
- inc/innofit/customizer/customizer_theme_style.php +0 -240
- inc/innofit/customizer/customizer_typography.php +0 -479
- inc/innofit/customizer/funfact-section.php +0 -74
- inc/innofit/customizer/instagram-section.php +0 -59
- inc/innofit/customizer/map-section.php +0 -61
- inc/innofit/customizer/news-section.php +0 -31
- inc/innofit/customizer/portfolio-section.php +0 -94
- inc/innofit/customizer/pricing-section.php +0 -95
- inc/innofit/customizer/slider-section.php +1 -32
- inc/innofit/customizer/team-section.php +0 -30
- inc/innofit/customizer/wooproduct-section.php +0 -32
- inc/innofit/default-pages/home-custom-menu.php +0 -7
- inc/innofit/sections/innofit-contact-section.php +1 -1
- languages/spicebox.pot +315 -656
- readme.txt +10 -2
- spicebox.php +11 -14
inc/innofit/customizer/client-section.php
DELETED
@@ -1,133 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
//Client Section
|
3 |
-
|
4 |
-
$wp_customize->add_section('home_client_section',array(
|
5 |
-
'title' => __('Clients settings','spicebox'),
|
6 |
-
'panel' => 'section_settings',
|
7 |
-
'priority' => 15,
|
8 |
-
));
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
//Theme Custom typography plus
|
13 |
-
class Innofit_client_section_upgrade extends WP_Customize_Control {
|
14 |
-
public function render_content() { ?>
|
15 |
-
<h3><?php _e('Want to add client section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
16 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
17 |
-
<?php
|
18 |
-
}
|
19 |
-
}
|
20 |
-
|
21 |
-
|
22 |
-
$wp_customize->add_setting( 'client_upgrade', array(
|
23 |
-
'capability' => 'edit_theme_options',
|
24 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
25 |
-
));
|
26 |
-
$wp_customize->add_control(
|
27 |
-
new Innofit_client_section_upgrade(
|
28 |
-
$wp_customize,
|
29 |
-
'client_upgrade',
|
30 |
-
array(
|
31 |
-
'section' => 'home_client_section',
|
32 |
-
'settings' => 'client_upgrade',
|
33 |
-
)
|
34 |
-
)
|
35 |
-
);
|
36 |
-
|
37 |
-
|
38 |
-
// Enable client section
|
39 |
-
$wp_customize->add_setting( 'client_section_enable' , array( 'default' => 'on') );
|
40 |
-
$wp_customize->add_control( 'client_section_enable' , array(
|
41 |
-
'label' => __( 'Enable Home Client section', 'spicebox' ),
|
42 |
-
'section' => 'home_client_section',
|
43 |
-
'type' => 'radio',
|
44 |
-
'choices' => array(
|
45 |
-
'on'=>__('ON', 'spicebox'),
|
46 |
-
'off'=>__('OFF', 'spicebox')
|
47 |
-
),
|
48 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
49 |
-
));
|
50 |
-
|
51 |
-
|
52 |
-
if ( class_exists( 'Innofit_Repeater' ) ) {
|
53 |
-
$wp_customize->add_setting(
|
54 |
-
'innofit_clients_content', array(
|
55 |
-
)
|
56 |
-
);
|
57 |
-
|
58 |
-
$wp_customize->add_control(
|
59 |
-
new Innofit_Repeater(
|
60 |
-
$wp_customize, 'innofit_clients_content', array(
|
61 |
-
'label' => esc_html__( 'Clients content', 'spicebox' ),
|
62 |
-
'section' => 'home_client_section',
|
63 |
-
'add_field_label' => esc_html__( 'Add new client', 'spicebox' ),
|
64 |
-
'item_name' => esc_html__( 'Client', 'spicebox' ),
|
65 |
-
'customizer_repeater_image_control' => true,
|
66 |
-
'customizer_repeater_link_control' => true,
|
67 |
-
'customizer_repeater_checkbox_control' => true,
|
68 |
-
)
|
69 |
-
)
|
70 |
-
);
|
71 |
-
}
|
72 |
-
|
73 |
-
$wp_customize->add_setting( 'client_background_text_static' , array( 'default' => 'on') );
|
74 |
-
$wp_customize->add_control( 'client_background_text_static' , array(
|
75 |
-
'label' => __( 'Client background text:', 'spicebox' ),
|
76 |
-
'section' => 'home_client_section',
|
77 |
-
'type' => 'radio',
|
78 |
-
'choices' => array(
|
79 |
-
'on'=>__('Marquee', 'spicebox'),
|
80 |
-
'off'=>__('Static', 'spicebox')
|
81 |
-
),
|
82 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
83 |
-
));
|
84 |
-
|
85 |
-
|
86 |
-
$wp_customize->add_setting( 'client_background_text',array(
|
87 |
-
'default' => __('<b>Our sponsors</b> Our sponsors','spicebox'),
|
88 |
-
'sanitize_callback' => 'innofitp_home_page_sanitize_text',
|
89 |
-
));
|
90 |
-
$wp_customize->add_control( 'client_background_text',array(
|
91 |
-
'label' => __('Background scroll text','spicebox'),
|
92 |
-
'section' => 'home_client_section',
|
93 |
-
'type' => 'text',
|
94 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
95 |
-
));
|
96 |
-
|
97 |
-
|
98 |
-
// animation speed
|
99 |
-
$wp_customize->add_setting( 'client_animation_speed', array( 'default' => 3000) );
|
100 |
-
$wp_customize->add_control( 'client_animation_speed',
|
101 |
-
array(
|
102 |
-
'label' => __( 'Animation speed', 'spicebox' ),
|
103 |
-
'section' => 'home_client_section',
|
104 |
-
'type' => 'select',
|
105 |
-
'choices'=>array(
|
106 |
-
'2000'=>'2.0',
|
107 |
-
'3000'=>'3.0',
|
108 |
-
'4000'=>'4.0',
|
109 |
-
'5000'=>'5.0',
|
110 |
-
'6000'=>'6.0',
|
111 |
-
),
|
112 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
113 |
-
));
|
114 |
-
|
115 |
-
|
116 |
-
// animation speed
|
117 |
-
$wp_customize->add_setting( 'client_smoothSpeed', array( 'default' => 1000) );
|
118 |
-
$wp_customize->add_control( 'client_smoothSpeed',
|
119 |
-
array(
|
120 |
-
'label' => __( 'Smooth speed', 'spicebox' ),
|
121 |
-
'section' => 'home_client_section',
|
122 |
-
'type' => 'select',
|
123 |
-
'choices'=>array(
|
124 |
-
'500'=>'0.5',
|
125 |
-
'1000'=>'1.0',
|
126 |
-
'1500'=>'1.5',
|
127 |
-
'2000'=>'2.0',
|
128 |
-
'2500'=>'2.5',
|
129 |
-
'3000'=>'3.0',
|
130 |
-
),
|
131 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
132 |
-
));
|
133 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/contact-section.php
CHANGED
@@ -109,7 +109,7 @@
|
|
109 |
|
110 |
//Contact section content
|
111 |
if ( class_exists( 'Innofit_Page_Editor' ) ) {
|
112 |
-
$default = '<h2 class="title">'. esc_html__( 'Get in touch','spicebox').'</h2><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-map-marker"></i></div><div class="media-body"><h3 class="title"> ' . esc_html__( 'Find Us','spicebox').' </h3><address> ' . esc_html__( 'Porterfield 508 Virginia Street Chicago
|
113 |
$wp_customize->add_setting(
|
114 |
'contact_info_content', array(
|
115 |
'default' => $default,
|
109 |
|
110 |
//Contact section content
|
111 |
if ( class_exists( 'Innofit_Page_Editor' ) ) {
|
112 |
+
$default = '<h2 class="title">'. esc_html__( 'Get in touch','spicebox').'</h2><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-map-marker"></i></div><div class="media-body"><h3 class="title"> ' . esc_html__( 'Find Us','spicebox').' </h3><address> ' . esc_html__( 'Porterfield 508 Virginia Street Chicago, IL 60653 (USA)','spicebox').'</address></div></div></aside><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-mobile"></i></div><div class="media-body"><h3 class="title">' . esc_html__( 'Phone','spicebox').'</h3><address>' . esc_html__( 'Mobile: (+91) 90 1900 - 6886 Hotline: 1800 6886)','spicebox').'</address></div></div></aside><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-envelope-o"></i></div><div class="media-body"><h3 class="title">'.esc_html__( 'Email','spicebox').'</h3><address><a href="mailto:suppor@tinnofit.com">' .esc_html__( 'support@innofit.com','spicebox').'</a><a href="mailto:contact@innofit.com"> '. esc_html__( 'contact@innofit.com','spicebox').'</a></address></div></div></aside>';
|
113 |
$wp_customize->add_setting(
|
114 |
'contact_info_content', array(
|
115 |
'default' => $default,
|
inc/innofit/customizer/customizer_color_back_settings.php
DELETED
@@ -1,90 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Copyright section color and background settings
|
4 |
-
|
5 |
-
$wp_customize->add_section( 'footer_copyright_background_color_settings', array(
|
6 |
-
'title' => __('Footer Copyright', 'spicebox'),
|
7 |
-
'panel' => 'colors_back_settings',
|
8 |
-
) );
|
9 |
-
|
10 |
-
//Theme Custom typography plus
|
11 |
-
class Innofit_copyright_color_upgrade extends WP_Customize_Control {
|
12 |
-
public function render_content() { ?>
|
13 |
-
<h3><?php _e('Want to use copyright section color settings ? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
14 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
15 |
-
<?php
|
16 |
-
}
|
17 |
-
}
|
18 |
-
|
19 |
-
|
20 |
-
$wp_customize->add_setting( 'copyright_color_upgrade', array(
|
21 |
-
'capability' => 'edit_theme_options',
|
22 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
23 |
-
));
|
24 |
-
$wp_customize->add_control(
|
25 |
-
new Innofit_copyright_color_upgrade(
|
26 |
-
$wp_customize,
|
27 |
-
'copyright_color_upgrade',
|
28 |
-
array(
|
29 |
-
'section' => 'footer_copyright_background_color_settings',
|
30 |
-
'priority' => 1,
|
31 |
-
'settings' => 'copyright_color_upgrade',
|
32 |
-
)
|
33 |
-
)
|
34 |
-
);
|
35 |
-
|
36 |
-
|
37 |
-
//Copyright Text color
|
38 |
-
$wp_customize->add_setting('copyright_text_color', array(
|
39 |
-
'default' => '#ffffff',
|
40 |
-
'sanitize_callback' => 'sanitize_hex_color',
|
41 |
-
) );
|
42 |
-
|
43 |
-
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'copyright_text_color', array(
|
44 |
-
'label' => __('Text color', 'spicebox' ),
|
45 |
-
'section' => 'footer_copyright_background_color_settings',
|
46 |
-
'priority' => 2,
|
47 |
-
'settings' => 'copyright_text_color',)
|
48 |
-
) );
|
49 |
-
|
50 |
-
|
51 |
-
//Copyright Link color
|
52 |
-
$wp_customize->add_setting('copyright_link_color', array(
|
53 |
-
'default' => '#ffffff',
|
54 |
-
'sanitize_callback' => 'sanitize_hex_color',
|
55 |
-
) );
|
56 |
-
|
57 |
-
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'copyright_link_color', array(
|
58 |
-
'label' => __('Link color', 'spicebox' ),
|
59 |
-
'priority' => 3,
|
60 |
-
'section' => 'footer_copyright_background_color_settings',
|
61 |
-
'settings' => 'copyright_link_color',)
|
62 |
-
) );
|
63 |
-
|
64 |
-
|
65 |
-
//Copyright Link Hover color
|
66 |
-
$wp_customize->add_setting('copyright_link_hover_color', array(
|
67 |
-
'default' => '#ffffff',
|
68 |
-
'sanitize_callback' => 'sanitize_hex_color',
|
69 |
-
) );
|
70 |
-
|
71 |
-
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'copyright_link_hover_color', array(
|
72 |
-
'label' => __('Link Hover color', 'spicebox' ),
|
73 |
-
'priority' => 4,
|
74 |
-
'section' => 'footer_copyright_background_color_settings',
|
75 |
-
'settings' => 'copyright_link_hover_color',)
|
76 |
-
) );
|
77 |
-
|
78 |
-
|
79 |
-
//Copyright background color
|
80 |
-
$wp_customize->add_setting('copyright_background_color', array(
|
81 |
-
'default' => '#2a83e8',
|
82 |
-
'sanitize_callback' => 'sanitize_hex_color',
|
83 |
-
) );
|
84 |
-
|
85 |
-
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'copyright_background_color', array(
|
86 |
-
'label' => __('Footer background color', 'spicebox' ),
|
87 |
-
'section' => 'footer_copyright_background_color_settings',
|
88 |
-
'priority' => 10,
|
89 |
-
'settings' => 'copyright_background_color',)
|
90 |
-
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/customizer_layout_manager.php
DELETED
@@ -1,128 +0,0 @@
|
|
1 |
-
<?php // Adding customizer layout manager settings
|
2 |
-
|
3 |
-
class WP_innofit_layout_Customize_Control extends WP_Customize_Control {
|
4 |
-
|
5 |
-
public $type = 'new_menu';
|
6 |
-
|
7 |
-
public function render_content() {
|
8 |
-
|
9 |
-
$front_page = get_theme_mod('front_page_data','services,about,portfolio,funfact,wooproduct,testimonial,team,pricing,news,map,contact,subscriber,client,instagram');
|
10 |
-
$data_enable = explode(",",$front_page);
|
11 |
-
$defaultenableddata=array('services','about','portfolio','funfact','wooproduct','testimonial','team','pricing','news','map','contact','subscriber','client','instagram');
|
12 |
-
$layout_disable=array_diff($defaultenableddata,$data_enable);
|
13 |
-
?>
|
14 |
-
|
15 |
-
<h3><?php esc_attr_e('Enable','spicebox'); ?></h3>
|
16 |
-
<ul class="sortable customizer_layout" id="enable">
|
17 |
-
<?php if( !empty($data_enable[0]) ) { foreach( $data_enable as $value ){ ?>
|
18 |
-
<li class="ui-state" id="<?php echo $value; ?>"><?php echo $value; ?></li>
|
19 |
-
<?php } } ?>
|
20 |
-
</ul>
|
21 |
-
|
22 |
-
|
23 |
-
<h3><?php esc_attr_e('Disable','spicebox'); ?></h3>
|
24 |
-
<ul class="sortable customizer_layout" id="disable">
|
25 |
-
<?php if(!empty($layout_disable)){ foreach($layout_disable as $val){ ?>
|
26 |
-
<li class="ui-state" id="<?php echo $val; ?>"><?php echo $val; ?></li>
|
27 |
-
<?php } } ?>
|
28 |
-
</ul>
|
29 |
-
<div class="section">
|
30 |
-
<p> <b><?php esc_attr_e('Slider has fixed position on homepage','spicebox'); ?></b></p>
|
31 |
-
<p> <b><?php esc_attr_e('Note','spicebox'); ?> </b> <?php esc_attr_e('By default, all sections are enabled on homepage. If you wish not to display a section, just drag it onto the "disabled" box.','spicebox'); ?><p>
|
32 |
-
</div>
|
33 |
-
<script>
|
34 |
-
jQuery(document).ready(function($) {
|
35 |
-
$( ".sortable" ).sortable({
|
36 |
-
connectWith: '.sortable'
|
37 |
-
});
|
38 |
-
});
|
39 |
-
|
40 |
-
jQuery(document).ready(function($){
|
41 |
-
|
42 |
-
// Get items id you can chose
|
43 |
-
function innofitItems(spicethemes)
|
44 |
-
{
|
45 |
-
var columns = [];
|
46 |
-
$(spicethemes + ' #enable').each(function(){
|
47 |
-
columns.push($(this).sortable('toArray').join(','));
|
48 |
-
});
|
49 |
-
return columns.join('|');
|
50 |
-
}
|
51 |
-
|
52 |
-
function spicethemesItems_disable(spicethemes)
|
53 |
-
{
|
54 |
-
var columns = [];
|
55 |
-
$(spicethemes + ' #disable').each(function(){
|
56 |
-
columns.push($(this).sortable('toArray').join(','));
|
57 |
-
});
|
58 |
-
return columns.join('|');
|
59 |
-
}
|
60 |
-
|
61 |
-
//onclick check id
|
62 |
-
$('#enable .ui-state,#disable .ui-state').mouseleave(function(){
|
63 |
-
var enable = innofitItems('#customize-control-layout_manager');
|
64 |
-
$("#customize-control-front_page_data input[type = 'text']").val(enable);
|
65 |
-
$("#customize-control-front_page_data input[type = 'text']").change();
|
66 |
-
});
|
67 |
-
|
68 |
-
});
|
69 |
-
</script>
|
70 |
-
<?php } }
|
71 |
-
/* layout manager section */
|
72 |
-
$wp_customize->add_section( 'frontpage_layout' , array(
|
73 |
-
'title' => __('Theme Layout Manager', 'spicebox'),
|
74 |
-
'priority' => 991,
|
75 |
-
) );
|
76 |
-
|
77 |
-
//Theme Custom typography plus
|
78 |
-
class Innofit_layout_manager_section_upgrade extends WP_Customize_Control {
|
79 |
-
public function render_content() { ?>
|
80 |
-
<h3><?php _e('Want to change home page layout section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
81 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
82 |
-
<?php
|
83 |
-
}
|
84 |
-
}
|
85 |
-
|
86 |
-
|
87 |
-
$wp_customize->add_setting( 'layoutmanager_upgrade', array(
|
88 |
-
'capability' => 'edit_theme_options',
|
89 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
90 |
-
));
|
91 |
-
$wp_customize->add_control(
|
92 |
-
new Innofit_layout_manager_section_upgrade(
|
93 |
-
$wp_customize,
|
94 |
-
'layoutmanager_upgrade',
|
95 |
-
array(
|
96 |
-
'section' => 'frontpage_layout',
|
97 |
-
'settings' => 'layoutmanager_upgrade',
|
98 |
-
)
|
99 |
-
)
|
100 |
-
);
|
101 |
-
|
102 |
-
$wp_customize->add_setting(
|
103 |
-
'layout_manager',
|
104 |
-
array(
|
105 |
-
'capability' => 'edit_theme_options',
|
106 |
-
'sanitize_callback' => 'sanitize_text_field',
|
107 |
-
|
108 |
-
)
|
109 |
-
);
|
110 |
-
$wp_customize->add_control( new WP_innofit_layout_Customize_Control( $wp_customize, 'layout_manager', array(
|
111 |
-
'section' => 'frontpage_layout',
|
112 |
-
'setting' => 'layout_manager',
|
113 |
-
))
|
114 |
-
);
|
115 |
-
|
116 |
-
$wp_customize->add_setting(
|
117 |
-
'front_page_data',
|
118 |
-
array(
|
119 |
-
'default' =>'services,about,portfolio,funfact,wooproduct,testimonial,team,pricing,news,map,contact,subscriber,client,instagram',
|
120 |
-
'capability' => 'edit_theme_options',
|
121 |
-
'sanitize_callback' => 'sanitize_text_field',
|
122 |
-
)
|
123 |
-
);
|
124 |
-
$wp_customize->add_control('front_page_data', array(
|
125 |
-
'label' => __('Enable','spicebox'),
|
126 |
-
'section' => 'frontpage_layout',
|
127 |
-
'type' => 'text'
|
128 |
-
)); // enable textbox
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/customizer_theme_style.php
DELETED
@@ -1,240 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
//Theme style plus
|
5 |
-
class Innofit_theme_style_upgrade extends WP_Customize_Control {
|
6 |
-
public function render_content() { ?>
|
7 |
-
<h3><?php _e('Want to change your theme style? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
8 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
9 |
-
<?php
|
10 |
-
}
|
11 |
-
}
|
12 |
-
|
13 |
-
|
14 |
-
$wp_customize->add_setting( 'theme_color_upgrade', array(
|
15 |
-
'capability' => 'edit_theme_options',
|
16 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
17 |
-
));
|
18 |
-
$wp_customize->add_control(
|
19 |
-
new Innofit_theme_style_upgrade(
|
20 |
-
$wp_customize,
|
21 |
-
'theme_color_upgrade',
|
22 |
-
array(
|
23 |
-
'section' => 'theme_style',
|
24 |
-
'settings' => 'theme_color_upgrade',
|
25 |
-
)
|
26 |
-
)
|
27 |
-
);
|
28 |
-
|
29 |
-
|
30 |
-
// Adding customizer home page setting
|
31 |
-
$wp_customize->remove_control('header_textcolor');
|
32 |
-
|
33 |
-
//Image Background image
|
34 |
-
class WP_innofit_pre_Customize_Control extends WP_Customize_Control {
|
35 |
-
public $type = 'new_menu';
|
36 |
-
|
37 |
-
function render_content()
|
38 |
-
|
39 |
-
{
|
40 |
-
echo '<h3>'.__('Predefined default background','spicebox').'</h3>';
|
41 |
-
$name = '_customize-image-radio-' . $this->id;
|
42 |
-
$i=1;
|
43 |
-
foreach($this->choices as $key => $value ) {
|
44 |
-
?>
|
45 |
-
<label>
|
46 |
-
<input type="radio" disabled value="<?php echo $key; ?>" name="<?php echo esc_attr( $name ); ?>" data-customize-setting-link="<?php echo esc_attr( $this->id ); ?>" <?php if($this->value() == $key){ echo 'checked'; } ?>>
|
47 |
-
<img src="<?php echo SPICEB_PLUGIN_URL; ?>inc/innofit/images/bg-pattern/<?php echo $value; ?>" alt="<?php echo esc_attr( $value ); ?>" />
|
48 |
-
</label>
|
49 |
-
<?php
|
50 |
-
if($i==4)
|
51 |
-
{
|
52 |
-
echo '<p></p>';
|
53 |
-
$i=0;
|
54 |
-
}
|
55 |
-
$i++;
|
56 |
-
|
57 |
-
} ?>
|
58 |
-
<h3><?php esc_attr_e('Background Image','spicebox'); ?></h3>
|
59 |
-
<p><?php esc_attr_e('Go to','spicebox'); ?> => <?php esc_attr_e('Appearance','spicebox'); ?> => <?php esc_attr_e('Customize','spicebox');?> => <?php esc_attr_e('Background Image','spicebox'); ?></p><br/>
|
60 |
-
<h3><?php esc_attr_e('Background Color','spicebox'); ?></h3>
|
61 |
-
<p> <?php esc_attr_e('Go to','spicebox'); ?> => <?php esc_attr_e('Appearance','spicebox'); ?> => <?php esc_attr_e('Customize','spicebox');?> => <?php esc_attr_e('Colors','spicebox'); ?> </p>
|
62 |
-
<script>
|
63 |
-
jQuery(document).ready(function($) {
|
64 |
-
$("#customize-control-predefined_back_image label img").click(function(){
|
65 |
-
$("#customize-control-predefined_back_image label img").removeClass("color_scheem_active");
|
66 |
-
$(this).addClass("color_scheem_active");
|
67 |
-
});
|
68 |
-
});
|
69 |
-
</script>
|
70 |
-
<?php
|
71 |
-
}
|
72 |
-
|
73 |
-
}
|
74 |
-
|
75 |
-
//Layout Style
|
76 |
-
class WP_innofit_style_layout_Customize_Control extends WP_Customize_Control {
|
77 |
-
public $type = 'new_menu';
|
78 |
-
|
79 |
-
function render_content()
|
80 |
-
|
81 |
-
{
|
82 |
-
echo '<h3>',__('Theme Layout','spicebox').'</h3>';
|
83 |
-
$name = '_customize-layout-radio-' . $this->id;
|
84 |
-
foreach($this->choices as $key => $value ) {
|
85 |
-
?>
|
86 |
-
<label>
|
87 |
-
<input type="radio" disabled value="<?php echo $key; ?>" name="<?php echo esc_attr( $name ); ?>" data-customize-setting-link="<?php echo esc_attr( $this->id ); ?>" <?php if($this->value() == $key){ echo 'checked'; } ?>>
|
88 |
-
<img <?php if($this->value() == $key){ echo 'class="color_scheem_active"'; } ?> src="<?php echo SPICEB_PLUGIN_URL; ?>inc/innofit/images/bg-pattern/<?php echo $value; ?>" alt="<?php echo esc_attr( $value ); ?>" />
|
89 |
-
</label>
|
90 |
-
|
91 |
-
<?php
|
92 |
-
} ?>
|
93 |
-
<script>
|
94 |
-
jQuery(document).ready(function($) {
|
95 |
-
$("#customize-control-innofit_layout_style label img").click(function(){
|
96 |
-
$("#customize-control-innofit_layout_style label img").removeClass("color_scheem_active");
|
97 |
-
$(this).addClass("color_scheem_active");
|
98 |
-
});
|
99 |
-
});
|
100 |
-
</script>
|
101 |
-
<?php
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
// Theme color
|
107 |
-
class WP_innofit_color_Customize_Control extends WP_Customize_Control {
|
108 |
-
public $type = 'new_menu';
|
109 |
-
|
110 |
-
function render_content()
|
111 |
-
|
112 |
-
{
|
113 |
-
echo '<h3>'.__('Predefined Colors','spicebox').'</h3>';
|
114 |
-
$name = '_customize-color-radio-' . $this->id;
|
115 |
-
foreach($this->choices as $key => $value ) {
|
116 |
-
?>
|
117 |
-
<label>
|
118 |
-
<input type="radio" value="<?php echo $key; ?>" name="<?php echo esc_attr( $name ); ?>" data-customize-setting-link="<?php echo esc_attr( $this->id ); ?>" <?php if($this->value() == $key){ echo 'checked="checked"'; } ?>>
|
119 |
-
<img <?php if($this->value() == $key){ echo 'class="color_scheem_active"'; } ?> src="<?php echo SPICEB_PLUGIN_URL; ?>inc/innofit/images/bg-pattern/<?php echo $value; ?>" alt="<?php echo esc_attr( $value ); ?>" />
|
120 |
-
</label>
|
121 |
-
|
122 |
-
<?php
|
123 |
-
}
|
124 |
-
?>
|
125 |
-
<script>
|
126 |
-
jQuery(document).ready(function($) {
|
127 |
-
$("#customize-control-theme_color label img").click(function(){
|
128 |
-
$("#customize-control-theme_color label img").removeClass("color_scheem_active");
|
129 |
-
$(this).addClass("color_scheem_active");
|
130 |
-
});
|
131 |
-
});
|
132 |
-
</script>
|
133 |
-
<?php
|
134 |
-
}
|
135 |
-
|
136 |
-
}
|
137 |
-
|
138 |
-
/* Theme Style settings */
|
139 |
-
$wp_customize->add_section( 'theme_style' , array(
|
140 |
-
'title' => __('Theme style settings', 'spicebox'),
|
141 |
-
'priority' => 105,
|
142 |
-
) );
|
143 |
-
|
144 |
-
// Theme Color Scheme
|
145 |
-
$wp_customize->add_setting(
|
146 |
-
'theme_color', array(
|
147 |
-
'default' => 'default.css',
|
148 |
-
'capability' => 'edit_theme_options',
|
149 |
-
));
|
150 |
-
$wp_customize->add_control( new WP_innofit_color_Customize_Control($wp_customize,'theme_color',
|
151 |
-
array(
|
152 |
-
'label' => __('Predefined colors', 'spicebox'),
|
153 |
-
'section' => 'theme_style',
|
154 |
-
'type' => 'radio',
|
155 |
-
'choices' => array(
|
156 |
-
'default.css' => 'blue.png',
|
157 |
-
'green.css' => 'green.png',
|
158 |
-
'red.css' => 'red.png',
|
159 |
-
'purple.css' => 'purple.png',
|
160 |
-
'orange.css' => 'orange.png',
|
161 |
-
'yellow.css' => 'yellow.png',
|
162 |
-
|
163 |
-
))));
|
164 |
-
|
165 |
-
// enable / disable custom color settings
|
166 |
-
$wp_customize->add_setting(
|
167 |
-
'custom_color_enable',
|
168 |
-
array('capability' => 'edit_theme_options',
|
169 |
-
'default' => false,
|
170 |
-
|
171 |
-
));
|
172 |
-
$wp_customize->add_control(
|
173 |
-
'custom_color_enable',
|
174 |
-
array(
|
175 |
-
'type' => 'checkbox',
|
176 |
-
'label' => __('Enable custom color skin','spicebox'),
|
177 |
-
'section' => 'theme_style',
|
178 |
-
)
|
179 |
-
);
|
180 |
-
|
181 |
-
// link color settings
|
182 |
-
$wp_customize->add_setting(
|
183 |
-
'link_color', array(
|
184 |
-
'capability' => 'edit_theme_options',
|
185 |
-
'default' => '#e32235'
|
186 |
-
));
|
187 |
-
|
188 |
-
$wp_customize->add_control(
|
189 |
-
new WP_Customize_Color_Control(
|
190 |
-
$wp_customize,
|
191 |
-
'link_color',
|
192 |
-
array(
|
193 |
-
'label' => __( 'Skin color', 'spicebox' ),
|
194 |
-
'section' => 'theme_style',
|
195 |
-
'settings' => 'link_color',
|
196 |
-
) ) );
|
197 |
-
|
198 |
-
//Theme Layout
|
199 |
-
$wp_customize->add_setting(
|
200 |
-
'innofit_layout_style', array(
|
201 |
-
'default' => 'wide.jpg',
|
202 |
-
'capability' => 'edit_theme_options',
|
203 |
-
));
|
204 |
-
$wp_customize->add_control(new WP_innofit_style_layout_Customize_Control($wp_customize,'innofit_layout_style',
|
205 |
-
array(
|
206 |
-
'label' => __('Layout style', 'spicebox'),
|
207 |
-
'section' => 'theme_style',
|
208 |
-
'type' => 'radio',
|
209 |
-
'choices' => array(
|
210 |
-
'wide' => 'wide.png',
|
211 |
-
'boxed' => 'boxed.png',
|
212 |
-
)
|
213 |
-
|
214 |
-
)));
|
215 |
-
|
216 |
-
|
217 |
-
//Predefined Background image
|
218 |
-
$wp_customize->add_setting(
|
219 |
-
'predefined_back_image', array(
|
220 |
-
'default' => 'bg-img1.png',
|
221 |
-
'capability' => 'edit_theme_options',
|
222 |
-
));
|
223 |
-
$wp_customize->add_control(new WP_innofit_pre_Customize_Control($wp_customize,'predefined_back_image',
|
224 |
-
array(
|
225 |
-
'label' => __('Predefined default background', 'spicebox'),
|
226 |
-
'section' => 'theme_style',
|
227 |
-
'type' => 'radio',
|
228 |
-
'choices' => array(
|
229 |
-
'bg-img0.png' => 'sm0.png',
|
230 |
-
'bg-img1.png' => 'sm1.png',
|
231 |
-
'bg-img2.png' => 'sm2.png',
|
232 |
-
'bg-img3.png' => 'sm3.png',
|
233 |
-
'bg-img4.png' => 'sm4.png',
|
234 |
-
'bg-img5.png' => 'sm5.png',
|
235 |
-
'bg-img6.jpg' => 'sm6.jpg',
|
236 |
-
'bg-img7.jpg' => 'sm7.jpg',
|
237 |
-
'bg-img8.jpg' => 'sm8.jpg',
|
238 |
-
'bg-img9.jpg' => 'sm9.jpg',
|
239 |
-
'bg-img10.jpg' => 'sm10.jpg',
|
240 |
-
))));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/customizer_typography.php
DELETED
@@ -1,479 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
$wp_customize->add_panel( 'innofit_typography_setting', array(
|
3 |
-
'priority' => 990,
|
4 |
-
'capability' => 'edit_theme_options',
|
5 |
-
'title' => __('Typography settings','spicebox'),
|
6 |
-
) );
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
// Enble / Disable typography section
|
11 |
-
$wp_customize->add_section( 'innofit_typography_section' , array(
|
12 |
-
'title' => __('Custom typography', 'spicebox'),
|
13 |
-
'panel' => 'innofit_typography_setting',
|
14 |
-
'priority' => 0,
|
15 |
-
) );
|
16 |
-
|
17 |
-
|
18 |
-
//Theme Custom typography plus
|
19 |
-
class Innofit_custom_typography_section_upgrade extends WP_Customize_Control {
|
20 |
-
public function render_content() { ?>
|
21 |
-
<h3><?php _e('Want to use custom typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
22 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
23 |
-
<?php
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
|
28 |
-
$wp_customize->add_setting( 'custom_typography_upgrade', array(
|
29 |
-
'capability' => 'edit_theme_options',
|
30 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
31 |
-
));
|
32 |
-
$wp_customize->add_control(
|
33 |
-
new Innofit_custom_typography_section_upgrade(
|
34 |
-
$wp_customize,
|
35 |
-
'custom_typography_upgrade',
|
36 |
-
array(
|
37 |
-
'section' => 'innofit_typography_section',
|
38 |
-
'settings' => 'custom_typography_upgrade',
|
39 |
-
)
|
40 |
-
)
|
41 |
-
);
|
42 |
-
|
43 |
-
$wp_customize->add_setting(
|
44 |
-
'enable_custom_typography',
|
45 |
-
array(
|
46 |
-
'default' => false,
|
47 |
-
'capability' => 'edit_theme_options',
|
48 |
-
'sanitize_callback' => 'sanitize_text_field',
|
49 |
-
) );
|
50 |
-
|
51 |
-
$wp_customize->add_control('enable_custom_typography', array(
|
52 |
-
'label' => __('Enable custom typography','spicebox'),
|
53 |
-
'section' => 'innofit_typography_section',
|
54 |
-
'setting' => 'enable_custom_typography',
|
55 |
-
'type' => 'checkbox'
|
56 |
-
));
|
57 |
-
|
58 |
-
$font_size = array();
|
59 |
-
for($i=9; $i<=100; $i++)
|
60 |
-
{
|
61 |
-
$font_size[$i] = $i;
|
62 |
-
}
|
63 |
-
|
64 |
-
$font_family = array('ABeeZee' => 'ABeeZee', 'Abel' => 'Abel', 'Abril Fatface' => 'Abril Fatface', 'Aclonica' => 'Aclonica', 'Acme'=> 'Acme', 'Actor'=>'Actor', 'Adamina' => 'Adamina', 'Advent Pro' => 'Advent Pro', 'Aguafina Script' => 'Aguafina Script', 'Akronim' => 'Akronim', 'Aladin'=> 'Aladin', 'Aldrich'=>'Aldrich', 'Alef' => 'Alef', 'Alegreya' => 'Alegreya', 'Alegreya SC' => 'Alegreya SC', 'Alegreya Sans' => 'Alegreya Sans', 'Alegreya Sans SC'=>'Alegreya Sans SC', 'Alex Brush' => 'Alex Brush', 'Alfa Slab One' => 'Alfa Slab One', 'Alice' => 'Alice', 'Alike' => 'Alike', 'Alike Angular' => 'Alike Angular', 'Allan' => 'Allan', 'Allerta' => 'Allerta', 'Allerta Stencil' => 'Allerta Stencil', 'Allura' => 'Allura', 'Almendra' => 'Almendra', 'Almendra Display' => 'Almendra Display', 'Almendra SC' => 'Almendra SC', 'Amarante' => 'Amarante', 'Amaranth' => 'Amaranth', 'Amatic SC' => 'Amatic SC', 'Amatica SC' => 'Amatica SC', 'Amethysta' => 'Amethysta', 'Amiko' => 'Amiko', 'Amiri' => 'Amiri', 'Amita' => 'Amita', 'Anaheim' => 'Anaheim', 'Andada' => 'Andada', 'Andika' => 'Andika', 'Angkor' => 'Angkor', 'Annie Use Your Telescope' => 'Annie Use Your Telescope', 'Anonymous Pro' => 'Anonymous Pro', 'Antic' => 'Antic', 'Antic Didone' => 'Antic Didone', 'Antic Slab' => 'Antic Slab', 'Anton' => 'Anton', 'Arapey' => 'Arapey', 'Arbutus' => 'Arbutus', 'Arbutus Slab' => 'Arbutus Slab', 'Architects Daughter' => 'Architects Daughter', 'Archivo Black' => 'Archivo Black', 'Archivo Narrow' => 'Archivo Narrow', 'Aref Ruqaa' => 'Aref Ruqaa', 'Arima Madurai' => 'Arima Madurai', 'Arimo' => 'Arimo', 'Arizonia' => 'Arizonia', 'Armata' => 'Armata', 'Artifika' => 'Artifika', 'Arvo'=>'Arvo', 'Arya'=>'Arya', 'Asap'=>'Asap', 'Asar'=>'Asar', 'Asset'=>'Asset', 'Assistant'=>'Assistant', 'Astloch'=>'Astloch', 'Asul'=>'Asul', 'Athiti'=>'Athiti', 'Atma'=>'Atma', 'Atomic Age'=>'Atomic Age', 'Aubrey'=>'Aubrey', 'Audiowide'=>'Audiowide', 'Autour One'=>'Autour One', 'Average'=>'Average', 'Average Sans'=>'Average Sans', 'Averia Gruesa Libre'=>'Averia Gruesa Libre', 'Averia Libre'=>'Averia Libre', 'Averia Sans Libre'=> 'Averia Sans Libre', 'Averia Serif Libre'=>'Averia Serif Libre', 'Bad Script'=>'Bad Script', 'Baloo'=>'Baloo', 'Baloo Bhai'=>'Baloo Bhai', 'Baloo Da'=>'Baloo Da', 'Baloo Thambi'=>'Baloo Thambi', 'Balthazar'=>'Balthazar', 'Bangers'=>'Bangers', 'Basic'=>'Basic', 'Battambang'=>'Battambang', 'Baumans'=>'Baumans', 'Bayon'=>'Bayon', 'Belgrano'=>'Belgrano', 'Belleza'=>'Belleza', 'BenchNine'=>'BenchNine', 'Bentham'=>'Bentham', 'Berkshire Swash'=>'Berkshire Swash', 'Bevan'=>'Bevan', 'Bigelow Rules'=>'Bigelow Rules', 'Bigshot One'=>'Bigshot One', 'Bilbo'=>'Bilbo', 'Bilbo Swash Caps'=>'Bilbo Swash Caps', 'BioRhyme'=>'BioRhyme', 'BioRhyme Expanded'=>'BioRhyme Expanded', 'Biryani'=>'Biryani', 'Bitter'=>'Bitter', 'Black Ops One'=>'Black Ops One', 'Bokor'=>'Bokor', 'Bonbon'=>'Bonbon', 'Boogaloo'=>'Boogaloo', 'Bowlby One'=>'Bowlby One', 'Bowlby One SC'=>'Bowlby One SC', 'Brawler'=>'Brawler', 'Bree Serif'=>'Bree Serif', 'Bubblegum Sans'=>'Bubblegum Sans', 'Bubbler One'=>'Bubbler One', 'Buda'=>'Buda', 'Buenard'=>'Buenard', 'Bungee'=>'Bungee', 'Bungee Hairline'=>'Bungee Hairline', 'Bungee Inline'=>'Bungee Inline', 'Bungee Outline'=>'Bungee Outline', 'Bungee Shade'=>'Bungee Shade', 'Butcherman'=>'Butcherman', 'Butterfly Kids'=>'Butterfly Kids', 'Cabin'=>'Cabin', 'Cabin Condensed'=>'Cabin Condensed', 'Cabin Sketch'=>'Cabin Sketch', 'Caesar Dressing'=>'Caesar Dressing', 'Cagliostro'=>'Cagliostro', 'Cairo'=>'Cairo', 'Calligraffitti'=>'Calligraffitti', 'Cambay'=>'Cambay', 'Cambo'=>'Cambo', 'Candal'=>'Candal', 'Cantarell'=>'Cantarell', 'Cantata One'=>'Cantata One', 'Cantora One'=>'Cantora One', 'Capriola'=>'Capriola', 'Cardo'=>'Cardo', 'Carme'=>'Carme', 'Carrois Gothic'=>'Carrois Gothic', 'Carrois Gothic SC'=>'Carrois Gothic SC', 'Carter One'=>'Carter One', 'Catamaran'=>'Catamaran', 'Caudex'=>'Caudex', 'Caveat'=>'Caveat', 'Caveat Brush'=>'Caveat Brush', 'Cedarville Cursive'=>'Cedarville Cursive', 'Ceviche One'=>'Ceviche One', 'Changa'=>'Changa', 'Changa One'=>'Changa One', 'Chango'=>'Chango', 'Chathura'=>'Chathura', 'Chau Philomene One'=>'Chau Philomene One', 'Chela One'=>'Chela One', 'Chelsea Market'=>'Chelsea Market', 'Chenla'=>'Chenla', 'Cherry Cream Soda'=>'Cherry Cream Soda', 'Cherry Swash'=>'Cherry Swash', 'Chewy'=>'Chewy', 'Chicle'=>'Chicle', 'Chivo'=>'Chivo', 'Chonburi'=>'Chonburi', 'Cinzel'=>'Cinzel', 'Cinzel Decorative'=>'Cinzel Decorative', 'Clicker Script'=>'Clicker Script', 'Coda'=>'Coda', 'Coda Caption'=>'Coda Caption', 'Codystar'=>'Codystar', 'Coiny'=>'Coiny', 'Combo'=>'Combo', 'Comfortaa'=>'Comfortaa', 'Coming Soon'=>'Coming Soon', 'Concert One'=>'Concert One', 'Condiment'=>'Condiment', 'Content'=>'Content', 'Contrail One'=>'Contrail One', 'Convergence'=>'Convergence', 'Cookie'=>'Cookie', 'Copse'=>'Copse', 'Corben'=>'Corben', 'Cormorant'=>'Cormorant', 'Cormorant Garamond'=>'Cormorant Garamond', 'Cormorant Infant'=>'Cormorant Infant', 'Cormorant SC'=>'Cormorant SC', 'Cormorant Unicase'=>'Cormorant Unicase', 'Cormorant Upright'=>'Cormorant Upright', 'Courgette'=>'Courgette', 'Cousine'=>'Cousine', 'Coustard'=>'Coustard', 'Covered By Your Grace'=>'Covered By Your Grace', 'Crafty Girls'=>'Crafty Girls', 'Creepster'=>'Creepster', 'Crete Round'=>'Crete Round', 'Crimson Text'=>'Crimson Text', 'Croissant One'=>'Croissant One', 'Crushed'=>'Crushed', 'Cuprum'=>'Cuprum', 'Cutive'=>'Cutive', 'Cutive Mono'=>'Cutive Mono', 'Damion'=>'Damion', 'Dancing Script'=>'Dancing Script', 'Dangrek'=>'Dangrek', 'David Libre'=>'David Libre', 'Dawning of a New Day'=>'Dawning of a New Day', 'Days One'=>'Days One', 'Dekko'=>'Dekko', 'Delius'=>'Delius', 'Delius Swash Caps'=>'Delius Swash Caps', 'Delius Unicase'=>'Delius Unicase', 'Della Respira'=>'Della Respira', 'Denk One'=>'Denk One', 'Devonshire'=>'Devonshire', 'Dhurjati'=>'Dhurjati', 'Didact Gothic'=>'Didact Gothic', 'Diplomata'=>'Diplomata', 'Diplomata SC'=>'Diplomata SC', 'Domine'=>'Domine', 'Donegal One'=>'Donegal One', 'Doppio One'=>'Doppio One', 'Dorsa'=>'Dorsa', 'Dosis'=>'Dosis', 'Dr Sugiyama'=>'Dr Sugiyama', 'Droid Sans'=>'Droid Sans', 'Droid Sans Mono'=>'Droid Sans Mono', 'Droid Serif'=>'Droid Serif', 'Duru Sans'=>'Duru Sans', 'Dynalight'=>'Dynalight', 'EB Garamond'=>'EB Garamond', 'Eagle Lake'=>'Eagle Lake', 'Eater'=>'Eater', 'Economica'=>'Economica', 'Eczar'=>'Eczar', 'Ek Mukta'=>'Ek Mukta', 'El Messiri'=>'El Messiri', 'Electrolize'=>'Electrolize', 'Elsie'=>'Elsie', 'Elsie Swash Caps'=>'Elsie Swash Caps', 'Emblema One'=>'Emblema One', 'Emilys Candy'=>'Emilys Candy', 'Engagement'=>'Engagement', 'Englebert'=>'Englebert', 'Enriqueta'=>'Enriqueta', 'Erica One'=>'Erica One', 'Esteban'=>'Esteban', 'Euphoria Script'=>'Euphoria Script', 'Ewert'=>'Ewert', 'Exo'=>'Exo', 'Exo 2'=>'Exo 2', 'Expletus Sans'=>'Expletus Sans', 'Fanwood Text'=>'Fanwood Text', 'Farsan'=>'Farsan', 'Fascinate'=>'Fascinate', 'Fascinate Inline'=>'Fascinate Inline', 'Faster One'=>'Faster One', 'Fasthand'=>'Fasthand', 'Fauna One'=>'Fauna One', 'Federant'=>'Federant', 'Federo'=>'Federo', 'Felipa'=>'Felipa', 'Fenix'=>'Fenix', 'Finger Paint'=>'Finger Paint', 'Fira Mono'=>'Fira Mono', 'Fira Sans'=>'Fira Sans', 'Fjalla One'=>'Fjalla One', 'Fjord One'=>'Fjord One', 'Flamenco'=>'Flamenco', 'Flavors'=>'Flavors', 'Fondamento'=>'Fondamento', 'Fontdiner Swanky'=>'Fontdiner Swanky', 'Forum'=>'Forum', 'Francois One'=>'Francois One', 'Frank Ruhl Libre'=>'Frank Ruhl Libre', 'Freckle Face'=>'Freckle Face', 'Fredericka the Great'=>'Fredericka the Great', 'Fredoka One'=>'Fredoka One', 'Freehand'=>'Freehand', 'Fresca'=>'Fresca', 'Frijole'=>'Frijole', 'Fruktur'=>'Fruktur', 'Fugaz One'=>'Fugaz One', 'GFS Didot'=>'GFS Didot', 'GFS Neohellenic'=>'GFS Neohellenic', 'Gabriela'=>'Gabriela', 'Gafata'=>'Gafata', 'Galada'=>'Galada', 'Galdeano'=>'Galdeano', 'Galindo'=>'Galindo', 'Gentium Basic'=>'Gentium Basic', 'Gentium Book Basic'=>'Gentium Book Basic','Geo' =>'Geo', 'Geostar'=>'Geostar', 'Geostar Fill'=>'Geostar Fill', 'Germania One'=>'Germania One','Gidugu' =>'Gidugu', 'Gilda Display'=>'Gilda Display', 'Give You Glory'=>'Give You Glory', 'Glass Antiqua'=>'Glass Antiqua', 'Glegoo'=>'Glegoo', 'Gloria Hallelujah'=>'Gloria Hallelujah', 'Goblin One'=>'Goblin One', 'Gochi Hand'=>'Gochi Hand', 'Gorditas'=>'Gorditas', 'Goudy Bookletter 1911'=>'Goudy Bookletter 1911', 'Graduate'=>'Graduate', 'Grand Hotel'=>'Grand Hotel', 'Gravitas One'=>'Gravitas One', 'Great Vibes'=>'Great Vibes', 'Griffy'=>'Griffy', 'Gruppo'=>'Gruppo', 'Gudea'=>'Gudea', 'Gurajada'=>'Gurajada', 'Habibi' => 'Habibi', 'Halant' => 'Halant', 'Hammersmith One' => 'Hammersmith One', 'Hanalei' => 'Hanalei', 'Hanalei Fill' => 'Hanalei Fill', 'Handlee' => 'Handlee', 'Hanuman' => 'Hanuman', 'Happy Monkey' => 'Happy Monkey', 'Harmattan' => 'Harmattan', 'Headland One' => 'Headland One', 'Heebo' => 'Heebo', 'Henny Penny' => 'Henny Penny', 'Herr Von Muellerhoff' => 'Herr Von Muellerhoff', 'Hind' => 'Hind', 'Hind Guntur' => 'Hind Guntur', 'Hind Madurai' => 'Hind Madurai', 'Hind Siliguri' => 'Hind Siliguri', 'Hind Vadodara' => 'Hind Vadodara', 'Holtwood One SC' => 'Holtwood One SC', 'Homemade Apple' => 'Homemade Apple', 'Homenaje' => 'Homenaje', 'IM Fell DW Pica' => 'IM Fell DW Pica', 'IM Fell DW Pica SC' => 'IM Fell DW Pica SC', 'IM Fell Double Pica' => 'IM Fell Double Pica', 'IM Fell Double Pica SC' => 'IM Fell Double Pica SC', 'IM Fell English' => 'IM Fell English', 'IM Fell English SC' => 'IM Fell English SC', 'IM Fell French Canon' => 'IM Fell French Canon', 'IM Fell French Canon SC' => 'IM Fell French Canon SC', 'IM Fell Great Primer' => 'IM Fell Great Primer', 'IM Fell Great Primer SC' => 'IM Fell Great Primer SC', 'Iceberg' => 'Iceberg', 'Iceland' => 'Iceland', 'Imprima' => 'Imprima', 'Inconsolata' => 'Inconsolata', 'Inder' => 'Inder', 'Indie Flower' => 'Indie Flower', 'Inika' => 'Inika', 'Inknut Antiqua' => 'Inknut Antiqua', 'Irish Grover' => 'Irish Grover', 'Istok Web' => 'Istok Web', 'Italiana' => 'Italiana', 'Italianno' => 'Italianno', 'Itim' => 'Itim', 'Jacques Francois' => 'Jacques Francois', 'Jacques Francois Shadow' => 'Jacques Francois Shadow', 'Jaldi' => 'Jaldi', 'Jim Nightshade' => 'Jim Nightshade', 'Jockey One' => 'Jockey One', 'Jolly Lodger' => 'Jolly Lodger', 'Jomhuria' => 'Jomhuria', 'Josefin Sans' => 'Josefin Sans', 'Josefin Slab' => 'Josefin Slab', 'Joti One' => 'Joti One', 'Judson' => 'Judson', 'Julee' => 'Julee', 'Julius Sans One' => 'Julius Sans One', 'Junge' => 'Junge', 'Jura' => 'Jura', 'Just Another Hand' => 'Just Another Hand', 'Just Me Again Down Here' => 'Just Me Again Down Here', 'Kadwa' => 'Kadwa', 'Kalam' => 'Kalam', 'Kameron' => 'Kameron', 'Kanit' => 'Kanit', 'Kantumruy' => 'Kantumruy', 'Karla' => 'Karla', 'Karma' => 'Karma', 'Katibeh' => 'Katibeh', 'Kaushan Script' => 'Kaushan Script', 'Kavivanar' => 'Kavivanar', 'Kavoon' => 'Kavoon', 'Kdam Thmor' => 'Kdam Thmor', 'Keania One' => 'Keania One', 'Kelly Slab' => 'Kelly Slab', 'Kenia' => 'Kenia', 'Khand' => 'Khand', 'Khmer' => 'Khmer', 'Khula' => 'Khula', 'Kite One' => 'Kite One', 'Knewave' => 'Knewave', 'Kotta One' => 'Kotta One', 'Koulen' => 'Koulen', 'Kranky' => 'Kranky', 'Kreon' => 'Kreon', 'Kristi' => 'Kristi', 'Krona One' => 'Krona One', 'Kumar One' => 'Kumar One', 'Kumar One Outline' => 'Kumar One Outline', 'Kurale' => 'Kurale', 'La Belle Aurore' => 'La Belle Aurore', 'Laila' => 'Laila', 'Lakki Reddy' => 'Lakki Reddy', 'Lalezar' => 'Lalezar', 'Lancelot' => 'Lancelot', 'Lateef' => 'Lateef', 'Lato' => 'Lato', 'League Script' => 'League Script', 'Leckerli One' => 'Leckerli One', 'Ledger' =>'Ledger', 'Lekton' => 'Lekton', 'Lemon' => 'Lemon', 'Lemonada' => 'Lemonada', 'Libre Baskerville' => 'Libre Baskerville', 'Libre Franklin' => 'Libre Franklin', 'Life Savers' => 'Life Savers', 'Lilita One' => 'Lilita One', 'Lily Script One' => 'Lily Script One', 'Limelight' => 'Limelight', 'Linden Hill' => 'Linden Hill', 'Lobster' => 'Lobster', 'Lobster Two' => 'Lobster Two', 'Londrina Outline' => 'Londrina Outline', 'Londrina Shadow' => 'Londrina Shadow', 'Londrina Sketch' => 'Londrina Sketch', 'Londrina Solid' => 'Londrina Solid', 'Lora' => 'Lora', 'Love Ya Like A Sister' => 'Love Ya Like A Sister', 'Loved by the King' => 'Loved by the King', 'Lovers Quarrel' => 'Lovers Quarrel', 'Luckiest Guy' => 'Luckiest Guy', 'Lusitana' => 'Lusitana', 'Lustria' => 'Lustria', 'Macondo' => 'Macondo', 'Macondo Swash Caps' => 'Macondo Swash Caps', 'Mada' => 'Mada', 'Magra' => 'Magra', 'Maiden Orange' => 'Maiden Orange', 'Maitree' => 'Maitree', 'Mako' => 'Mako', 'Mallanna' => 'Mallanna', 'Mandali' => 'Mandali', 'Marcellus' => 'Marcellus', 'Marcellus SC' => 'Marcellus SC', 'Marck Script' => 'Marck Script', 'Margarine' => 'Margarine', 'Marko One' => 'Marko One', 'Marmelad' => 'Marmelad', 'Martel' => 'Martel', 'Martel Sans' => 'Martel Sans', 'Marvel' => 'Marvel', 'Mate' => 'Mate', 'Mate SC' => 'Mate SC', 'Maven Pro' => 'Maven Pro', 'McLaren' => 'McLaren', 'Meddon' => 'Meddon', 'MedievalSharp' => 'MedievalSharp', 'Medula One' => 'Medula One', 'Meera Inimai' => 'Meera Inimai', 'Megrim' => 'Megrim', 'Meie Script' => 'Meie Script', 'Merienda' => 'Merienda', 'Merienda One' => 'Merienda One', 'Merriweather' => 'Merriweather', 'Merriweather Sans' => 'Merriweather Sans', 'Metal' => 'Metal', 'Metal Mania' => 'Metal Mania', 'Metamorphous', 'Metrophobic' => 'Metrophobic', 'Michroma' => 'Michroma', 'Milonga' => 'Milonga', 'Miltonian' => 'Miltonian', 'Miltonian Tattoo' => 'Miltonian Tattoo', 'Miniver' => 'Miniver', 'Miriam Libre' => 'Miriam Libre', 'Mirza' => 'Mirza', 'Miss Fajardose' => 'Miss Fajardose', 'Mitr' => 'Mitr', 'Modak' => 'Modak', 'Modern Antiqua' => 'Modern Antiqua', 'Mogra' => 'Mogra', 'Molengo' => 'Molengo', 'Molle' => 'Molle', 'Monda' => 'Monda', 'Monofett' => 'Monofett', 'Monoton' => 'Monoton', 'Monsieur La Doulaise' => 'Monsieur La Doulaise', 'Montaga' => 'Montaga', 'Montez' => 'Montez', 'Montserrat' => 'Montserrat', 'Montserrat Alternates' => 'Montserrat Alternates', 'Montserrat Subrayada' => 'Montserrat Subrayada', 'Moul' => 'Moul', 'Moulpali' => 'Moulpali', 'Mountains of Christmas' => 'Mountains of Christmas', 'Mouse Memoirs' => 'Mouse Memoirs', 'Mr Bedfort' => 'Mr Bedfort', 'Mr Dafoe' => 'Mr Dafoe', 'Mr De Haviland' => 'Mr De Haviland', 'Mrs Saint Delafield' => 'Mrs Saint Delafield', 'Mrs Sheppards' => 'Mrs Sheppards', 'Mukta Vaani' => 'Mukta Vaani', 'Muli' => 'Muli', 'Mystery Quest' => 'Mystery Quest', 'NTR' => 'NTR', 'Neucha' => 'Neucha', 'Neuton' => 'Neuton', 'New Rocker' => 'New Rocker', 'News Cycle' => 'News Cycle', 'Niconne' => 'Niconne', 'Nixie One' => 'Nixie One', 'Nobile' => 'Nobile', 'Nokora' => 'Nokora', 'Norican' => 'Norican', 'Nosifer' => 'Nosifer', 'Nothing You Could Do' => 'Nothing You Could Do', 'Noticia Text' => 'Noticia Text', 'Noto Sans' => 'Noto Sans', 'Noto Serif' => 'Noto Serif', 'Nova Cut' => 'Nova Cut', 'Nova Flat' => 'Nova Flat', 'Nova Mono' => 'Nova Mono', 'Nova Oval' => 'Nova Oval', 'Nova Round' => 'Nova Round', 'Nova Script' => 'Nova Script', 'Nova Slim' => 'Nova Slim', 'Nova Square' => 'Nova Square', 'Numans' => 'Numans', 'Nunito' => 'Nunito', 'Odor Mean Chey' => 'Odor Mean Chey', 'Offside' => 'Offside', 'Old Standard TT' => 'Old Standard TT', 'Oldenburg' => 'Oldenburg', 'Oleo Script' => 'Oleo Script', 'Oleo Script Swash Caps' => 'Oleo Script Swash Caps', 'Open Sans' => 'Open Sans', 'Open Sans Condensed' =>'Open Sans Condensed', 'Oranienbaum' => 'Oranienbaum', 'Orbitron' => 'Orbitron', 'Oregano' => 'Oregano', 'Orienta' => 'Orienta', 'Original Surfer' => 'Original Surfer', 'Oswald' => 'Oswald', 'Over the Rainbow' => 'Over the Rainbow', 'Overlock' => 'Overlock', 'Overlock SC' => 'Overlock SC', 'Ovo' => 'Ovo', 'Oxygen' => 'Oxygen', 'Oxygen Mono' => 'Oxygen Mono', 'PT Mono' => 'PT Mono', 'PT Sans' => 'PT Sans', 'PT Sans Caption' => 'PT Sans Caption', 'PT Sans Narrow' => 'PT Sans Narrow', 'PT Serif' => 'PT Serif', 'PT Serif Caption' => 'PT Serif Caption', 'Pacifico' => 'Pacifico', 'Palanquin' => 'Palanquin', 'Palanquin Dark' => 'Palanquin Dark', 'Paprika' => 'Paprika', 'Parisienne' => 'Parisienne', 'Passero One' => 'Passero One', 'Passion One' => 'Passion One', 'Pathway Gothic One' => 'Pathway Gothic One', 'Patrick Hand' => 'Patrick Hand', 'Patrick Hand SC' => 'Patrick Hand SC', 'Pattaya' => 'Pattaya', 'Patua One' => 'Patua One', 'Pavanam' => 'Pavanam', 'Paytone One' => 'Paytone One', 'Peddana' => 'Peddana', 'Peralta' => 'Peralta', 'Permanent Marker' => 'Permanent Marker', 'Petit Formal Script' => 'Petit Formal Script', 'Petrona' => 'Petrona', 'Philosopher' => 'Philosopher', 'Piedra' => 'Piedra', 'Pinyon Script' => 'Pinyon Script', 'Pirata One' => 'Pirata One', 'Plaster' => 'Plaster', 'Play' => 'Play', 'Playball' => 'Playball', 'Playfair Display' => 'Playfair Display', 'Playfair Display SC' => 'Playfair Display SC', 'Podkova' => 'Podkova', 'Poiret One' => 'Poiret One', 'Poller One' => 'Poller One', 'Poly' => 'Poly', 'Pompiere' => 'Pompiere', 'Pontano Sans' => 'Pontano Sans', 'Poppins' => 'Poppins', 'Port Lligat Sans' => 'Port Lligat Sans', 'Port Lligat Slab' => 'Port Lligat Slab', 'Pragati Narrow' => 'Pragati Narrow', 'Prata' => 'Prata', 'Preahvihear' => 'Preahvihear', 'Press Start 2P' => 'Press Start 2P', 'Pridi' => 'Pridi', 'Princess Sofia' => 'Princess Sofia', 'Prociono' => 'Prociono', 'Prompt' => 'Prompt', 'Prosto One' => 'Prosto One', 'Proza Libre' => 'Proza Libre', 'Puritan' => 'Puritan', 'Purple Purse' => 'Purple Purse', 'Quando' => 'Quando', 'Quantico' => 'Quantico', 'Quattrocento' => 'Quattrocento', 'Quattrocento Sans' => 'Quattrocento Sans', 'Questrial' => 'Questrial', 'Quicksand' => 'Quicksand', 'Quintessential' => 'Quintessential', 'Qwigley' => 'Qwigley', 'Racing Sans One' => 'Racing Sans One', 'Radley' => 'Radley', 'Rajdhani'=> 'Rajdhani', 'Rakkas' => 'Rakkas', 'Raleway' => 'Raleway', 'Raleway Dots' => 'Raleway Dots', 'Ramabhadra' => 'Ramabhadra', 'Ramaraja' => 'Ramaraja', 'Rambla' => 'Rambla', 'Rammetto One' => 'Rammetto One', 'Ranchers' => 'Ranchers', 'Rancho', 'Ranga', 'Rasa', 'Rationale', 'Ravi Prakash', 'Redressed', 'Reem Kufi', 'Reenie Beanie', 'Revalia' => 'Revalia', 'Rhodium Libre' => 'Rhodium Libre', 'Ribeye' => 'Ribeye', 'Ribeye Marrow' => 'Ribeye Marrow', 'Righteous' => 'Righteous', 'Risque' => 'Risque', 'Roboto' => 'Roboto', 'Roboto Condensed' => 'Roboto Condensed', 'Roboto Mono' => 'Roboto Mono', 'Roboto Slab' => 'Roboto Slab', 'Rochester' => 'Rochester', 'Rock Salt' => 'Rock Salt', 'Rokkitt' => 'Rokkitt', 'Romanesco' => 'Romanesco', 'Ropa Sans' => 'Ropa Sans', 'Rosario' => 'Rosario', 'Rosarivo' => 'Rosarivo', 'Rouge Script' => 'Rouge Script', 'Rozha One' => 'Rozha One', 'Rubik' => 'Rubik', 'Rubik Mono One' => 'Rubik Mono One', 'Rubik One' => 'Rubik One', 'Ruda' => 'Ruda', 'Rufina' => 'Rufina', 'Ruge Boogie' => 'Ruge Boogie', 'Ruluko' => 'Ruluko', 'Rum Raisin' => 'Rum Raisin', 'Ruslan Display' => 'Ruslan Display', 'Russo One => Russo One', 'Ruthie' => 'Ruthie', 'Rye' => 'Rye', 'Sacramento' => 'Sacramento', 'Sahitya' => 'Sahitya', 'Sail' => 'Sail', 'Salsa' => 'Salsa', 'Sanchez' => 'Sanchez', 'Sancreek' => 'Sancreek', 'Sansita One' => 'Sansita One', 'Sarala' => 'Sarala', 'Sarina' => 'Sarina', 'Sarpanch' => 'Sarpanch', 'Satisfy' => 'Satisfy', 'Scada' => 'Scada', 'Scheherazade' => 'Scheherazade', 'Schoolbell' => 'Schoolbell', 'Scope One' => 'Scope One', 'Seaweed Script' => 'Seaweed Script', 'Secular One' => 'Secular One', 'Sevillana' => 'Sevillana', 'Seymour One' => 'Seymour One', 'Shadows Into Light' => 'Shadows Into Light', 'Shadows Into Light Two' => 'Shadows Into Light Two', 'Shanti' => 'Shanti', 'Share' => 'Share', 'Share Tech' => 'Share Tech', 'Share Tech Mono' => 'Share Tech Mono', 'Shojumaru' => 'Shojumaru', 'Short Stack' => 'Short Stack', 'Shrikhand' => 'Shrikhand', 'Siemreap' => 'Siemreap' , 'Sigmar One' => 'Sigmar One', 'Signika' => 'Signika', 'Signika Negative' => 'Signika Negative', 'Simonetta' => 'Simonetta', 'Sintony' => 'Sintony', 'Sirin Stencil' => 'Sirin Stencil', 'Six Caps' => 'Six Caps', 'Skranji' => 'Skranji', 'Slabo 13px' => 'Slabo 13px', 'Slabo 27px' => 'Slabo 27px', 'Slackey' => 'Slackey', 'Smokum' => 'Smokum', 'Smythe' => 'Smythe', 'Sniglet' => 'Sniglet', 'Snippet' => 'Snippet', 'Snowburst One' =>'Snowburst One', 'Sofadi One' => 'Sofadi One', 'Sofia' => 'Sofia', 'Sonsie One' => 'Sonsie One', 'Sorts Mill Goudy' => 'Sorts Mill Goudy', 'Source Code Pro' => 'Source Code Pro', 'Source Sans Pro' => 'Source Sans Pro', 'Source Serif Pro' => 'Source Serif Pro', 'Space Mono' => 'Space Mono', 'Special Elite' => 'Special Elite', 'Spicy Rice' => 'Spicy Rice', 'Spinnaker' => 'Spinnaker', 'Spirax' => 'Spirax', 'Squada One' => 'Squada One', 'Sree Krushnadevaraya', 'Sriracha', 'Stalemate', 'Stalinist One', 'Stardos Stencil', 'Stint Ultra Condensed', 'Stint Ultra Expanded' => 'Stint Ultra Expanded', 'Stoke' => 'Stoke', 'Strait' => 'Strait', 'Sue Ellen Francisco' => 'Sue Ellen Francisco', 'Suez One' => 'Suez One', 'Sumana' => 'Sumana', 'Sunshiney' => 'Sunshiney', 'Supermercado One' => 'Supermercado One', 'Sura' => 'Sura', 'Suranna' => 'Suranna', 'Suravaram' => 'Suravaram', 'Suwannaphum' => 'Suwannaphum', 'Swanky and Moo Moo' => 'Swanky and Moo Moo', 'Syncopate' => 'Syncopate', 'Tangerine' => 'Tangerine', 'Taprom' => 'Taprom', 'Tauri' => 'Tauri', 'Taviraj' => 'Taviraj', 'Teko' => 'Teko', 'Telex' => 'Telex', 'Tenali Ramakrishna' => 'Tenali Ramakrishna', 'Tenor Sans' => 'Tenor Sans', 'Text Me One' => 'Text Me One', 'The Girl Next Door' => 'The Girl Next Door', 'Tienne' => 'Tienne', 'Tillana' => 'Tillana', 'Timmana' => 'Timmana', 'Tinos' => 'Tinos', 'Titan One' => 'Titan One', 'Titillium Web' => 'Titillium Web', 'Trade Winds' => 'Trade Winds', 'Trirong' => 'Trirong', 'Trocchi' => 'Trocchi', 'Trochut' =>'Trochut', 'Trykker' => 'Trykker', 'Tulpen One' => 'Tulpen One', 'Ubuntu' => 'Ubuntu', 'Ubuntu Condensed' => 'Ubuntu Condensed', 'Ubuntu Mono' => 'Ubuntu Mono', 'Ultra' => 'Ultra', 'Uncial Antiqua' => 'Uncial Antiqua', 'Underdog' => 'Underdog', 'Unica One' => 'Unica One', 'UnifrakturCook' => 'UnifrakturCook', 'UnifrakturMaguntia' => 'UnifrakturMaguntia', 'Unkempt' => 'Unkempt', 'Unlock' => 'Unlock', 'Unna' => 'Unna', 'VT323' => 'VT323', 'Vampiro One' => 'Vampiro One', 'Varela', 'Varela Round', 'Vast Shadow', 'Vesper Libre', 'Vibur', 'Vidaloka', 'Viga', 'Voces', 'Volkhov' => 'Volkhov', 'Vollkorn' => 'Vollkorn', 'Voltaire' => 'Voltaire', 'Waiting for the Sunrise' => 'Waiting for the Sunrise', 'Wallpoet' => 'Wallpoet', 'Walter Turncoat' => 'Walter Turncoat', 'Warnes' => 'Warnes', 'Wellfleet' => 'Wellfleet', 'Wendy One' => 'Wendy One', 'Wire One' => 'Wire One', 'Work Sans' => 'Work Sans', 'Yanone Kaffeesatz' => 'Yanone Kaffeesatz', 'Yantramanav' => 'Yantramanav', 'Yatra One' => 'Yatra One', 'Yellowtail' => 'Yellowtail' , 'Yeseva One' => 'Yeseva One', 'Yesteryear' => 'Yesteryear', 'Yrsa' => 'Yrsa', 'Zeyada' => 'Zeyada');
|
65 |
-
|
66 |
-
$font_style = array('normal'=>'Normal','italic'=>'Italic');
|
67 |
-
|
68 |
-
// General typography section
|
69 |
-
$wp_customize->add_section( 'innofit_general_typography' , array(
|
70 |
-
'title' => __('General Paragraph','spicebox'),
|
71 |
-
'panel' => 'innofit_typography_setting',
|
72 |
-
'priority' => 1,
|
73 |
-
) );
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
//Theme General typography plus
|
79 |
-
class Innofit_general_typography_section_upgrade extends WP_Customize_Control {
|
80 |
-
public function render_content() { ?>
|
81 |
-
<h3><?php _e('Want to Change you theme typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
82 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
83 |
-
<?php
|
84 |
-
}
|
85 |
-
}
|
86 |
-
|
87 |
-
|
88 |
-
$wp_customize->add_setting( 'general_typography_upgrade', array(
|
89 |
-
'capability' => 'edit_theme_options',
|
90 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
91 |
-
));
|
92 |
-
$wp_customize->add_control(
|
93 |
-
new Innofit_general_typography_section_upgrade(
|
94 |
-
$wp_customize,
|
95 |
-
'general_typography_upgrade',
|
96 |
-
array(
|
97 |
-
'section' => 'innofit_general_typography',
|
98 |
-
'settings' => 'general_typography_upgrade',
|
99 |
-
)
|
100 |
-
)
|
101 |
-
);
|
102 |
-
|
103 |
-
|
104 |
-
$wp_customize->add_setting(
|
105 |
-
'general_typography_fontsize',
|
106 |
-
array(
|
107 |
-
'default' => 13,
|
108 |
-
'capability' => 'edit_theme_options',
|
109 |
-
'sanitize_callback' => 'sanitize_text_field',
|
110 |
-
)
|
111 |
-
);
|
112 |
-
$wp_customize->add_control('general_typography_fontsize', array(
|
113 |
-
'label' => __('Font size','spicebox'),
|
114 |
-
'section' => 'innofit_general_typography',
|
115 |
-
'setting' => 'general_typography_fontsize',
|
116 |
-
'type' => 'select',
|
117 |
-
'choices'=>$font_size,
|
118 |
-
'description'=>__('Pixels','spicebox'),
|
119 |
-
));
|
120 |
-
$wp_customize->add_setting(
|
121 |
-
'general_typography_fontfamily',
|
122 |
-
array(
|
123 |
-
'default' => 'Dosis',
|
124 |
-
'capability' => 'edit_theme_options',
|
125 |
-
'sanitize_callback' => 'sanitize_text_field',
|
126 |
-
)
|
127 |
-
);
|
128 |
-
$wp_customize->add_control('general_typography_fontfamily', array(
|
129 |
-
'label' => __('Font family','spicebox'),
|
130 |
-
'section' => 'innofit_general_typography',
|
131 |
-
'setting' => 'general_typography_fontfamily',
|
132 |
-
'type' => 'select',
|
133 |
-
'choices'=>$font_family,
|
134 |
-
));
|
135 |
-
$wp_customize->add_setting(
|
136 |
-
'general_typography_fontstyle',
|
137 |
-
array(
|
138 |
-
'capability' => 'edit_theme_options',
|
139 |
-
'sanitize_callback' => 'sanitize_text_field',
|
140 |
-
)
|
141 |
-
);
|
142 |
-
|
143 |
-
|
144 |
-
$wp_customize->add_control('general_typography_fontstyle', array(
|
145 |
-
'label' => __('Font style','spicebox'),
|
146 |
-
'section' => 'innofit_general_typography',
|
147 |
-
'setting' => 'general_typography_fontstyle',
|
148 |
-
'type' => 'select',
|
149 |
-
'choices'=>$font_style,
|
150 |
-
));
|
151 |
-
|
152 |
-
|
153 |
-
// Menus typography section
|
154 |
-
$wp_customize->add_section( 'innofit_menus_typography' , array(
|
155 |
-
'title' => __('Menus', 'spicebox'),
|
156 |
-
'panel' => 'innofit_typography_setting',
|
157 |
-
'priority' => 2,
|
158 |
-
) );
|
159 |
-
|
160 |
-
|
161 |
-
//Theme Menu typography plus
|
162 |
-
class Innofit_menu_typography_section_upgrade extends WP_Customize_Control {
|
163 |
-
public function render_content() { ?>
|
164 |
-
<h3><?php _e('Want to Change you theme menu typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
165 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
166 |
-
<?php
|
167 |
-
}
|
168 |
-
}
|
169 |
-
|
170 |
-
|
171 |
-
$wp_customize->add_setting( 'menu_typography_upgrade', array(
|
172 |
-
'capability' => 'edit_theme_options',
|
173 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
174 |
-
));
|
175 |
-
$wp_customize->add_control(
|
176 |
-
new Innofit_menu_typography_section_upgrade(
|
177 |
-
$wp_customize,
|
178 |
-
'menu_typography_upgrade',
|
179 |
-
array(
|
180 |
-
'section' => 'innofit_menus_typography',
|
181 |
-
'settings' => 'menu_typography_upgrade',
|
182 |
-
)
|
183 |
-
)
|
184 |
-
);
|
185 |
-
|
186 |
-
|
187 |
-
$wp_customize->add_setting(
|
188 |
-
'menu_title_fontsize',
|
189 |
-
array(
|
190 |
-
'default' => 18,
|
191 |
-
'capability' => 'edit_theme_options',
|
192 |
-
'sanitize_callback' => 'sanitize_text_field',
|
193 |
-
)
|
194 |
-
);
|
195 |
-
$wp_customize->add_control('menu_title_fontsize', array(
|
196 |
-
'label' => __('Font size','spicebox'),
|
197 |
-
'section' => 'innofit_menus_typography',
|
198 |
-
'setting' => 'menu_title_fontsize',
|
199 |
-
'type' => 'select',
|
200 |
-
'choices'=>$font_size,
|
201 |
-
'description'=>__('Pixels','spicebox')
|
202 |
-
));
|
203 |
-
$wp_customize->add_setting(
|
204 |
-
'menu_title_fontfamily',
|
205 |
-
array(
|
206 |
-
'default' => 'Dosis',
|
207 |
-
'capability' => 'edit_theme_options',
|
208 |
-
'sanitize_callback' => 'sanitize_text_field',
|
209 |
-
)
|
210 |
-
);
|
211 |
-
$wp_customize->add_control('menu_title_fontfamily', array(
|
212 |
-
'label' => __('Font family','spicebox'),
|
213 |
-
'section' => 'innofit_menus_typography',
|
214 |
-
'setting' => 'menu_title_fontfamily',
|
215 |
-
'type' => 'select',
|
216 |
-
'choices'=>$font_family,
|
217 |
-
));
|
218 |
-
$wp_customize->add_setting(
|
219 |
-
'menu_title_fontstyle',
|
220 |
-
array(
|
221 |
-
'default' => 'normal',
|
222 |
-
'capability' => 'edit_theme_options',
|
223 |
-
'sanitize_callback' => 'sanitize_text_field',
|
224 |
-
)
|
225 |
-
);
|
226 |
-
$wp_customize->add_control('menu_title_fontstyle', array(
|
227 |
-
'label' => __('Font style','spicebox'),
|
228 |
-
'section' => 'innofit_menus_typography',
|
229 |
-
'setting' => 'menu_title_fontstyle',
|
230 |
-
'type' => 'select',
|
231 |
-
'choices'=>$font_style,
|
232 |
-
));
|
233 |
-
|
234 |
-
// Section title typography section
|
235 |
-
$wp_customize->add_section( 'innofit_service_typography' , array(
|
236 |
-
'title' => __('Section title', 'spicebox'),
|
237 |
-
'panel' => 'innofit_typography_setting',
|
238 |
-
'priority' => 4,
|
239 |
-
) );
|
240 |
-
|
241 |
-
|
242 |
-
//Theme Section title typography plus
|
243 |
-
class Innofit_section_title_typography_upgrade extends WP_Customize_Control {
|
244 |
-
public function render_content() { ?>
|
245 |
-
<h3><?php _e('Want to Change you theme section title typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
246 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
247 |
-
<?php
|
248 |
-
}
|
249 |
-
}
|
250 |
-
|
251 |
-
|
252 |
-
$wp_customize->add_setting( 'section_title_typography_upgrade', array(
|
253 |
-
'capability' => 'edit_theme_options',
|
254 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
255 |
-
));
|
256 |
-
$wp_customize->add_control(
|
257 |
-
new Innofit_section_title_typography_upgrade(
|
258 |
-
$wp_customize,
|
259 |
-
'section_title_typography_upgrade',
|
260 |
-
array(
|
261 |
-
'section' => 'innofit_service_typography',
|
262 |
-
'settings' => 'section_title_typography_upgrade',
|
263 |
-
)
|
264 |
-
)
|
265 |
-
);
|
266 |
-
|
267 |
-
|
268 |
-
$wp_customize->add_setting(
|
269 |
-
'section_title_fontsize',
|
270 |
-
array(
|
271 |
-
'default' => 36,
|
272 |
-
'capability' => 'edit_theme_options',
|
273 |
-
'sanitize_callback' => 'sanitize_text_field',
|
274 |
-
)
|
275 |
-
);
|
276 |
-
$wp_customize->add_control('section_title_fontsize', array(
|
277 |
-
'label' => __('Font size','spicebox'),
|
278 |
-
'section' => 'innofit_service_typography',
|
279 |
-
'setting' => 'section_title_fontsize',
|
280 |
-
'type' => 'select',
|
281 |
-
'choices'=>$font_size,
|
282 |
-
'description'=>__('Pixels','spicebox')
|
283 |
-
));
|
284 |
-
$wp_customize->add_setting(
|
285 |
-
'section_title_fontfamily',
|
286 |
-
array(
|
287 |
-
'default' => 'Dosis',
|
288 |
-
'capability' => 'edit_theme_options',
|
289 |
-
'sanitize_callback' => 'sanitize_text_field',
|
290 |
-
)
|
291 |
-
);
|
292 |
-
$wp_customize->add_control('section_title_fontfamily', array(
|
293 |
-
'label' => __('Font family','spicebox'),
|
294 |
-
'section' => 'innofit_service_typography',
|
295 |
-
'setting' => 'section_title_fontfamily',
|
296 |
-
'type' => 'select',
|
297 |
-
'choices'=>$font_family,
|
298 |
-
));
|
299 |
-
$wp_customize->add_setting(
|
300 |
-
'section_title_fontstyle',
|
301 |
-
array(
|
302 |
-
'capability' => 'edit_theme_options',
|
303 |
-
'sanitize_callback' => 'sanitize_text_field',
|
304 |
-
)
|
305 |
-
);
|
306 |
-
$wp_customize->add_control('section_title_fontstyle', array(
|
307 |
-
'label' => __('Font style','spicebox'),
|
308 |
-
'section' => 'innofit_service_typography',
|
309 |
-
'setting' => 'section_title_fontstyle',
|
310 |
-
'type' => 'select',
|
311 |
-
'choices'=>$font_style,
|
312 |
-
));
|
313 |
-
|
314 |
-
// Section description typography section
|
315 |
-
$wp_customize->add_section( 'innofit_section_description_typography' , array(
|
316 |
-
'title' => __('Section description', 'spicebox'),
|
317 |
-
'panel' => 'innofit_typography_setting',
|
318 |
-
'priority' => 5,
|
319 |
-
) );
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
//Theme Section description typography plus
|
324 |
-
class Innofit_section_description_typography_upgrade extends WP_Customize_Control {
|
325 |
-
public function render_content() { ?>
|
326 |
-
<h3><?php _e('Want to Change you theme section desription typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
327 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
328 |
-
<?php
|
329 |
-
}
|
330 |
-
}
|
331 |
-
|
332 |
-
|
333 |
-
$wp_customize->add_setting( 'section_desc_typography_upgrade', array(
|
334 |
-
'capability' => 'edit_theme_options',
|
335 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
336 |
-
));
|
337 |
-
$wp_customize->add_control(
|
338 |
-
new Innofit_section_description_typography_upgrade(
|
339 |
-
$wp_customize,
|
340 |
-
'section_desc_typography_upgrade',
|
341 |
-
array(
|
342 |
-
'section' => 'innofit_section_description_typography',
|
343 |
-
'settings' => 'section_desc_typography_upgrade',
|
344 |
-
)
|
345 |
-
)
|
346 |
-
);
|
347 |
-
|
348 |
-
$wp_customize->add_setting(
|
349 |
-
'section_description_fontsize',
|
350 |
-
array(
|
351 |
-
'default' => 18,
|
352 |
-
'capability' => 'edit_theme_options',
|
353 |
-
'sanitize_callback' => 'sanitize_text_field',
|
354 |
-
)
|
355 |
-
);
|
356 |
-
$wp_customize->add_control('section_description_fontsize', array(
|
357 |
-
'label' => __('Font size','spicebox'),
|
358 |
-
'section' => 'innofit_section_description_typography',
|
359 |
-
'setting' => 'section_description_fontsize',
|
360 |
-
'type' => 'select',
|
361 |
-
'choices'=>$font_size,
|
362 |
-
'description'=>__('Pixels','spicebox')
|
363 |
-
));
|
364 |
-
$wp_customize->add_setting(
|
365 |
-
'section_description_fontfamily',
|
366 |
-
array(
|
367 |
-
'default' => 'Dosis',
|
368 |
-
'capability' => 'edit_theme_options',
|
369 |
-
'sanitize_callback' => 'sanitize_text_field',
|
370 |
-
)
|
371 |
-
);
|
372 |
-
$wp_customize->add_control('section_description_fontfamily', array(
|
373 |
-
'label' => __('Font family','spicebox'),
|
374 |
-
'section' => 'innofit_section_description_typography',
|
375 |
-
'setting' => 'section_description_fontfamily',
|
376 |
-
'type' => 'select',
|
377 |
-
'choices'=>$font_family,
|
378 |
-
));
|
379 |
-
$wp_customize->add_setting(
|
380 |
-
'section_description_fontstyle',
|
381 |
-
array(
|
382 |
-
'capability' => 'edit_theme_options',
|
383 |
-
'sanitize_callback' => 'sanitize_text_field',
|
384 |
-
)
|
385 |
-
);
|
386 |
-
$wp_customize->add_control('section_description_fontstyle', array(
|
387 |
-
'label' => __('Font style','spicebox'),
|
388 |
-
'section' => 'innofit_section_description_typography',
|
389 |
-
'setting' => 'section_description_fontstyle',
|
390 |
-
'type' => 'select',
|
391 |
-
'choices'=>$font_style,
|
392 |
-
));
|
393 |
-
|
394 |
-
|
395 |
-
// Section description typography section
|
396 |
-
$wp_customize->add_section( 'innofit_widget_typography' , array(
|
397 |
-
'title' => __('Widget heading title', 'spicebox'),
|
398 |
-
'panel' => 'innofit_typography_setting',
|
399 |
-
'priority' => 6,
|
400 |
-
) );
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
//Theme Section description typography plus
|
405 |
-
class Innofit_theme_widget_typography_upgrade extends WP_Customize_Control {
|
406 |
-
public function render_content() { ?>
|
407 |
-
<h3><?php _e('Want to Change you theme section desription typograpgy? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
408 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
409 |
-
<?php
|
410 |
-
}
|
411 |
-
}
|
412 |
-
|
413 |
-
$wp_customize->add_setting( 'widget_typography_upgrade', array(
|
414 |
-
'capability' => 'edit_theme_options',
|
415 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
416 |
-
));
|
417 |
-
$wp_customize->add_control(
|
418 |
-
new Innofit_theme_widget_typography_upgrade(
|
419 |
-
$wp_customize,
|
420 |
-
'widget_typography_upgrade',
|
421 |
-
array(
|
422 |
-
'section' => 'innofit_widget_typography',
|
423 |
-
'settings' => 'widget_typography_upgrade',
|
424 |
-
)
|
425 |
-
)
|
426 |
-
);
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
$wp_customize->add_setting(
|
431 |
-
'widgets_title_fontsize',
|
432 |
-
array(
|
433 |
-
'default' => 18,
|
434 |
-
'capability' => 'edit_theme_options',
|
435 |
-
'sanitize_callback' => 'sanitize_text_field',
|
436 |
-
)
|
437 |
-
);
|
438 |
-
$wp_customize->add_control('widgets_title_fontsize', array(
|
439 |
-
'label' => __('Font size','spicebox'),
|
440 |
-
'section' => 'innofit_widget_typography',
|
441 |
-
'setting' => 'widgets_title_fontsize',
|
442 |
-
'type' => 'select',
|
443 |
-
'choices'=>$font_size,
|
444 |
-
'description'=>__('Pixels','spicebox')
|
445 |
-
));
|
446 |
-
|
447 |
-
$wp_customize->add_setting(
|
448 |
-
'widgets_title_fontfamily',
|
449 |
-
array(
|
450 |
-
'default' => 'Dosis',
|
451 |
-
'capability' => 'edit_theme_options',
|
452 |
-
'sanitize_callback' => 'sanitize_text_field',
|
453 |
-
)
|
454 |
-
);
|
455 |
-
$wp_customize->add_control('widgets_title_fontfamily', array(
|
456 |
-
'label' => __('Font family','spicebox'),
|
457 |
-
'section' => 'innofit_widget_typography',
|
458 |
-
'setting' => 'widgets_title_fontfamily',
|
459 |
-
'type' => 'select',
|
460 |
-
'choices'=>$font_family,
|
461 |
-
));
|
462 |
-
$wp_customize->add_setting(
|
463 |
-
'widgets_title_fontstyle',
|
464 |
-
array(
|
465 |
-
'default' => 'normal',
|
466 |
-
'capability' => 'edit_theme_options',
|
467 |
-
'sanitize_callback' => 'sanitize_text_field',
|
468 |
-
)
|
469 |
-
);
|
470 |
-
$wp_customize->add_control('widgets_title_fontstyle', array(
|
471 |
-
'label' => __('Font style','spicebox'),
|
472 |
-
'section' => 'innofit_widget_typography',
|
473 |
-
'setting' => 'widgets_title_fontstyle',
|
474 |
-
'type' => 'select',
|
475 |
-
'choices'=>$font_style,
|
476 |
-
));
|
477 |
-
|
478 |
-
|
479 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/funfact-section.php
DELETED
@@ -1,74 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
//Pricing section plus
|
4 |
-
class Innofit_funfact_section_upgrade extends WP_Customize_Control {
|
5 |
-
public function render_content() { ?>
|
6 |
-
<h3><?php _e('Want to add funcfact section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
7 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
8 |
-
<?php
|
9 |
-
}
|
10 |
-
}
|
11 |
-
|
12 |
-
|
13 |
-
$wp_customize->add_setting( 'funfact_upgrade', array(
|
14 |
-
'capability' => 'edit_theme_options',
|
15 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
16 |
-
));
|
17 |
-
$wp_customize->add_control(
|
18 |
-
new Innofit_funfact_section_upgrade(
|
19 |
-
$wp_customize,
|
20 |
-
'funfact_upgrade',
|
21 |
-
array(
|
22 |
-
'section' => 'funfact_section',
|
23 |
-
'settings' => 'funfact_upgrade',
|
24 |
-
)
|
25 |
-
)
|
26 |
-
);
|
27 |
-
|
28 |
-
|
29 |
-
/* funfact section */
|
30 |
-
$wp_customize->add_setting( 'funfact_section_enabled' , array( 'default' => 'on') );
|
31 |
-
$wp_customize->add_control( 'funfact_section_enabled' , array(
|
32 |
-
'label' => __( 'Enable Funfact on homepage', 'spicebox' ),
|
33 |
-
'section' => 'funfact_section',
|
34 |
-
'type' => 'radio',
|
35 |
-
'choices' => array(
|
36 |
-
'on'=>__('ON', 'spicebox'),
|
37 |
-
'off'=>__('OFF', 'spicebox')
|
38 |
-
)
|
39 |
-
));
|
40 |
-
|
41 |
-
|
42 |
-
$wp_customize->add_section( 'funfact_section' , array(
|
43 |
-
'title' => __('Funfact settings', 'spicebox'),
|
44 |
-
'panel' => 'section_settings',
|
45 |
-
'priority' => 5,
|
46 |
-
) );
|
47 |
-
|
48 |
-
if ( class_exists( 'Innofit_Repeater' ) ) {
|
49 |
-
$wp_customize->add_setting( 'innofit_funfact_content', array(
|
50 |
-
) );
|
51 |
-
|
52 |
-
$wp_customize->add_control( new Innofit_Repeater( $wp_customize, 'innofit_funfact_content', array(
|
53 |
-
'label' => esc_html__( 'Funfact content', 'spicebox' ),
|
54 |
-
'section' => 'funfact_section',
|
55 |
-
'priority' => 10,
|
56 |
-
'add_field_label' => esc_html__( 'Add new Funfact', 'spicebox' ),
|
57 |
-
'item_name' => esc_html__( 'Funfact', 'spicebox' ),
|
58 |
-
'customizer_repeater_icon_control' => true,
|
59 |
-
'customizer_repeater_title_control' => true,
|
60 |
-
'customizer_repeater_text_control' => true,
|
61 |
-
) ) );
|
62 |
-
}
|
63 |
-
|
64 |
-
|
65 |
-
/**
|
66 |
-
* Add selective refresh for Front page funfact section controls.
|
67 |
-
*/
|
68 |
-
|
69 |
-
$wp_customize->selective_refresh->add_partial( 'innofit_funfact_content', array(
|
70 |
-
'selector' => '.funfact .container',
|
71 |
-
'settings' => 'innofit_funfact_content',
|
72 |
-
|
73 |
-
) );
|
74 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/instagram-section.php
DELETED
@@ -1,59 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
//Gallery Section
|
3 |
-
$wp_customize->add_section('innofit_gellary_section',array(
|
4 |
-
'title' => __('Gallery settings','spicebox'),
|
5 |
-
'panel' => 'section_settings',
|
6 |
-
'priority' => 16,
|
7 |
-
));
|
8 |
-
|
9 |
-
//Gallery plus
|
10 |
-
class Innofit_gallery_section_upgrade extends WP_Customize_Control {
|
11 |
-
public function render_content() { ?>
|
12 |
-
<h3><?php _e('Want to add gallery section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
13 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
14 |
-
<?php
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
|
19 |
-
$wp_customize->add_setting( 'gallery_upgrade', array(
|
20 |
-
'capability' => 'edit_theme_options',
|
21 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
22 |
-
));
|
23 |
-
$wp_customize->add_control(
|
24 |
-
new Innofit_gallery_section_upgrade(
|
25 |
-
$wp_customize,
|
26 |
-
'gallery_upgrade',
|
27 |
-
array(
|
28 |
-
'section' => 'innofit_gellary_section',
|
29 |
-
'settings' => 'gallery_upgrade',
|
30 |
-
)
|
31 |
-
)
|
32 |
-
);
|
33 |
-
|
34 |
-
|
35 |
-
// Enable gallery section
|
36 |
-
$wp_customize->add_setting( 'gallery_section_enable' , array( 'default' => 'on') );
|
37 |
-
$wp_customize->add_control( 'gallery_section_enable' , array(
|
38 |
-
'label' => __( 'Enable Home Gallery section', 'spicebox' ),
|
39 |
-
'section' => 'innofit_gellary_section',
|
40 |
-
'type' => 'radio',
|
41 |
-
'choices' => array(
|
42 |
-
'on'=>__('ON', 'spicebox'),
|
43 |
-
'off'=>__('OFF', 'spicebox')
|
44 |
-
),
|
45 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
46 |
-
));
|
47 |
-
|
48 |
-
// Gallery shortcode
|
49 |
-
$wp_customize->add_setting('home_gallery_shortcode',array(
|
50 |
-
'capability' => 'edit_theme_options',
|
51 |
-
|
52 |
-
));
|
53 |
-
$wp_customize->add_control('home_gallery_shortcode',array(
|
54 |
-
'label' => __('Gallery shortcode','spicebox'),
|
55 |
-
'section' => 'innofit_gellary_section',
|
56 |
-
'type' => 'textarea',
|
57 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
58 |
-
));
|
59 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/map-section.php
DELETED
@@ -1,61 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
//Google map Section
|
3 |
-
$wp_customize->add_section('innofit_map_section',array(
|
4 |
-
'title' => __('Google Maps settings','spicebox'),
|
5 |
-
'panel' => 'section_settings',
|
6 |
-
'priority' => 12,
|
7 |
-
));
|
8 |
-
|
9 |
-
//Google Map plus
|
10 |
-
class Innofit_google_maps_section_upgrade extends WP_Customize_Control {
|
11 |
-
public function render_content() { ?>
|
12 |
-
<h3><?php _e('Want to add Google map section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
13 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
14 |
-
<?php
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
|
19 |
-
$wp_customize->add_setting( 'google_map_upgrade', array(
|
20 |
-
'capability' => 'edit_theme_options',
|
21 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
22 |
-
));
|
23 |
-
$wp_customize->add_control(
|
24 |
-
new Innofit_google_maps_section_upgrade(
|
25 |
-
$wp_customize,
|
26 |
-
'google_map_upgrade',
|
27 |
-
array(
|
28 |
-
'section' => 'innofit_map_section',
|
29 |
-
'settings' => 'google_map_upgrade',
|
30 |
-
)
|
31 |
-
)
|
32 |
-
);
|
33 |
-
|
34 |
-
|
35 |
-
// google map enable / disable
|
36 |
-
$wp_customize->add_setting( 'google_map_enable' , array( 'default' => 'on') );
|
37 |
-
$wp_customize->add_control( 'google_map_enable' , array(
|
38 |
-
'label' => __( 'Enable Google map', 'spicebox' ),
|
39 |
-
'section' => 'innofit_map_section',
|
40 |
-
'type' => 'radio',
|
41 |
-
'choices' => array(
|
42 |
-
'on'=>__('ON', 'spicebox'),
|
43 |
-
'off'=>__('OFF', 'spicebox')
|
44 |
-
),
|
45 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
46 |
-
));
|
47 |
-
|
48 |
-
|
49 |
-
// google map url
|
50 |
-
$wp_customize->add_setting('contact_google_map_shortcode',array(
|
51 |
-
'capability' => 'edit_theme_options',
|
52 |
-
'sanitize_callback' => 'sanitize_text_field',
|
53 |
-
'transport' => $selective_refresh,
|
54 |
-
));
|
55 |
-
$wp_customize->add_control('contact_google_map_shortcode',array(
|
56 |
-
'label' => __('Google Map Shortcode','spicebox'),
|
57 |
-
'section' => 'innofit_map_section',
|
58 |
-
'type' => 'textarea',
|
59 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
60 |
-
));
|
61 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/news-section.php
CHANGED
@@ -60,37 +60,6 @@
|
|
60 |
'section' => 'innofit_latest_news_section',
|
61 |
)
|
62 |
);
|
63 |
-
|
64 |
-
//Plus Blog
|
65 |
-
class WP_news_plus_Customize_Control extends WP_Customize_Control {
|
66 |
-
public $type = 'new_menu';
|
67 |
-
/**
|
68 |
-
* Render the control's content.
|
69 |
-
*/
|
70 |
-
public function render_content() {
|
71 |
-
?>
|
72 |
-
<div class="pro-vesrion">
|
73 |
-
<P><?php esc_html_e('More options available for News section in Innofit Plus','spicebox');?></P>
|
74 |
-
</div>
|
75 |
-
<div class="pro-box">
|
76 |
-
<a href="<?php echo esc_url('https://spicethemes.com/innofit-plus/');?>" class="read-more-button" id="review_plus" target="_blank"><?php esc_html_e( 'Upgrade to Plus','spicebox' ); ?></a>
|
77 |
-
<div>
|
78 |
-
<?php
|
79 |
-
}
|
80 |
-
}
|
81 |
-
|
82 |
-
$wp_customize->add_setting(
|
83 |
-
'add_plus_news',
|
84 |
-
array(
|
85 |
-
'capability' => 'edit_theme_options',
|
86 |
-
'sanitize_callback' => 'sanitize_text_field',
|
87 |
-
)
|
88 |
-
);
|
89 |
-
$wp_customize->add_control( new WP_news_plus_Customize_Control( $wp_customize, 'add_plus_news', array(
|
90 |
-
'section' => 'innofit_latest_news_section',
|
91 |
-
'setting' => 'add_plus_news',
|
92 |
-
|
93 |
-
)));
|
94 |
|
95 |
|
96 |
/**
|
60 |
'section' => 'innofit_latest_news_section',
|
61 |
)
|
62 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
|
65 |
/**
|
inc/innofit/customizer/portfolio-section.php
DELETED
@@ -1,94 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* Portfolio Section */
|
3 |
-
$wp_customize->add_section( 'portfolio_section' , array(
|
4 |
-
'title' => __('Portfolio settings', 'spicebox'),
|
5 |
-
'panel' => 'section_settings',
|
6 |
-
'priority' => 4,
|
7 |
-
) );
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
//Portfolio plus
|
13 |
-
class Innofit_portfolio_section_upgrade extends WP_Customize_Control {
|
14 |
-
public function render_content() { ?>
|
15 |
-
<h3><?php _e('Want to add portfolio section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
16 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
17 |
-
<?php
|
18 |
-
}
|
19 |
-
}
|
20 |
-
|
21 |
-
|
22 |
-
$wp_customize->add_setting( 'portfolio_upgrade', array(
|
23 |
-
'capability' => 'edit_theme_options',
|
24 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
25 |
-
));
|
26 |
-
$wp_customize->add_control(
|
27 |
-
new Innofit_portfolio_section_upgrade(
|
28 |
-
$wp_customize,
|
29 |
-
'portfolio_upgrade',
|
30 |
-
array(
|
31 |
-
'section' => 'portfolio_section',
|
32 |
-
'settings' => 'portfolio_upgrade',
|
33 |
-
)
|
34 |
-
)
|
35 |
-
);
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
// Enable portfolio more btn
|
41 |
-
$wp_customize->add_setting( 'portfolio_section_enable' , array( 'default' => 'on') );
|
42 |
-
$wp_customize->add_control( 'portfolio_section_enable' , array(
|
43 |
-
'label' => __( 'Enable Home Portfolio section', 'spicebox' ),
|
44 |
-
'section' => 'portfolio_section',
|
45 |
-
'type' => 'radio',
|
46 |
-
'choices' => array(
|
47 |
-
'on'=>__('ON', 'spicebox'),
|
48 |
-
'off'=>__('OFF', 'spicebox')
|
49 |
-
),
|
50 |
-
'disabled' => array('disabled' => ''),
|
51 |
-
));
|
52 |
-
|
53 |
-
// room section title
|
54 |
-
$wp_customize->add_setting( 'home_portfolio_section_title',array(
|
55 |
-
'capability' => 'edit_theme_options',
|
56 |
-
'sanitize_callback' => 'innofitp_home_page_sanitize_text',
|
57 |
-
'default' => __('Look at our projects','spicebox'),
|
58 |
-
'transport' => $selective_refresh,
|
59 |
-
));
|
60 |
-
$wp_customize->add_control( 'home_portfolio_section_title',array(
|
61 |
-
'label' => __('Title','spicebox'),
|
62 |
-
'section' => 'portfolio_section',
|
63 |
-
'type' => 'text',
|
64 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
65 |
-
));
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
//link
|
71 |
-
class WP_portfolio_Customize_Control extends WP_Customize_Control {
|
72 |
-
public $type = 'new_menu';
|
73 |
-
/**
|
74 |
-
* Render the control's content.
|
75 |
-
*/
|
76 |
-
public function render_content() {
|
77 |
-
?>
|
78 |
-
<a href="#" class="button" disabled target="_blank"><?php _e( 'Click here to add project', 'spicebox' ); ?></a>
|
79 |
-
<?php
|
80 |
-
}
|
81 |
-
}
|
82 |
-
|
83 |
-
$wp_customize->add_setting(
|
84 |
-
'plus_project',
|
85 |
-
array(
|
86 |
-
'capability' => 'edit_theme_options',
|
87 |
-
'sanitize_callback' => 'sanitize_text_field',
|
88 |
-
)
|
89 |
-
);
|
90 |
-
$wp_customize->add_control( new WP_portfolio_Customize_Control( $wp_customize, 'plus_project', array(
|
91 |
-
'section' => 'portfolio_section',
|
92 |
-
))
|
93 |
-
);
|
94 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/pricing-section.php
DELETED
@@ -1,95 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
//Pricing Section
|
3 |
-
$wp_customize->add_section('home_pricing_section',array(
|
4 |
-
'title' => __('Pricing settings','spicebox'),
|
5 |
-
'panel' => 'section_settings',
|
6 |
-
'priority' => 9,
|
7 |
-
));
|
8 |
-
|
9 |
-
//Pricing section plus
|
10 |
-
class Innofit_pricing_section_upgrade extends WP_Customize_Control {
|
11 |
-
public function render_content() { ?>
|
12 |
-
<h3><?php _e('Want to add pricing section? Then','spicebox'); ?><a href="<?php echo esc_url( 'https://spicethemes.com/innofit-plus/' ); ?>" target="_blank">
|
13 |
-
<?php _e('Upgrade to Plus','spicebox'); ?> </a>
|
14 |
-
<?php
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
|
19 |
-
$wp_customize->add_setting( 'pricing_upgrade', array(
|
20 |
-
'capability' => 'edit_theme_options',
|
21 |
-
'sanitize_callback' => 'wp_filter_nohtml_kses',
|
22 |
-
));
|
23 |
-
$wp_customize->add_control(
|
24 |
-
new Innofit_pricing_section_upgrade(
|
25 |
-
$wp_customize,
|
26 |
-
'pricing_upgrade',
|
27 |
-
array(
|
28 |
-
'section' => 'home_pricing_section',
|
29 |
-
'settings' => 'pricing_upgrade',
|
30 |
-
)
|
31 |
-
)
|
32 |
-
);
|
33 |
-
|
34 |
-
|
35 |
-
// Enable pricing section
|
36 |
-
$wp_customize->add_setting( 'pricing_section_enable' , array( 'default' => 'on') );
|
37 |
-
$wp_customize->add_control( 'pricing_section_enable' , array(
|
38 |
-
'label' => __( 'Enable Home Pricing section', 'spicebox' ),
|
39 |
-
'section' => 'home_pricing_section',
|
40 |
-
'type' => 'radio',
|
41 |
-
'choices' => array(
|
42 |
-
'on'=>__('ON', 'spicebox'),
|
43 |
-
'off'=>__('OFF', 'spicebox')
|
44 |
-
),
|
45 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
46 |
-
));
|
47 |
-
|
48 |
-
// Pricing section title
|
49 |
-
$wp_customize->add_setting( 'home_pricing_section_title',array(
|
50 |
-
'default' => __('Affordable pricing','spicebox'),
|
51 |
-
'sanitize_callback' => 'innofitp_home_page_sanitize_text',
|
52 |
-
'transport' => $selective_refresh,
|
53 |
-
));
|
54 |
-
$wp_customize->add_control( 'home_pricing_section_title',array(
|
55 |
-
'label' => __('Title','spicebox'),
|
56 |
-
'section' => 'home_pricing_section',
|
57 |
-
'type' => 'text',
|
58 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
59 |
-
));
|
60 |
-
|
61 |
-
//Pricing section discription
|
62 |
-
$wp_customize->add_setting( 'home_pricing_section_discription',array(
|
63 |
-
'default'=> __('Great price plans for you','spicebox'),
|
64 |
-
'transport' => $selective_refresh,
|
65 |
-
));
|
66 |
-
$wp_customize->add_control( 'home_pricing_section_discription',array(
|
67 |
-
'label' => __('Description','spicebox'),
|
68 |
-
'section' => 'home_pricing_section',
|
69 |
-
'type' => 'textarea',
|
70 |
-
'input_attrs' => array('disabled' => 'disabled'),
|
71 |
-
));
|
72 |
-
|
73 |
-
//Pricing section Content
|
74 |
-
|
75 |
-
if ( class_exists( 'Innofit_Repeater' ) ) {
|
76 |
-
$wp_customize->add_setting( 'innofit_pricing_content', array(
|
77 |
-
) );
|
78 |
-
|
79 |
-
$wp_customize->add_control( new Innofit_Repeater( $wp_customize, 'innofit_pricing_content', array(
|
80 |
-
'label' => esc_html__( 'Pricing content', 'spicebox' ),
|
81 |
-
'section' => 'home_pricing_section',
|
82 |
-
'add_field_label' => esc_html__( 'Add new Pricing', 'spicebox' ),
|
83 |
-
'item_name' => esc_html__( 'Pricing', 'spicebox' ),
|
84 |
-
'customizer_repeater_price_heighlight' => true,
|
85 |
-
'customizer_repeater_title_control' => true,
|
86 |
-
'customizer_repeater_price_control' => true,
|
87 |
-
'customizer_repeater_features_control' => true,
|
88 |
-
'customizer_repeater_button_text_control' => true,
|
89 |
-
'customizer_repeater_link_control' => true,
|
90 |
-
'customizer_repeater_checkbox_control' => true,
|
91 |
-
|
92 |
-
) ) );
|
93 |
-
}
|
94 |
-
|
95 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/innofit/customizer/slider-section.php
CHANGED
@@ -124,38 +124,7 @@
|
|
124 |
'section' => 'slider_section',
|
125 |
'type' => 'checkbox',
|
126 |
));
|
127 |
-
|
128 |
-
//Plus Slider
|
129 |
-
class WP_slider_plus_Customize_Control extends WP_Customize_Control {
|
130 |
-
public $type = 'new_menu';
|
131 |
-
/**
|
132 |
-
* Render the control's content.
|
133 |
-
*/
|
134 |
-
public function render_content() {
|
135 |
-
?>
|
136 |
-
<div class="pro-vesrion">
|
137 |
-
<P><?php esc_html_e('Want to add more slider and video slider?Then upgrade to Innofit Plus','spicebox');?></P>
|
138 |
-
</div>
|
139 |
-
<div class="pro-box">
|
140 |
-
<a href="<?php echo esc_url('https://spicethemes.com/innofit-plus/');?>" class="read-more-button" id="review_plus" target="_blank"><?php esc_html_e( 'Upgrade to Plus','spicebox' ); ?></a>
|
141 |
-
<div>
|
142 |
-
<?php
|
143 |
-
}
|
144 |
-
}
|
145 |
-
|
146 |
-
$wp_customize->add_setting(
|
147 |
-
'add_plus_slider',
|
148 |
-
array(
|
149 |
-
'capability' => 'edit_theme_options',
|
150 |
-
'sanitize_callback' => 'sanitize_text_field',
|
151 |
-
)
|
152 |
-
);
|
153 |
-
$wp_customize->add_control( new WP_slider_plus_Customize_Control( $wp_customize, 'add_plus_slider', array(
|
154 |
-
'section' => 'slider_section',
|
155 |
-
'setting' => 'add_plus_slider',
|
156 |
-
|
157 |
-
)));
|
158 |
-
|
159 |
|
160 |
/**
|
161 |
* Add selective refresh for Front page slider section controls.
|
124 |
'section' => 'slider_section',
|
125 |
'type' => 'checkbox',
|
126 |
));
|
127 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
/**
|
130 |
* Add selective refresh for Front page slider section controls.
|
inc/innofit/customizer/team-section.php
CHANGED
@@ -90,37 +90,7 @@
|
|
90 |
)
|
91 |
)
|
92 |
);
|
93 |
-
//Plus Team
|
94 |
-
class WP_team_plus_Customize_Control extends WP_Customize_Control {
|
95 |
-
public $type = 'new_menu';
|
96 |
-
/**
|
97 |
-
* Render the control's content.
|
98 |
-
*/
|
99 |
-
public function render_content() {
|
100 |
-
?>
|
101 |
-
<div class="pro-vesrion">
|
102 |
-
<P><?php esc_html_e('More options available for Team section in Innofit Plus','spicebox');?></P>
|
103 |
-
</div>
|
104 |
-
<div class="pro-box">
|
105 |
-
<a href="<?php echo esc_url('https://spicethemes.com/innofit-plus/');?>" class="read-more-button" id="review_plus" target="_blank"><?php esc_html_e( 'Upgrade to Plus','spicebox' ); ?></a>
|
106 |
-
<div>
|
107 |
-
<?php
|
108 |
-
}
|
109 |
-
}
|
110 |
-
|
111 |
-
$wp_customize->add_setting(
|
112 |
-
'add_plus_team',
|
113 |
-
array(
|
114 |
-
'capability' => 'edit_theme_options',
|
115 |
-
'sanitize_callback' => 'sanitize_text_field',
|
116 |
-
)
|
117 |
-
);
|
118 |
-
$wp_customize->add_control( new WP_team_plus_Customize_Control( $wp_customize, 'add_plus_team', array(
|
119 |
-
'section' => 'innofit_team_section',
|
120 |
-
'setting' => 'add_plus_team',
|
121 |
-
'priority' => 16,
|
122 |
|
123 |
-
)));
|
124 |
|
125 |
/**
|
126 |
* Add selective refresh for Front page team section controls.
|
90 |
)
|
91 |
)
|
92 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
|
|
94 |
|
95 |
/**
|
96 |
* Add selective refresh for Front page team section controls.
|
inc/innofit/customizer/wooproduct-section.php
CHANGED
@@ -40,38 +40,6 @@
|
|
40 |
));
|
41 |
|
42 |
|
43 |
-
//Plus Shop
|
44 |
-
class WP_shop_plus_Customize_Control extends WP_Customize_Control {
|
45 |
-
public $type = 'new_menu';
|
46 |
-
/**
|
47 |
-
* Render the control's content.
|
48 |
-
*/
|
49 |
-
public function render_content() {
|
50 |
-
?>
|
51 |
-
<div class="pro-vesrion">
|
52 |
-
<P><?php esc_html_e('More options available for Shop section in Innofit Plus','spicebox');?></P>
|
53 |
-
</div>
|
54 |
-
<div class="pro-box">
|
55 |
-
<a href="<?php echo esc_url('https://spicethemes.com/innofit-plus/');?>" class="read-more-button" id="review_plus" target="_blank"><?php esc_html_e( 'Upgrade to Plus','spicebox' ); ?></a>
|
56 |
-
<div>
|
57 |
-
<?php
|
58 |
-
}
|
59 |
-
}
|
60 |
-
|
61 |
-
$wp_customize->add_setting(
|
62 |
-
'add_plus_shop',
|
63 |
-
array(
|
64 |
-
'capability' => 'edit_theme_options',
|
65 |
-
'sanitize_callback' => 'sanitize_text_field',
|
66 |
-
)
|
67 |
-
);
|
68 |
-
$wp_customize->add_control( new WP_shop_plus_Customize_Control( $wp_customize, 'add_plus_shop', array(
|
69 |
-
'section' => 'innofit_shop_section',
|
70 |
-
'setting' => 'add_plus_shop',
|
71 |
-
|
72 |
-
)));
|
73 |
-
|
74 |
-
|
75 |
/**
|
76 |
* Add selective refresh for Front page shop section controls.
|
77 |
*/
|
40 |
));
|
41 |
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
/**
|
44 |
* Add selective refresh for Front page shop section controls.
|
45 |
*/
|
inc/innofit/default-pages/home-custom-menu.php
CHANGED
@@ -48,13 +48,6 @@ if (!$run_once){
|
|
48 |
'menu-item-url' => '#contact',
|
49 |
'menu-item-status' => 'publish',
|
50 |
'menu-item-position' => 6,
|
51 |
-
));
|
52 |
-
|
53 |
-
wp_update_nav_menu_item($menu->term_id, 0, array(
|
54 |
-
'menu-item-title' => __('Callout'),
|
55 |
-
'menu-item-url' => '#call-to-action',
|
56 |
-
'menu-item-status' => 'publish',
|
57 |
-
'menu-item-position' => 7,
|
58 |
));
|
59 |
|
60 |
|
48 |
'menu-item-url' => '#contact',
|
49 |
'menu-item-status' => 'publish',
|
50 |
'menu-item-position' => 6,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
));
|
52 |
|
53 |
|
inc/innofit/sections/innofit-contact-section.php
CHANGED
@@ -44,7 +44,7 @@ $contact_form_image_overlay = get_theme_mod('contact_form_image_overlay',true);
|
|
44 |
|
45 |
<?php if( get_theme_mod('contact_info_enable',true) == true ):
|
46 |
|
47 |
-
$default = '<h2 class="title">' . esc_html__('Get in touch','spicebox').'</h2><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-map-marker"></i></div><div class="media-body"><h3 class="title">' . esc_html__('Find Us','spicebox').'</h3><address>' . esc_html__('Porterfield 508 Virginia Street Chicago
|
48 |
|
49 |
$contact_info_content = get_theme_mod('contact_info_content',$default);
|
50 |
?>
|
44 |
|
45 |
<?php if( get_theme_mod('contact_info_enable',true) == true ):
|
46 |
|
47 |
+
$default = '<h2 class="title">' . esc_html__('Get in touch','spicebox').'</h2><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-map-marker"></i></div><div class="media-body"><h3 class="title">' . esc_html__('Find Us','spicebox').'</h3><address>' . esc_html__('Porterfield 508 Virginia Street Chicago, IL 60653 (USA)','spicebox').'</address></div></div></aside><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-mobile"></i></div><div class="media-body"><h3 class="title">' . esc_html__('Phone','spicebox').'</h3><address>' . esc_html__('Mobile: (+91) 90 1900 - 6886 Hotline: 1800 6886)','spicebox').'</address></div></div></aside><aside class="contact-widget"><div class="media"><div class="contact-icon"><i class="fa fa-envelope-o"></i></div><div class="media-body"><h3 class="title">' . esc_html__('Email','spicebox').'</h3><address><a href="mailto:suppor@tinnofit.com">' . esc_html__('support@innofit.com','spicebox').'</a><a href="mailto:contact@innofit.com">' . esc_html__('contact@innofit.com','spicebox').'</a></address></div></div></aside>';
|
48 |
|
49 |
$contact_info_content = get_theme_mod('contact_info_content',$default);
|
50 |
?>
|
languages/spicebox.pot
CHANGED
@@ -2,10 +2,9 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: "
|
5 |
-
"
|
6 |
-
"v1.0.0\n"
|
7 |
"POT-Creation-Date: "
|
8 |
-
"
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Your "
|
11 |
"Name <you@example.com>\n"
|
@@ -43,8 +42,7 @@ msgstr ""
|
|
43 |
"_nc:4c,1,2\n"
|
44 |
"X-Poedit-Basepath: ..\n"
|
45 |
"Language: en_US\n"
|
46 |
-
"X-Generator: Poedit "
|
47 |
-
"2.2.1\n"
|
48 |
"X-Poedit-"
|
49 |
"SearchPath-0: .\n"
|
50 |
|
@@ -69,91 +67,26 @@ msgid ""
|
|
69 |
"This Post"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/
|
73 |
-
msgid "
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: inc/feedback-pop-up-form.php:30
|
77 |
-
msgid ""
|
78 |
-
"Your feedback is "
|
79 |
-
"valuable to us."
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: inc/feedback-pop-up-form.php:42
|
83 |
-
msgid ""
|
84 |
-
"I found a better theme"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: inc/feedback-pop-up-form.php:48
|
88 |
-
msgid ""
|
89 |
-
"It's a temporary "
|
90 |
-
"deactivation. I'm just "
|
91 |
-
"debugging an issue."
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: inc/feedback-pop-up-form.php:54
|
95 |
-
msgid ""
|
96 |
-
"It does not have a "
|
97 |
-
"feature I require. If "
|
98 |
-
"possible, mention them "
|
99 |
-
"in text box."
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: inc/feedback-pop-up-form.php:60
|
103 |
-
msgid "Others"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: inc/feedback-pop-up-form.php:64
|
107 |
-
msgid ""
|
108 |
-
"Your feedback means a "
|
109 |
-
"lot to us"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/
|
113 |
-
msgid "Submit Feedback"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: inc/feedback-pop-up-form.php:80
|
117 |
-
msgid "Skip & Deactive"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: inc/feedback-pop-up-form.php:104
|
121 |
-
msgid ""
|
122 |
-
"Now create your own "
|
123 |
-
"JotForm - It's free!"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: inc/feedback-pop-up-form.php:106
|
127 |
-
msgid ""
|
128 |
-
"Create your own JotForm"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: inc/honeypress/features/feature-service-section.php:8
|
132 |
-
#: inc/spicepress/features/feature-service-section.php:8
|
133 |
-
msgid "Service settings"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: inc/honeypress/features/feature-service-section.php:16
|
137 |
-
#: inc/innofit/customizer/services-section.php:13
|
138 |
-
#: inc/spicepress/features/feature-service-section.php:17
|
139 |
msgid ""
|
140 |
-
"Enable
|
141 |
-
"homepage"
|
142 |
msgstr ""
|
143 |
|
|
|
|
|
|
|
|
|
144 |
#: inc/honeypress/features/feature-service-section.php:20
|
145 |
#: inc/honeypress/features/feature-slider-section.php:19
|
146 |
#: inc/honeypress/features/feature-testimonial-section.php:20
|
147 |
#: inc/innofit/customizer/about-section.php:17
|
148 |
#: inc/innofit/customizer/callout-section.php:16
|
149 |
-
#: inc/innofit/customizer/client-section.php:45
|
150 |
#: inc/innofit/customizer/contact-section.php:17
|
151 |
-
#: inc/innofit/customizer/funfact-section.php:36
|
152 |
-
#: inc/innofit/customizer/instagram-section.php:42
|
153 |
-
#: inc/innofit/customizer/map-section.php:42
|
154 |
#: inc/innofit/customizer/news-section.php:17
|
155 |
-
#: inc/innofit/customizer/portfolio-section.php:47
|
156 |
-
#: inc/innofit/customizer/pricing-section.php:42
|
157 |
#: inc/innofit/customizer/services-section.php:17
|
158 |
#: inc/innofit/customizer/slider-section.php:16
|
159 |
#: inc/innofit/customizer/subscriber-section.php:55
|
@@ -167,19 +100,17 @@ msgstr ""
|
|
167 |
msgid "ON"
|
168 |
msgstr ""
|
169 |
|
|
|
|
|
|
|
|
|
170 |
#: inc/honeypress/features/feature-service-section.php:21
|
171 |
#: inc/honeypress/features/feature-slider-section.php:20
|
172 |
#: inc/honeypress/features/feature-testimonial-section.php:21
|
173 |
#: inc/innofit/customizer/about-section.php:18
|
174 |
#: inc/innofit/customizer/callout-section.php:17
|
175 |
-
#: inc/innofit/customizer/client-section.php:46
|
176 |
#: inc/innofit/customizer/contact-section.php:18
|
177 |
-
#: inc/innofit/customizer/funfact-section.php:37
|
178 |
-
#: inc/innofit/customizer/instagram-section.php:43
|
179 |
-
#: inc/innofit/customizer/map-section.php:43
|
180 |
#: inc/innofit/customizer/news-section.php:18
|
181 |
-
#: inc/innofit/customizer/portfolio-section.php:48
|
182 |
-
#: inc/innofit/customizer/pricing-section.php:43
|
183 |
#: inc/innofit/customizer/services-section.php:18
|
184 |
#: inc/innofit/customizer/slider-section.php:17
|
185 |
#: inc/innofit/customizer/subscriber-section.php:56
|
@@ -193,21 +124,21 @@ msgstr ""
|
|
193 |
msgid "OFF"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/
|
197 |
-
#: inc/
|
198 |
-
|
199 |
-
|
200 |
-
msgid "What we Offer?"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/
|
|
|
|
|
|
|
204 |
#: inc/honeypress/features/feature-slider-section.php:77
|
205 |
#: inc/honeypress/features/feature-testimonial-section.php:33
|
206 |
-
#: inc/honeypress/features/feature-testimonial-section.php:
|
207 |
#: inc/innofit/customizer/callout-section.php:29
|
208 |
#: inc/innofit/customizer/news-section.php:30
|
209 |
-
#: inc/innofit/customizer/portfolio-section.php:61
|
210 |
-
#: inc/innofit/customizer/pricing-section.php:55
|
211 |
#: inc/innofit/customizer/services-section.php:31
|
212 |
#: inc/innofit/customizer/slider-section.php:73
|
213 |
#: inc/innofit/customizer/subscriber-section.php:115
|
@@ -225,18 +156,125 @@ msgstr ""
|
|
225 |
msgid "Title"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
#: inc/honeypress/sections/honeypress-service-section.php:11
|
230 |
msgid "Why Choose Us"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/
|
|
|
|
|
234 |
#: inc/honeypress/features/feature-slider-section.php:89
|
235 |
#: inc/honeypress/features/feature-testimonial-section.php:46
|
236 |
#: inc/honeypress/features/feature-testimonial-section.php:77
|
237 |
#: inc/innofit/customizer/callout-section.php:41
|
238 |
#: inc/innofit/customizer/news-section.php:42
|
239 |
-
#: inc/innofit/customizer/pricing-section.php:67
|
240 |
#: inc/innofit/customizer/services-section.php:46
|
241 |
#: inc/innofit/customizer/slider-section.php:85
|
242 |
#: inc/innofit/customizer/subscriber-section.php:131
|
@@ -254,67 +292,47 @@ msgstr ""
|
|
254 |
msgid "Description"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/
|
|
|
258 |
#: inc/spicepress/features/feature-service-section.php:58
|
259 |
msgid "Service content"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/
|
|
|
263 |
#: inc/innofit/customizer/services-section.php:59
|
264 |
#: inc/spicepress/features/feature-service-section.php:61
|
265 |
msgid "Add new Service"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/
|
|
|
269 |
#: inc/innofit/customizer/services-section.php:60
|
270 |
#: inc/innofit/default-pages/home-custom-menu.php:19
|
271 |
#: inc/spicepress/features/feature-service-section.php:62
|
272 |
msgid "Service"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/
|
|
|
276 |
#: inc/innofit/customizer/services-section.php:72
|
277 |
msgid ""
|
278 |
"To add More Service? Then"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/
|
282 |
-
#: inc/innofit/customizer/client-section.php:16
|
283 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:14
|
284 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:81
|
285 |
-
#: inc/innofit/customizer/customizer_theme_style.php:8
|
286 |
-
#: inc/innofit/customizer/customizer_typography.php:22
|
287 |
-
#: inc/innofit/customizer/customizer_typography.php:82
|
288 |
-
#: inc/innofit/customizer/customizer_typography.php:165
|
289 |
-
#: inc/innofit/customizer/customizer_typography.php:246
|
290 |
-
#: inc/innofit/customizer/customizer_typography.php:327
|
291 |
-
#: inc/innofit/customizer/customizer_typography.php:408
|
292 |
-
#: inc/innofit/customizer/funfact-section.php:7
|
293 |
-
#: inc/innofit/customizer/instagram-section.php:13
|
294 |
-
#: inc/innofit/customizer/map-section.php:13
|
295 |
-
#: inc/innofit/customizer/news-section.php:76
|
296 |
-
#: inc/innofit/customizer/portfolio-section.php:16
|
297 |
-
#: inc/innofit/customizer/pricing-section.php:13
|
298 |
-
#: inc/innofit/customizer/services-section.php:73
|
299 |
-
#: inc/innofit/customizer/slider-section.php:140
|
300 |
-
#: inc/innofit/customizer/team-section.php:73
|
301 |
-
#: inc/innofit/customizer/team-section.php:105
|
302 |
-
#: inc/innofit/customizer/testimonial-section.php:106
|
303 |
-
#: inc/innofit/customizer/testimonial-section.php:138
|
304 |
-
#: inc/innofit/customizer/wooproduct-section.php:55
|
305 |
-
msgid "Upgrade to Plus"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
#: inc/honeypress/features/feature-slider-section.php:7
|
309 |
#: inc/spicepress/features/feature-slider-section.php:7
|
310 |
msgid "Slider settings"
|
311 |
msgstr ""
|
312 |
|
|
|
313 |
#: inc/honeypress/features/feature-slider-section.php:15
|
314 |
#: inc/spicepress/features/feature-slider-section.php:15
|
315 |
msgid "Enable slider"
|
316 |
msgstr ""
|
317 |
|
|
|
318 |
#: inc/honeypress/features/feature-slider-section.php:35
|
319 |
#: inc/honeypress/features/feature-testimonial-section.php:60
|
320 |
#: inc/innofit/customizer/about-section.php:73
|
@@ -327,6 +345,7 @@ msgstr ""
|
|
327 |
msgid "Image"
|
328 |
msgstr ""
|
329 |
|
|
|
330 |
#: inc/honeypress/features/feature-slider-section.php:50
|
331 |
#: inc/innofit/customizer/slider-section.php:47
|
332 |
#: inc/spicepress/features/feature-slider-section.php:50
|
@@ -335,6 +354,7 @@ msgid ""
|
|
335 |
"overlay"
|
336 |
msgstr ""
|
337 |
|
|
|
338 |
#: inc/honeypress/features/feature-slider-section.php:63
|
339 |
#: inc/innofit/customizer/slider-section.php:60
|
340 |
#: inc/spicepress/features/feature-slider-section.php:63
|
@@ -343,13 +363,14 @@ msgid ""
|
|
343 |
"color"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: inc/
|
347 |
-
#: inc/
|
348 |
msgid ""
|
349 |
-
"
|
350 |
-
"
|
351 |
msgstr ""
|
352 |
|
|
|
353 |
#: inc/honeypress/features/feature-slider-section.php:84
|
354 |
msgid ""
|
355 |
"Sea summo mazim ex, ea "
|
@@ -360,6 +381,8 @@ msgid ""
|
|
360 |
"sea summo mazim ex."
|
361 |
msgstr ""
|
362 |
|
|
|
|
|
363 |
#: inc/honeypress/features/feature-slider-section.php:97
|
364 |
#: inc/honeypress/sections/honeypress-slider-section.php:13
|
365 |
#: inc/innofit/sections/innofit-news-section.php:97
|
@@ -369,6 +392,7 @@ msgstr ""
|
|
369 |
msgid "Read More"
|
370 |
msgstr ""
|
371 |
|
|
|
372 |
#: inc/honeypress/features/feature-slider-section.php:102
|
373 |
#: inc/innofit/customizer/callout-section.php:60
|
374 |
#: inc/innofit/customizer/slider-section.php:98
|
@@ -376,23 +400,10 @@ msgstr ""
|
|
376 |
msgid "Button Text"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/
|
380 |
-
#: inc/
|
381 |
-
#: inc/
|
382 |
-
#: inc/
|
383 |
-
#: inc/spicepress/features/feature-slider-section.php:108
|
384 |
-
msgid "#"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: inc/honeypress/features/feature-slider-section.php:114
|
388 |
-
#: inc/innofit/customizer/callout-section.php:74
|
389 |
-
#: inc/innofit/customizer/slider-section.php:110
|
390 |
-
#: inc/spicepress/features/feature-slider-section.php:113
|
391 |
-
msgid "Button Link"
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
#: inc/honeypress/features/feature-slider-section.php:128
|
395 |
-
#: inc/honeypress/features/feature-slider-section.php:167
|
396 |
#: inc/innofit/customizer/callout-section.php:90
|
397 |
#: inc/innofit/customizer/slider-section.php:123
|
398 |
#: inc/spicepress/features/feature-slider-section.php:126
|
@@ -400,19 +411,149 @@ msgid ""
|
|
400 |
"Open link in new tab"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/
|
|
|
|
|
404 |
#: inc/honeypress/sections/honeypress-slider-section.php:17
|
405 |
msgid "About Us"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/
|
|
|
409 |
msgid "Button 2 Text"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: inc/
|
|
|
413 |
msgid "Button 2 Link"
|
414 |
msgstr ""
|
415 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
#: inc/honeypress/features/feature-testimonial-section.php:8
|
417 |
#: inc/spicepress/features/feature-testimonial-section.php:8
|
418 |
msgid ""
|
@@ -460,51 +601,25 @@ msgid ""
|
|
460 |
"pariatur."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/honeypress/features/feature-testimonial-section.php:
|
464 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:17
|
465 |
#: inc/spicepress/features/feature-testimonial-section.php:123
|
466 |
#: inc/spicepress/sections/spicepress-testimonail-section.php:26
|
467 |
msgid "Alice Culan"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc/honeypress/features/feature-testimonial-section.php:
|
471 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:18
|
472 |
#: inc/innofit/customizer.php:203
|
473 |
#: inc/innofit/sections/innofit-team-section.php:183
|
474 |
-
#: inc/spicepress/features/feature-testimonial-section.php:136
|
475 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:27
|
476 |
-
msgid "UI Developer"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: inc/honeypress/features/feature-testimonial-section.php:
|
480 |
-
#: inc/spicepress/features/feature-testimonial-section.php:141
|
481 |
-
msgid "Designation"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: inc/honeypress/sections/honeypress-service-section.php:164
|
485 |
-
#: inc/spicepress/sections/spicepress-features-section.php:191
|
486 |
-
msgid "Responsive Design"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: inc/honeypress/sections/honeypress-service-section.php:172
|
490 |
-
#: inc/spicepress/sections/spicepress-features-section.php:183
|
491 |
-
msgid "Multi-Purpose"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: inc/honeypress/sections/honeypress-service-section.php:180
|
495 |
-
#: inc/innofit/customizer.php:29
|
496 |
-
#: inc/innofit/sections/innofit-services-section.php:30
|
497 |
-
msgid "Powerful Options"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: inc/honeypress/sections/honeypress-slider-section.php:12
|
501 |
-
msgid ""
|
502 |
-
"Sea summo mazim ex, ea "
|
503 |
-
"errem eleifend "
|
504 |
-
"definitionem vim. Ut nec "
|
505 |
-
"hinc dolor possim <br> "
|
506 |
-
"mei ludus efficiendi ei "
|
507 |
-
"sea summo mazim ex."
|
508 |
msgstr ""
|
509 |
|
510 |
#: inc/innofit/customizer.php:11
|
@@ -642,66 +757,6 @@ msgstr ""
|
|
642 |
msgid "Buy Innofit"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/innofit/customizer/client-section.php:5
|
646 |
-
msgid "Clients settings"
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: inc/innofit/customizer/client-section.php:15
|
650 |
-
msgid ""
|
651 |
-
"Want to add client "
|
652 |
-
"section? Then"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: inc/innofit/customizer/client-section.php:41
|
656 |
-
msgid ""
|
657 |
-
"Enable Home Client "
|
658 |
-
"section"
|
659 |
-
msgstr ""
|
660 |
-
|
661 |
-
#: inc/innofit/customizer/client-section.php:61
|
662 |
-
msgid "Clients content"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: inc/innofit/customizer/client-section.php:63
|
666 |
-
msgid "Add new client"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: inc/innofit/customizer/client-section.php:64
|
670 |
-
msgid "Client"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: inc/innofit/customizer/client-section.php:75
|
674 |
-
msgid ""
|
675 |
-
"Client background text:"
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: inc/innofit/customizer/client-section.php:79
|
679 |
-
msgid "Marquee"
|
680 |
-
msgstr ""
|
681 |
-
|
682 |
-
#: inc/innofit/customizer/client-section.php:80
|
683 |
-
msgid "Static"
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
#: inc/innofit/customizer/client-section.php:87
|
687 |
-
msgid ""
|
688 |
-
"<b>Our sponsors</b> Our "
|
689 |
-
"sponsors"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: inc/innofit/customizer/client-section.php:91
|
693 |
-
msgid ""
|
694 |
-
"Background scroll text"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#: inc/innofit/customizer/client-section.php:102
|
698 |
-
msgid "Animation speed"
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: inc/innofit/customizer/client-section.php:120
|
702 |
-
msgid "Smooth speed"
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
#: inc/innofit/customizer/contact-section.php:13
|
706 |
msgid ""
|
707 |
"Enable Contact form "
|
@@ -709,8 +764,6 @@ msgid ""
|
|
709 |
msgstr ""
|
710 |
|
711 |
#: inc/innofit/customizer/contact-section.php:28
|
712 |
-
#: inc/innofit/customizer/customizer_theme_style.php:58
|
713 |
-
#: inc/innofit/customizer/customizer_theme_style.php:59
|
714 |
#: inc/innofit/customizer/subscriber-section.php:71
|
715 |
#: inc/innofit/customizer/testimonial-section.php:27
|
716 |
#: inc/spicepress/features/feature-testimonial-section.php:31
|
@@ -739,11 +792,6 @@ msgid ""
|
|
739 |
"Contact form title one"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: inc/innofit/customizer/contact-section.php:76
|
743 |
-
#: inc/innofit/sections/innofit-contact-section.php:23
|
744 |
-
msgid "Contact Us"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
#: inc/innofit/customizer/contact-section.php:81
|
748 |
msgid ""
|
749 |
"Contact form title two"
|
@@ -772,8 +820,8 @@ msgstr ""
|
|
772 |
#: inc/innofit/sections/innofit-contact-section.php:47
|
773 |
msgid ""
|
774 |
"Porterfield 508 Virginia "
|
775 |
-
"Street Chicago
|
776 |
-
"
|
777 |
msgstr ""
|
778 |
|
779 |
#: inc/innofit/customizer/contact-section.php:112
|
@@ -785,8 +833,7 @@ msgstr ""
|
|
785 |
#: inc/innofit/sections/innofit-contact-section.php:47
|
786 |
msgid ""
|
787 |
"Mobile: (+91) 90 1900 - "
|
788 |
-
"6886
|
789 |
-
"6886)"
|
790 |
msgstr ""
|
791 |
|
792 |
#: inc/innofit/customizer/contact-section.php:112
|
@@ -809,307 +856,6 @@ msgid ""
|
|
809 |
"Contact Info content"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:6
|
813 |
-
msgid "Footer Copyright"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:13
|
817 |
-
msgid ""
|
818 |
-
"Want to use copyright "
|
819 |
-
"section color settings ? "
|
820 |
-
"Then"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:44
|
824 |
-
msgid "Text color"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:58
|
828 |
-
msgid "Link color"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:72
|
832 |
-
msgid "Link Hover color"
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: inc/innofit/customizer/customizer_color_back_settings.php:86
|
836 |
-
msgid ""
|
837 |
-
"Footer background color"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:15
|
841 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:125
|
842 |
-
msgid "Enable"
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:23
|
846 |
-
msgid "Disable"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:30
|
850 |
-
msgid ""
|
851 |
-
"Slider has fixed "
|
852 |
-
"position on homepage"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:31
|
856 |
-
msgid "Note"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:31
|
860 |
-
msgid ""
|
861 |
-
"By default, all sections "
|
862 |
-
"are enabled on homepage. "
|
863 |
-
"If you wish not to "
|
864 |
-
"display a section, just "
|
865 |
-
"drag it onto the "
|
866 |
-
"\"disabled\" box."
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:73
|
870 |
-
msgid ""
|
871 |
-
"Theme Layout Manager"
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: inc/innofit/customizer/customizer_layout_manager.php:80
|
875 |
-
msgid ""
|
876 |
-
"Want to change home page "
|
877 |
-
"layout section? Then"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: inc/innofit/customizer/customizer_theme_style.php:7
|
881 |
-
msgid ""
|
882 |
-
"Want to change your "
|
883 |
-
"theme style? Then"
|
884 |
-
msgstr ""
|
885 |
-
|
886 |
-
#: inc/innofit/customizer/customizer_theme_style.php:40
|
887 |
-
#: inc/innofit/customizer/customizer_theme_style.php:225
|
888 |
-
msgid ""
|
889 |
-
"Predefined default "
|
890 |
-
"background"
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: inc/innofit/customizer/customizer_theme_style.php:59
|
894 |
-
#: inc/innofit/customizer/customizer_theme_style.php:61
|
895 |
-
msgid "Go to"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: inc/innofit/customizer/customizer_theme_style.php:59
|
899 |
-
#: inc/innofit/customizer/customizer_theme_style.php:61
|
900 |
-
msgid "Appearance"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: inc/innofit/customizer/customizer_theme_style.php:59
|
904 |
-
#: inc/innofit/customizer/customizer_theme_style.php:61
|
905 |
-
msgid "Customize"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: inc/innofit/customizer/customizer_theme_style.php:60
|
909 |
-
msgid "Background Color"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
#: inc/innofit/customizer/customizer_theme_style.php:61
|
913 |
-
msgid "Colors"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: inc/innofit/customizer/customizer_theme_style.php:82
|
917 |
-
msgid "Theme Layout"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: inc/innofit/customizer/customizer_theme_style.php:113
|
921 |
-
msgid "Predefined Colors"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: inc/innofit/customizer/customizer_theme_style.php:140
|
925 |
-
msgid ""
|
926 |
-
"Theme style settings"
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: inc/innofit/customizer/customizer_theme_style.php:152
|
930 |
-
msgid "Predefined colors"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: inc/innofit/customizer/customizer_theme_style.php:176
|
934 |
-
msgid ""
|
935 |
-
"Enable custom color skin"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: inc/innofit/customizer/customizer_theme_style.php:193
|
939 |
-
msgid "Skin color"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: inc/innofit/customizer/customizer_theme_style.php:206
|
943 |
-
msgid "Layout style"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: inc/innofit/customizer/customizer_typography.php:5
|
947 |
-
msgid "Typography settings"
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: inc/innofit/customizer/customizer_typography.php:12
|
951 |
-
msgid "Custom typography"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: inc/innofit/customizer/customizer_typography.php:21
|
955 |
-
msgid ""
|
956 |
-
"Want to use custom "
|
957 |
-
"typograpgy? Then"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: inc/innofit/customizer/customizer_typography.php:52
|
961 |
-
msgid ""
|
962 |
-
"Enable custom typography"
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: inc/innofit/customizer/customizer_typography.php:70
|
966 |
-
msgid "General Paragraph"
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#: inc/innofit/customizer/customizer_typography.php:81
|
970 |
-
msgid ""
|
971 |
-
"Want to Change you theme "
|
972 |
-
"typograpgy? Then"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: inc/innofit/customizer/customizer_typography.php:113
|
976 |
-
#: inc/innofit/customizer/customizer_typography.php:196
|
977 |
-
#: inc/innofit/customizer/customizer_typography.php:277
|
978 |
-
#: inc/innofit/customizer/customizer_typography.php:357
|
979 |
-
#: inc/innofit/customizer/customizer_typography.php:439
|
980 |
-
msgid "Font size"
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: inc/innofit/customizer/customizer_typography.php:118
|
984 |
-
#: inc/innofit/customizer/customizer_typography.php:201
|
985 |
-
#: inc/innofit/customizer/customizer_typography.php:282
|
986 |
-
#: inc/innofit/customizer/customizer_typography.php:362
|
987 |
-
#: inc/innofit/customizer/customizer_typography.php:444
|
988 |
-
msgid "Pixels"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: inc/innofit/customizer/customizer_typography.php:129
|
992 |
-
#: inc/innofit/customizer/customizer_typography.php:212
|
993 |
-
#: inc/innofit/customizer/customizer_typography.php:293
|
994 |
-
#: inc/innofit/customizer/customizer_typography.php:373
|
995 |
-
#: inc/innofit/customizer/customizer_typography.php:456
|
996 |
-
msgid "Font family"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: inc/innofit/customizer/customizer_typography.php:145
|
1000 |
-
#: inc/innofit/customizer/customizer_typography.php:227
|
1001 |
-
#: inc/innofit/customizer/customizer_typography.php:307
|
1002 |
-
#: inc/innofit/customizer/customizer_typography.php:387
|
1003 |
-
#: inc/innofit/customizer/customizer_typography.php:471
|
1004 |
-
msgid "Font style"
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: inc/innofit/customizer/customizer_typography.php:155
|
1008 |
-
msgid "Menus"
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: inc/innofit/customizer/customizer_typography.php:164
|
1012 |
-
msgid ""
|
1013 |
-
"Want to Change you theme "
|
1014 |
-
"menu typograpgy? Then"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: inc/innofit/customizer/customizer_typography.php:236
|
1018 |
-
msgid "Section title"
|
1019 |
-
msgstr ""
|
1020 |
-
|
1021 |
-
#: inc/innofit/customizer/customizer_typography.php:245
|
1022 |
-
msgid ""
|
1023 |
-
"Want to Change you theme "
|
1024 |
-
"section title "
|
1025 |
-
"typograpgy? Then"
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: inc/innofit/customizer/customizer_typography.php:316
|
1029 |
-
msgid "Section description"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
#: inc/innofit/customizer/customizer_typography.php:326
|
1033 |
-
#: inc/innofit/customizer/customizer_typography.php:407
|
1034 |
-
msgid ""
|
1035 |
-
"Want to Change you theme "
|
1036 |
-
"section desription "
|
1037 |
-
"typograpgy? Then"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: inc/innofit/customizer/customizer_typography.php:397
|
1041 |
-
msgid ""
|
1042 |
-
"Widget heading title"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: inc/innofit/customizer/funfact-section.php:6
|
1046 |
-
msgid ""
|
1047 |
-
"Want to add funcfact "
|
1048 |
-
"section? Then"
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: inc/innofit/customizer/funfact-section.php:32
|
1052 |
-
msgid ""
|
1053 |
-
"Enable Funfact on "
|
1054 |
-
"homepage"
|
1055 |
-
msgstr ""
|
1056 |
-
|
1057 |
-
#: inc/innofit/customizer/funfact-section.php:43
|
1058 |
-
msgid "Funfact settings"
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: inc/innofit/customizer/funfact-section.php:53
|
1062 |
-
msgid "Funfact content"
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: inc/innofit/customizer/funfact-section.php:56
|
1066 |
-
msgid "Add new Funfact"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: inc/innofit/customizer/funfact-section.php:57
|
1070 |
-
msgid "Funfact"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: inc/innofit/customizer/instagram-section.php:4
|
1074 |
-
msgid "Gallery settings"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: inc/innofit/customizer/instagram-section.php:12
|
1078 |
-
msgid ""
|
1079 |
-
"Want to add gallery "
|
1080 |
-
"section? Then"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: inc/innofit/customizer/instagram-section.php:38
|
1084 |
-
msgid ""
|
1085 |
-
"Enable Home Gallery "
|
1086 |
-
"section"
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
#: inc/innofit/customizer/instagram-section.php:54
|
1090 |
-
msgid "Gallery shortcode"
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: inc/innofit/customizer/map-section.php:4
|
1094 |
-
msgid ""
|
1095 |
-
"Google Maps settings"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: inc/innofit/customizer/map-section.php:12
|
1099 |
-
msgid ""
|
1100 |
-
"Want to add Google map "
|
1101 |
-
"section? Then"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: inc/innofit/customizer/map-section.php:38
|
1105 |
-
msgid "Enable Google map"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: inc/innofit/customizer/map-section.php:56
|
1109 |
-
msgid ""
|
1110 |
-
"Google Map Shortcode"
|
1111 |
-
msgstr ""
|
1112 |
-
|
1113 |
#: inc/innofit/customizer/news-section.php:4
|
1114 |
msgid ""
|
1115 |
"Latest News settings"
|
@@ -1136,78 +882,6 @@ msgid ""
|
|
1136 |
"section"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: inc/innofit/customizer/news-section.php:73
|
1140 |
-
msgid ""
|
1141 |
-
"More options available "
|
1142 |
-
"for News section in "
|
1143 |
-
"Innofit Plus"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: inc/innofit/customizer/portfolio-section.php:4
|
1147 |
-
#: inc/spicepress/features/feature-portfolio-section.php:6
|
1148 |
-
msgid "Portfolio settings"
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: inc/innofit/customizer/portfolio-section.php:15
|
1152 |
-
msgid ""
|
1153 |
-
"Want to add portfolio "
|
1154 |
-
"section? Then"
|
1155 |
-
msgstr ""
|
1156 |
-
|
1157 |
-
#: inc/innofit/customizer/portfolio-section.php:43
|
1158 |
-
#: inc/spicepress/features/feature-portfolio-section.php:14
|
1159 |
-
msgid ""
|
1160 |
-
"Enable Home Portfolio "
|
1161 |
-
"section"
|
1162 |
-
msgstr ""
|
1163 |
-
|
1164 |
-
#: inc/innofit/customizer/portfolio-section.php:57
|
1165 |
-
msgid ""
|
1166 |
-
"Look at our projects"
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: inc/innofit/customizer/portfolio-section.php:78
|
1170 |
-
msgid ""
|
1171 |
-
"Click here to add project"
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: inc/innofit/customizer/pricing-section.php:4
|
1175 |
-
msgid "Pricing settings"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: inc/innofit/customizer/pricing-section.php:12
|
1179 |
-
msgid ""
|
1180 |
-
"Want to add pricing "
|
1181 |
-
"section? Then"
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: inc/innofit/customizer/pricing-section.php:38
|
1185 |
-
msgid ""
|
1186 |
-
"Enable Home Pricing "
|
1187 |
-
"section"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: inc/innofit/customizer/pricing-section.php:50
|
1191 |
-
msgid "Affordable pricing"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: inc/innofit/customizer/pricing-section.php:63
|
1195 |
-
msgid ""
|
1196 |
-
"Great price plans for you"
|
1197 |
-
msgstr ""
|
1198 |
-
|
1199 |
-
#: inc/innofit/customizer/pricing-section.php:80
|
1200 |
-
msgid "Pricing content"
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#: inc/innofit/customizer/pricing-section.php:82
|
1204 |
-
msgid "Add new Pricing"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: inc/innofit/customizer/pricing-section.php:83
|
1208 |
-
msgid "Pricing"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
#: inc/innofit/customizer/services-section.php:4
|
1212 |
msgid "Services settings"
|
1213 |
msgstr ""
|
@@ -1252,13 +926,6 @@ msgstr ""
|
|
1252 |
msgid "Read more"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: inc/innofit/customizer/slider-section.php:137
|
1256 |
-
msgid ""
|
1257 |
-
"Want to add more slider "
|
1258 |
-
"and video slider?Then "
|
1259 |
-
"upgrade to Innofit Plus"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
#: inc/innofit/customizer/subscriber-section.php:24
|
1263 |
msgid "General Settings"
|
1264 |
msgstr ""
|
@@ -1341,13 +1008,6 @@ msgid ""
|
|
1341 |
"To add More Team? Then"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: inc/innofit/customizer/team-section.php:102
|
1345 |
-
msgid ""
|
1346 |
-
"More options available "
|
1347 |
-
"for Team section in "
|
1348 |
-
"Innofit Plus"
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
#: inc/innofit/customizer/testimonial-section.php:3
|
1352 |
msgid ""
|
1353 |
"Testimonials settings"
|
@@ -1426,13 +1086,6 @@ msgid ""
|
|
1426 |
"Our amazing products"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/innofit/customizer/wooproduct-section.php:52
|
1430 |
-
msgid ""
|
1431 |
-
"More options available "
|
1432 |
-
"for Shop section in "
|
1433 |
-
"Innofit Plus"
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
#: inc/innofit/default-pages/home-custom-menu.php:12
|
1437 |
msgid "Home"
|
1438 |
msgstr ""
|
@@ -1453,10 +1106,6 @@ msgstr ""
|
|
1453 |
msgid "Contact"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: inc/innofit/default-pages/home-custom-menu.php:54
|
1457 |
-
msgid "Callout"
|
1458 |
-
msgstr ""
|
1459 |
-
|
1460 |
#: inc/innofit/sections/innofit-wooproduct-section.php:56
|
1461 |
msgid "On Sale!"
|
1462 |
msgstr ""
|
@@ -1470,6 +1119,16 @@ msgstr ""
|
|
1470 |
msgid "out of 5"
|
1471 |
msgstr ""
|
1472 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1473 |
#: inc/spicepress/features/feature-portfolio-section.php:27
|
1474 |
#: inc/spicepress/sections/spicepress-portfolio-section.php:9
|
1475 |
msgid "Our Portfolio"
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: "
|
5 |
+
"Spiceboxv1.0.0\n"
|
|
|
6 |
"POT-Creation-Date: "
|
7 |
+
"2020-04-15 17:05+0530\n"
|
8 |
"PO-Revision-Date: \n"
|
9 |
"Last-Translator: Your "
|
10 |
"Name <you@example.com>\n"
|
42 |
"_nc:4c,1,2\n"
|
43 |
"X-Poedit-Basepath: ..\n"
|
44 |
"Language: en_US\n"
|
45 |
+
"X-Generator: Poedit 2.3\n"
|
|
|
46 |
"X-Poedit-"
|
47 |
"SearchPath-0: .\n"
|
48 |
|
67 |
"This Post"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/cloudpress/features/feature-cta-section.php:8
|
71 |
+
msgid "CTA Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/cloudpress/features/feature-cta-section.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
msgid ""
|
76 |
+
"Enable Home CTA Section"
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: inc/cloudpress/features/feature-cta-section.php:20
|
80 |
+
#: inc/cloudpress/features/feature-funfact-section.php:20
|
81 |
+
#: inc/cloudpress/features/feature-service-section.php:20
|
82 |
+
#: inc/cloudpress/features/feature-slider-section.php:19
|
83 |
#: inc/honeypress/features/feature-service-section.php:20
|
84 |
#: inc/honeypress/features/feature-slider-section.php:19
|
85 |
#: inc/honeypress/features/feature-testimonial-section.php:20
|
86 |
#: inc/innofit/customizer/about-section.php:17
|
87 |
#: inc/innofit/customizer/callout-section.php:16
|
|
|
88 |
#: inc/innofit/customizer/contact-section.php:17
|
|
|
|
|
|
|
89 |
#: inc/innofit/customizer/news-section.php:17
|
|
|
|
|
90 |
#: inc/innofit/customizer/services-section.php:17
|
91 |
#: inc/innofit/customizer/slider-section.php:16
|
92 |
#: inc/innofit/customizer/subscriber-section.php:55
|
100 |
msgid "ON"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/cloudpress/features/feature-cta-section.php:21
|
104 |
+
#: inc/cloudpress/features/feature-funfact-section.php:21
|
105 |
+
#: inc/cloudpress/features/feature-service-section.php:21
|
106 |
+
#: inc/cloudpress/features/feature-slider-section.php:20
|
107 |
#: inc/honeypress/features/feature-service-section.php:21
|
108 |
#: inc/honeypress/features/feature-slider-section.php:20
|
109 |
#: inc/honeypress/features/feature-testimonial-section.php:21
|
110 |
#: inc/innofit/customizer/about-section.php:18
|
111 |
#: inc/innofit/customizer/callout-section.php:17
|
|
|
112 |
#: inc/innofit/customizer/contact-section.php:18
|
|
|
|
|
|
|
113 |
#: inc/innofit/customizer/news-section.php:18
|
|
|
|
|
114 |
#: inc/innofit/customizer/services-section.php:18
|
115 |
#: inc/innofit/customizer/slider-section.php:17
|
116 |
#: inc/innofit/customizer/subscriber-section.php:56
|
124 |
msgid "OFF"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: inc/cloudpress/features/feature-cta-section.php:28
|
128 |
+
#: inc/cloudpress/sections/cloudpress-cta-section.php:15
|
129 |
+
msgid ""
|
130 |
+
"Want to Work With Us?"
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: inc/cloudpress/features/feature-cta-section.php:33
|
134 |
+
#: inc/cloudpress/features/feature-service-section.php:33
|
135 |
+
#: inc/cloudpress/features/feature-slider-section.php:77
|
136 |
+
#: inc/honeypress/features/feature-service-section.php:33
|
137 |
#: inc/honeypress/features/feature-slider-section.php:77
|
138 |
#: inc/honeypress/features/feature-testimonial-section.php:33
|
139 |
+
#: inc/honeypress/features/feature-testimonial-section.php:90
|
140 |
#: inc/innofit/customizer/callout-section.php:29
|
141 |
#: inc/innofit/customizer/news-section.php:30
|
|
|
|
|
142 |
#: inc/innofit/customizer/services-section.php:31
|
143 |
#: inc/innofit/customizer/slider-section.php:73
|
144 |
#: inc/innofit/customizer/subscriber-section.php:115
|
156 |
msgid "Title"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/cloudpress/features/feature-cta-section.php:41
|
160 |
+
#: inc/cloudpress/sections/cloudpress-cta-section.php:16
|
161 |
+
msgid ""
|
162 |
+
"Choose a package that "
|
163 |
+
"suits your every need "
|
164 |
+
"for building a website."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: inc/cloudpress/features/feature-cta-section.php:46
|
168 |
+
msgid "Sub Title"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/cloudpress/features/feature-cta-section.php:53
|
172 |
+
#: inc/cloudpress/sections/cloudpress-cta-section.php:17
|
173 |
+
#: inc/innofit/customizer/contact-section.php:76
|
174 |
+
#: inc/innofit/sections/innofit-contact-section.php:23
|
175 |
+
msgid "Contact Us"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: inc/cloudpress/features/feature-cta-section.php:58
|
179 |
+
msgid "Button"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: inc/cloudpress/features/feature-cta-section.php:65
|
183 |
+
#: inc/cloudpress/features/feature-slider-section.php:109
|
184 |
+
#: inc/cloudpress/features/feature-slider-section.php:146
|
185 |
+
#: inc/honeypress/features/feature-slider-section.php:109
|
186 |
+
#: inc/honeypress/features/feature-slider-section.php:146
|
187 |
+
#: inc/innofit/customizer/callout-section.php:68
|
188 |
+
#: inc/innofit/customizer/slider-section.php:105
|
189 |
+
#: inc/spicepress/features/feature-slider-section.php:108
|
190 |
+
msgid "#"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: inc/cloudpress/features/feature-cta-section.php:70
|
194 |
+
#: inc/cloudpress/features/feature-slider-section.php:114
|
195 |
+
#: inc/honeypress/features/feature-slider-section.php:114
|
196 |
+
#: inc/innofit/customizer/callout-section.php:74
|
197 |
+
#: inc/innofit/customizer/slider-section.php:110
|
198 |
+
#: inc/spicepress/features/feature-slider-section.php:113
|
199 |
+
msgid "Button Link"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: inc/cloudpress/features/feature-funfact-section.php:8
|
203 |
+
msgid "Funfact Settings"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: inc/cloudpress/features/feature-funfact-section.php:16
|
207 |
+
msgid ""
|
208 |
+
"Enable funfacts on "
|
209 |
+
"homepage"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/cloudpress/features/feature-funfact-section.php:30
|
213 |
+
msgid "Funfact content"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/cloudpress/features/feature-funfact-section.php:33
|
217 |
+
msgid "Add new Funfact"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: inc/cloudpress/features/feature-funfact-section.php:34
|
221 |
+
msgid "Funfact"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/cloudpress/features/feature-funfact-section.php:44
|
225 |
+
msgid ""
|
226 |
+
"To add More funfact? Then"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: inc/cloudpress/features/feature-funfact-section.php:45
|
230 |
+
#: inc/cloudpress/features/feature-service-section.php:74
|
231 |
+
#: inc/honeypress/features/feature-service-section.php:74
|
232 |
+
#: inc/innofit/customizer/services-section.php:73
|
233 |
+
#: inc/innofit/customizer/team-section.php:73
|
234 |
+
#: inc/innofit/customizer/testimonial-section.php:106
|
235 |
+
#: inc/innofit/customizer/testimonial-section.php:138
|
236 |
+
msgid "Upgrade to Plus"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: inc/cloudpress/features/feature-service-section.php:8
|
240 |
+
#: inc/honeypress/features/feature-service-section.php:8
|
241 |
+
#: inc/spicepress/features/feature-service-section.php:8
|
242 |
+
msgid "Service settings"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: inc/cloudpress/features/feature-service-section.php:16
|
246 |
+
#: inc/honeypress/features/feature-service-section.php:16
|
247 |
+
#: inc/innofit/customizer/services-section.php:13
|
248 |
+
#: inc/spicepress/features/feature-service-section.php:17
|
249 |
+
msgid ""
|
250 |
+
"Enable Services on "
|
251 |
+
"homepage"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: inc/cloudpress/features/feature-service-section.php:28
|
255 |
+
#: inc/cloudpress/sections/cloudpress-service-section.php:10
|
256 |
+
#: inc/honeypress/features/feature-service-section.php:28
|
257 |
+
#: inc/honeypress/sections/honeypress-service-section.php:10
|
258 |
+
#: inc/spicepress/features/feature-service-section.php:30
|
259 |
+
#: inc/spicepress/sections/spicepress-features-section.php:10
|
260 |
+
msgid "What we Offer?"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: inc/cloudpress/features/feature-service-section.php:41
|
264 |
+
#: inc/cloudpress/sections/cloudpress-service-section.php:11
|
265 |
+
#: inc/honeypress/features/feature-service-section.php:41
|
266 |
#: inc/honeypress/sections/honeypress-service-section.php:11
|
267 |
msgid "Why Choose Us"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/cloudpress/features/feature-service-section.php:46
|
271 |
+
#: inc/cloudpress/features/feature-slider-section.php:89
|
272 |
+
#: inc/honeypress/features/feature-service-section.php:46
|
273 |
#: inc/honeypress/features/feature-slider-section.php:89
|
274 |
#: inc/honeypress/features/feature-testimonial-section.php:46
|
275 |
#: inc/honeypress/features/feature-testimonial-section.php:77
|
276 |
#: inc/innofit/customizer/callout-section.php:41
|
277 |
#: inc/innofit/customizer/news-section.php:42
|
|
|
278 |
#: inc/innofit/customizer/services-section.php:46
|
279 |
#: inc/innofit/customizer/slider-section.php:85
|
280 |
#: inc/innofit/customizer/subscriber-section.php:131
|
292 |
msgid "Description"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc/cloudpress/features/feature-service-section.php:56
|
296 |
+
#: inc/honeypress/features/feature-service-section.php:56
|
297 |
#: inc/spicepress/features/feature-service-section.php:58
|
298 |
msgid "Service content"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/cloudpress/features/feature-service-section.php:59
|
302 |
+
#: inc/honeypress/features/feature-service-section.php:59
|
303 |
#: inc/innofit/customizer/services-section.php:59
|
304 |
#: inc/spicepress/features/feature-service-section.php:61
|
305 |
msgid "Add new Service"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/cloudpress/features/feature-service-section.php:60
|
309 |
+
#: inc/honeypress/features/feature-service-section.php:60
|
310 |
#: inc/innofit/customizer/services-section.php:60
|
311 |
#: inc/innofit/default-pages/home-custom-menu.php:19
|
312 |
#: inc/spicepress/features/feature-service-section.php:62
|
313 |
msgid "Service"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/cloudpress/features/feature-service-section.php:73
|
317 |
+
#: inc/honeypress/features/feature-service-section.php:73
|
318 |
#: inc/innofit/customizer/services-section.php:72
|
319 |
msgid ""
|
320 |
"To add More Service? Then"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/cloudpress/features/feature-slider-section.php:7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
#: inc/honeypress/features/feature-slider-section.php:7
|
325 |
#: inc/spicepress/features/feature-slider-section.php:7
|
326 |
msgid "Slider settings"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/cloudpress/features/feature-slider-section.php:15
|
330 |
#: inc/honeypress/features/feature-slider-section.php:15
|
331 |
#: inc/spicepress/features/feature-slider-section.php:15
|
332 |
msgid "Enable slider"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/cloudpress/features/feature-slider-section.php:35
|
336 |
#: inc/honeypress/features/feature-slider-section.php:35
|
337 |
#: inc/honeypress/features/feature-testimonial-section.php:60
|
338 |
#: inc/innofit/customizer/about-section.php:73
|
345 |
msgid "Image"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/cloudpress/features/feature-slider-section.php:50
|
349 |
#: inc/honeypress/features/feature-slider-section.php:50
|
350 |
#: inc/innofit/customizer/slider-section.php:47
|
351 |
#: inc/spicepress/features/feature-slider-section.php:50
|
354 |
"overlay"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/cloudpress/features/feature-slider-section.php:63
|
358 |
#: inc/honeypress/features/feature-slider-section.php:63
|
359 |
#: inc/innofit/customizer/slider-section.php:60
|
360 |
#: inc/spicepress/features/feature-slider-section.php:63
|
363 |
"color"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: inc/cloudpress/features/feature-slider-section.php:71
|
367 |
+
#: inc/cloudpress/sections/cloudpress-slider-section.php:10
|
368 |
msgid ""
|
369 |
+
"Start Building Your "
|
370 |
+
"Website"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/cloudpress/features/feature-slider-section.php:84
|
374 |
#: inc/honeypress/features/feature-slider-section.php:84
|
375 |
msgid ""
|
376 |
"Sea summo mazim ex, ea "
|
381 |
"sea summo mazim ex."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/cloudpress/features/feature-slider-section.php:97
|
385 |
+
#: inc/cloudpress/sections/cloudpress-slider-section.php:13
|
386 |
#: inc/honeypress/features/feature-slider-section.php:97
|
387 |
#: inc/honeypress/sections/honeypress-slider-section.php:13
|
388 |
#: inc/innofit/sections/innofit-news-section.php:97
|
392 |
msgid "Read More"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: inc/cloudpress/features/feature-slider-section.php:102
|
396 |
#: inc/honeypress/features/feature-slider-section.php:102
|
397 |
#: inc/innofit/customizer/callout-section.php:60
|
398 |
#: inc/innofit/customizer/slider-section.php:98
|
400 |
msgid "Button Text"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: inc/cloudpress/features/feature-slider-section.php:127
|
404 |
+
#: inc/cloudpress/features/feature-slider-section.php:164
|
405 |
+
#: inc/honeypress/features/feature-slider-section.php:127
|
406 |
+
#: inc/honeypress/features/feature-slider-section.php:164
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
#: inc/innofit/customizer/callout-section.php:90
|
408 |
#: inc/innofit/customizer/slider-section.php:123
|
409 |
#: inc/spicepress/features/feature-slider-section.php:126
|
411 |
"Open link in new tab"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/cloudpress/features/feature-slider-section.php:134
|
415 |
+
#: inc/cloudpress/sections/cloudpress-slider-section.php:17
|
416 |
+
#: inc/honeypress/features/feature-slider-section.php:134
|
417 |
#: inc/honeypress/sections/honeypress-slider-section.php:17
|
418 |
msgid "About Us"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/cloudpress/features/feature-slider-section.php:139
|
422 |
+
#: inc/honeypress/features/feature-slider-section.php:139
|
423 |
msgid "Button 2 Text"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/cloudpress/features/feature-slider-section.php:151
|
427 |
+
#: inc/honeypress/features/feature-slider-section.php:151
|
428 |
msgid "Button 2 Link"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:101
|
432 |
+
msgid "1250"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:102
|
436 |
+
msgid "Our Projects"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:109
|
440 |
+
msgid "879"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:117
|
444 |
+
msgid "687"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:118
|
448 |
+
msgid "Business Partners"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:125
|
452 |
+
msgid "3578"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: inc/cloudpress/sections/cloudpress-funfact-section.php:126
|
456 |
+
msgid "Clients Review"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: inc/cloudpress/sections/cloudpress-service-section.php:161
|
460 |
+
#: inc/honeypress/sections/honeypress-service-section.php:158
|
461 |
+
#: inc/spicepress/sections/spicepress-features-section.php:191
|
462 |
+
msgid "Responsive Design"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: inc/cloudpress/sections/cloudpress-service-section.php:169
|
466 |
+
#: inc/honeypress/sections/honeypress-service-section.php:166
|
467 |
+
#: inc/spicepress/sections/spicepress-features-section.php:183
|
468 |
+
msgid "Multi-Purpose"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: inc/cloudpress/sections/cloudpress-service-section.php:177
|
472 |
+
#: inc/honeypress/sections/honeypress-service-section.php:174
|
473 |
+
#: inc/innofit/customizer.php:29
|
474 |
+
#: inc/innofit/sections/innofit-services-section.php:30
|
475 |
+
msgid "Powerful Options"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: inc/cloudpress/sections/cloudpress-slider-section.php:12
|
479 |
+
#: inc/honeypress/sections/honeypress-slider-section.php:12
|
480 |
+
msgid ""
|
481 |
+
"Sea summo mazim ex, ea "
|
482 |
+
"errem eleifend "
|
483 |
+
"definitionem vim. Ut nec "
|
484 |
+
"hinc dolor possim <br> "
|
485 |
+
"mei ludus efficiendi ei "
|
486 |
+
"sea summo mazim ex."
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: inc/feedback-pop-up-form.php:29
|
490 |
+
msgid "Quick Feedback"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: inc/feedback-pop-up-form.php:30
|
494 |
+
msgid ""
|
495 |
+
"Your feedback is "
|
496 |
+
"valuable to us."
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: inc/feedback-pop-up-form.php:42
|
500 |
+
msgid ""
|
501 |
+
"I found a better theme"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/feedback-pop-up-form.php:48
|
505 |
+
msgid ""
|
506 |
+
"It's a temporary "
|
507 |
+
"deactivation. I'm just "
|
508 |
+
"debugging an issue."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: inc/feedback-pop-up-form.php:54
|
512 |
+
msgid ""
|
513 |
+
"It does not have a "
|
514 |
+
"feature I require. If "
|
515 |
+
"possible, mention them "
|
516 |
+
"in text box."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: inc/feedback-pop-up-form.php:60
|
520 |
+
msgid "Others"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: inc/feedback-pop-up-form.php:64
|
524 |
+
msgid ""
|
525 |
+
"Your feedback means a "
|
526 |
+
"lot to us"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: inc/feedback-pop-up-form.php:72
|
530 |
+
#: inc/innofit-feedback-pop-up-form.php:74
|
531 |
+
msgid "Submit Feedback"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: inc/feedback-pop-up-form.php:80
|
535 |
+
#: inc/innofit-feedback-pop-up-form.php:82
|
536 |
+
msgid "Skip & Deactive"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: inc/feedback-pop-up-form.php:104
|
540 |
+
msgid ""
|
541 |
+
"Now create your own "
|
542 |
+
"JotForm - It's free!"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: inc/feedback-pop-up-form.php:106
|
546 |
+
msgid ""
|
547 |
+
"Create your own JotForm"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: inc/honeypress/features/feature-slider-section.php:71
|
551 |
+
#: inc/honeypress/sections/honeypress-slider-section.php:10
|
552 |
+
msgid ""
|
553 |
+
"We Provide Quality "
|
554 |
+
"Business Solution"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
#: inc/honeypress/features/feature-testimonial-section.php:8
|
558 |
#: inc/spicepress/features/feature-testimonial-section.php:8
|
559 |
msgid ""
|
601 |
"pariatur."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: inc/honeypress/features/feature-testimonial-section.php:85
|
605 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:17
|
606 |
#: inc/spicepress/features/feature-testimonial-section.php:123
|
607 |
#: inc/spicepress/sections/spicepress-testimonail-section.php:26
|
608 |
msgid "Alice Culan"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: inc/honeypress/features/feature-testimonial-section.php:97
|
612 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:18
|
613 |
#: inc/innofit/customizer.php:203
|
614 |
#: inc/innofit/sections/innofit-team-section.php:183
|
615 |
+
#: inc/spicepress/features/feature-testimonial-section.php:136
|
616 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:27
|
617 |
+
msgid "UI Developer"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: inc/honeypress/features/feature-testimonial-section.php:102
|
621 |
+
#: inc/spicepress/features/feature-testimonial-section.php:141
|
622 |
+
msgid "Designation"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
msgstr ""
|
624 |
|
625 |
#: inc/innofit/customizer.php:11
|
757 |
msgid "Buy Innofit"
|
758 |
msgstr ""
|
759 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
760 |
#: inc/innofit/customizer/contact-section.php:13
|
761 |
msgid ""
|
762 |
"Enable Contact form "
|
764 |
msgstr ""
|
765 |
|
766 |
#: inc/innofit/customizer/contact-section.php:28
|
|
|
|
|
767 |
#: inc/innofit/customizer/subscriber-section.php:71
|
768 |
#: inc/innofit/customizer/testimonial-section.php:27
|
769 |
#: inc/spicepress/features/feature-testimonial-section.php:31
|
792 |
"Contact form title one"
|
793 |
msgstr ""
|
794 |
|
|
|
|
|
|
|
|
|
|
|
795 |
#: inc/innofit/customizer/contact-section.php:81
|
796 |
msgid ""
|
797 |
"Contact form title two"
|
820 |
#: inc/innofit/sections/innofit-contact-section.php:47
|
821 |
msgid ""
|
822 |
"Porterfield 508 Virginia "
|
823 |
+
"Street Chicago, IL 60653 "
|
824 |
+
"(USA)"
|
825 |
msgstr ""
|
826 |
|
827 |
#: inc/innofit/customizer/contact-section.php:112
|
833 |
#: inc/innofit/sections/innofit-contact-section.php:47
|
834 |
msgid ""
|
835 |
"Mobile: (+91) 90 1900 - "
|
836 |
+
"6886 Hotline: 1800 6886)"
|
|
|
837 |
msgstr ""
|
838 |
|
839 |
#: inc/innofit/customizer/contact-section.php:112
|
856 |
"Contact Info content"
|
857 |
msgstr ""
|
858 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
#: inc/innofit/customizer/news-section.php:4
|
860 |
msgid ""
|
861 |
"Latest News settings"
|
882 |
"section"
|
883 |
msgstr ""
|
884 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
885 |
#: inc/innofit/customizer/services-section.php:4
|
886 |
msgid "Services settings"
|
887 |
msgstr ""
|
926 |
msgid "Read more"
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
929 |
#: inc/innofit/customizer/subscriber-section.php:24
|
930 |
msgid "General Settings"
|
931 |
msgstr ""
|
1008 |
"To add More Team? Then"
|
1009 |
msgstr ""
|
1010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
#: inc/innofit/customizer/testimonial-section.php:3
|
1012 |
msgid ""
|
1013 |
"Testimonials settings"
|
1086 |
"Our amazing products"
|
1087 |
msgstr ""
|
1088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
#: inc/innofit/default-pages/home-custom-menu.php:12
|
1090 |
msgid "Home"
|
1091 |
msgstr ""
|
1106 |
msgid "Contact"
|
1107 |
msgstr ""
|
1108 |
|
|
|
|
|
|
|
|
|
1109 |
#: inc/innofit/sections/innofit-wooproduct-section.php:56
|
1110 |
msgid "On Sale!"
|
1111 |
msgstr ""
|
1119 |
msgid "out of 5"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: inc/spicepress/features/feature-portfolio-section.php:6
|
1123 |
+
msgid "Portfolio settings"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: inc/spicepress/features/feature-portfolio-section.php:14
|
1127 |
+
msgid ""
|
1128 |
+
"Enable Home Portfolio "
|
1129 |
+
"section"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
#: inc/spicepress/features/feature-portfolio-section.php:27
|
1133 |
#: inc/spicepress/sections/spicepress-portfolio-section.php:9
|
1134 |
msgid "Our Portfolio"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: spicethemes
|
|
3 |
Tags: widget, admin, widgets
|
4 |
Requires at least: 3.3+
|
5 |
Tested up to: 5.2.3
|
6 |
-
Stable tag: 1.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -169,4 +169,12 @@ This plugin create repeater controls in the customizer settings allowing you to
|
|
169 |
2. Modify code in service section
|
170 |
|
171 |
= 1.2 =
|
172 |
-
1. Added Cloudpress theme code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Tags: widget, admin, widgets
|
4 |
Requires at least: 3.3+
|
5 |
Tested up to: 5.2.3
|
6 |
+
Stable tag: 1.2.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
169 |
2. Modify code in service section
|
170 |
|
171 |
= 1.2 =
|
172 |
+
1. Added Cloudpress theme code.
|
173 |
+
|
174 |
+
= 1.2.1 =
|
175 |
+
1. Added Cloudpress child theme name.
|
176 |
+
2. Updated pot file.
|
177 |
+
|
178 |
+
= 1.2.2 =
|
179 |
+
1. Lock icons removed for the Innofit theme.
|
180 |
+
2. Upgrade to Plus buttom removed from the customizer settings.
|
spicebox.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
Plugin Name: SpiceBox
|
4 |
Plugin URI:
|
5 |
Description: Enhances SpiceThemes with extra functionality.
|
6 |
-
Version: 1.2
|
7 |
Author: Spicethemes
|
8 |
-
Author URI: https://
|
9 |
Text Domain: spicebox
|
10 |
*/
|
11 |
define( 'SPICEB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
@@ -35,7 +35,7 @@ function spiceb_activate() {
|
|
35 |
require_once('inc/honeypress/sections/honeypress-testimonail-section.php');
|
36 |
require_once('inc/honeypress/customizer.php');
|
37 |
}
|
38 |
-
if ( 'CloudPress' == $theme->name ){
|
39 |
require_once('inc/cloudpress/features/feature-slider-section.php');
|
40 |
require_once('inc/cloudpress/features/feature-cta-section.php');
|
41 |
require_once('inc/cloudpress/features/feature-service-section.php');
|
@@ -72,30 +72,30 @@ function spiceb_activate() {
|
|
72 |
|
73 |
if(!empty(get_theme_mod('innofit_testimonial_content')))
|
74 |
{
|
75 |
-
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct'
|
76 |
}
|
77 |
else
|
78 |
{
|
79 |
-
$sections_customizer_data = array('slider','services','about','team','news','callout','contact','subscriber','wooproduct'
|
80 |
}
|
81 |
|
82 |
if(!empty(get_theme_mod('home_call_out_title')))
|
83 |
{
|
84 |
-
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct'
|
85 |
}
|
86 |
else
|
87 |
{
|
88 |
-
$sections_customizer_data = array('slider','services','about','team','news','contact','subscriber','wooproduct'
|
89 |
}
|
90 |
|
91 |
|
92 |
if(!empty(get_theme_mod('innofit_subscribe_title')))
|
93 |
{
|
94 |
-
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct'
|
95 |
}
|
96 |
else
|
97 |
{
|
98 |
-
$sections_customizer_data = array('slider','services','about','team','news','contact','wooproduct'
|
99 |
}
|
100 |
|
101 |
|
@@ -111,10 +111,7 @@ function spiceb_activate() {
|
|
111 |
require_once('inc/innofit/customizer/'.$section_customizer_data.'-section.php');
|
112 |
}
|
113 |
}
|
114 |
-
|
115 |
-
require_once('inc/innofit/customizer/customizer_typography.php');
|
116 |
-
require_once('inc/innofit/customizer/customizer_layout_manager.php');
|
117 |
-
require_once('inc/innofit/customizer/customizer_color_back_settings.php');
|
118 |
|
119 |
}
|
120 |
add_action( 'customize_register', 'spiceb_innofit_customize_register' );
|
@@ -184,7 +181,7 @@ $item_details_page = get_option('item_details_page');
|
|
184 |
}
|
185 |
|
186 |
//CloudPress
|
187 |
-
if ( 'CloudPress' == $theme->name ){
|
188 |
register_activation_hook( __FILE__, 'spiceb_cloudpress_install_function');
|
189 |
function spiceb_cloudpress_install_function()
|
190 |
{
|
3 |
Plugin Name: SpiceBox
|
4 |
Plugin URI:
|
5 |
Description: Enhances SpiceThemes with extra functionality.
|
6 |
+
Version: 1.2.2
|
7 |
Author: Spicethemes
|
8 |
+
Author URI: https://spicethemes.com
|
9 |
Text Domain: spicebox
|
10 |
*/
|
11 |
define( 'SPICEB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
35 |
require_once('inc/honeypress/sections/honeypress-testimonail-section.php');
|
36 |
require_once('inc/honeypress/customizer.php');
|
37 |
}
|
38 |
+
if ( 'CloudPress' == $theme->name || 'CloudPress Child' == $theme->name){
|
39 |
require_once('inc/cloudpress/features/feature-slider-section.php');
|
40 |
require_once('inc/cloudpress/features/feature-cta-section.php');
|
41 |
require_once('inc/cloudpress/features/feature-service-section.php');
|
72 |
|
73 |
if(!empty(get_theme_mod('innofit_testimonial_content')))
|
74 |
{
|
75 |
+
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct');
|
76 |
}
|
77 |
else
|
78 |
{
|
79 |
+
$sections_customizer_data = array('slider','services','about','team','news','callout','contact','subscriber','wooproduct');
|
80 |
}
|
81 |
|
82 |
if(!empty(get_theme_mod('home_call_out_title')))
|
83 |
{
|
84 |
+
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct');
|
85 |
}
|
86 |
else
|
87 |
{
|
88 |
+
$sections_customizer_data = array('slider','services','about','team','news','contact','subscriber','wooproduct');
|
89 |
}
|
90 |
|
91 |
|
92 |
if(!empty(get_theme_mod('innofit_subscribe_title')))
|
93 |
{
|
94 |
+
$sections_customizer_data = array('slider','services','about','testimonial','team','news','callout','contact','subscriber','wooproduct');
|
95 |
}
|
96 |
else
|
97 |
{
|
98 |
+
$sections_customizer_data = array('slider','services','about','team','news','contact','wooproduct');
|
99 |
}
|
100 |
|
101 |
|
111 |
require_once('inc/innofit/customizer/'.$section_customizer_data.'-section.php');
|
112 |
}
|
113 |
}
|
114 |
+
$wp_customize->remove_control('header_textcolor');
|
|
|
|
|
|
|
115 |
|
116 |
}
|
117 |
add_action( 'customize_register', 'spiceb_innofit_customize_register' );
|
181 |
}
|
182 |
|
183 |
//CloudPress
|
184 |
+
if ( 'CloudPress' == $theme->name || 'CloudPress Child' == $theme->name){
|
185 |
register_activation_hook( __FILE__, 'spiceb_cloudpress_install_function');
|
186 |
function spiceb_cloudpress_install_function()
|
187 |
{
|