Version Description
- Added homepage sections for SpicePress Dark child theme.
- Added homepage sections for Spice Software Dark child theme.
- Compressed all images and removed the unnecessary images.
- Fixed container setting issue with video slider in HoneyPress theme.
=====External resources=====
Alpha color picker Control: Copyright: (c) 2016 Codeinwp cristian-ungureanu License: MIT License Source: https://github.com/Codeinwp/customizer-controls/tree/master/customizer-alpha-color-picker
Repeater Control: Copyright: (c) 2016 Codeinwp cristian-ungureanu License: MIT license Source: https://github.com/Codeinwp/customizer-controls/tree/master/customizer-repeater
Custom control - Image Radio Button Custom Control Copyright: Anthony Hortin License: GNU General Public License v2 or later Source: https://github.com/maddisondesigns/customizer-custom-controls
==========
Download this release
Release Info
Developer | spicethemes |
Plugin | Spice Box |
Version | 1.8 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.8
- inc/busicare/images/testimonial/testimonial-bg.jpg +0 -0
- inc/controls/customizer-repeater/js/customizer_repeater.js +1 -1
- inc/honeypress/images/slider/honeypress-dark.jpg +0 -0
- inc/honeypress/images/slider/slider.jpg +0 -0
- inc/honeypress/images/testimonial/user1.jpg +0 -0
- inc/honeypress/sections/honeypress-service-section.php +1 -1
- inc/honeypress/sections/honeypress-slider-section.php +6 -5
- inc/spice-software/customizer/slider-section.php +10 -4
- inc/spice-software/customizer/team-section.php +22 -4
- inc/spice-software/customizer/testimonial-section.php +43 -0
- inc/spice-software/default-pages/upload-media.php +9 -1
- inc/spice-software/images/spice-software-dark-logo.png +0 -0
- inc/spice-software/images/testimonial/bg-img.jpg +0 -0
- inc/spice-software/sections/spice-software-news-section.php +100 -16
- inc/spice-software/sections/spice-software-services-section.php +10 -2
- inc/spice-software/sections/spice-software-slider-section.php +7 -2
- inc/spice-software/sections/spice-software-team-section.php +58 -2
- inc/spice-software/sections/spice-software-testimonial-section.php +79 -45
- inc/spicepress/default-pages/upload-media.php +19 -1
- inc/spicepress/features/feature-service-section.php +2 -2
- inc/spicepress/features/feature-testimonial-section.php +10 -2
- inc/spicepress/images/portfolio/spicepress-dark.png +0 -0
- inc/spicepress/images/slider/slider.jpg +0 -0
- inc/spicepress/images/testimonial/testi-2.jpg +0 -0
- inc/spicepress/images/testimonial/testimonial-bg.jpg +0 -0
- inc/spicepress/sections/spicepress-features-section.php +5 -2
- inc/spicepress/sections/spicepress-testimonail-section.php +79 -2
- languages/spicebox.pot +90 -78
- readme.txt +13 -2
- spicebox.php +7 -7
inc/busicare/images/testimonial/testimonial-bg.jpg
CHANGED
Binary file
|
inc/controls/customizer-repeater/js/customizer_repeater.js
CHANGED
@@ -160,7 +160,7 @@ function customizer_repeater_refresh_general_control_values() {
|
|
160 |
'text': escapeHtml(text),
|
161 |
'link': link,
|
162 |
'image_url': (choice === 'customizer_repeater_none' ? '' : image_url),
|
163 |
-
'
|
164 |
'choice': choice,
|
165 |
'title': escapeHtml(title),
|
166 |
'subtitle': escapeHtml(subtitle),
|
160 |
'text': escapeHtml(text),
|
161 |
'link': link,
|
162 |
'image_url': (choice === 'customizer_repeater_none' ? '' : image_url),
|
163 |
+
'image_url2': (choice === 'customizer_repeater_none' ? '' : image_url2),
|
164 |
'choice': choice,
|
165 |
'title': escapeHtml(title),
|
166 |
'subtitle': escapeHtml(subtitle),
|
inc/honeypress/images/slider/honeypress-dark.jpg
CHANGED
Binary file
|
inc/honeypress/images/slider/slider.jpg
CHANGED
Binary file
|
inc/honeypress/images/testimonial/user1.jpg
CHANGED
Binary file
|
inc/honeypress/sections/honeypress-service-section.php
CHANGED
@@ -220,6 +220,6 @@ function spiceb_honeypress_get_service_default() {
|
|
220 |
}
|
221 |
|
222 |
if (function_exists('spiceb_honeypress_service')) {
|
223 |
-
$section_priority = apply_filters('honeypress_section_priority',
|
224 |
add_action('spiceb_honeypress_sections', 'spiceb_honeypress_service', absint($section_priority));
|
225 |
}
|
220 |
}
|
221 |
|
222 |
if (function_exists('spiceb_honeypress_service')) {
|
223 |
+
$section_priority = apply_filters('honeypress_section_priority', 12, 'spiceb_honeypress_service');
|
224 |
add_action('spiceb_honeypress_sections', 'spiceb_honeypress_service', absint($section_priority));
|
225 |
}
|
inc/honeypress/sections/honeypress-slider-section.php
CHANGED
@@ -62,13 +62,13 @@ if ( ! function_exists( 'spiceb_honeypress_slider' ) ) :
|
|
62 |
|
63 |
<div class="btn-combo mt-5">
|
64 |
<?php if(!empty($home_slider_btn_txt)):?>
|
65 |
-
<a <?php if($home_slider_btn_link) {
|
66 |
<?php if($home_slider_btn_target) { ?> target="_blank" <?php } ?> class="btn-small btn-default">
|
67 |
<?php if($home_slider_btn_txt) { echo $home_slider_btn_txt; } ?></a>
|
68 |
<?php endif;?>
|
69 |
<?php
|
70 |
if(!empty($home_slider_btn_txt2)):?>
|
71 |
-
<a <?php if($home_slider_btn_link2) {
|
72 |
<?php if($home_slider_btn_target2) { ?> target="_blank" <?php } ?> class="btn-small btn-light about-tbn">
|
73 |
<?php if($home_slider_btn_txt2) { echo $home_slider_btn_txt2; } ?></a>
|
74 |
<?php endif;?>
|
@@ -106,18 +106,18 @@ if ( ! function_exists( 'spiceb_honeypress_slider' ) ) :
|
|
106 |
|
107 |
<div class="btn-combo mt-5">
|
108 |
<?php if(!empty($home_slider_btn_txt)):?>
|
109 |
-
<a <?php if($home_slider_btn_link) {
|
110 |
<?php if($home_slider_btn_target) { ?> target="_blank" <?php } ?> class="btn-small btn-default">
|
111 |
<?php if($home_slider_btn_txt) { echo $home_slider_btn_txt; } ?></a>
|
112 |
<?php endif;?>
|
113 |
<?php
|
114 |
if(!empty($home_slider_btn_txt2)):?>
|
115 |
-
<a
|
116 |
<?php if($home_slider_btn_target2) { ?> target="_blank" <?php } ?> class="btn-small btn-light about-tbn">
|
117 |
<?php if($home_slider_btn_txt2) { echo $home_slider_btn_txt2; } ?></a>
|
118 |
<?php endif;?>
|
119 |
</div>
|
120 |
-
|
121 |
</div>
|
122 |
</div>
|
123 |
</div>
|
@@ -125,6 +125,7 @@ if ( ! function_exists( 'spiceb_honeypress_slider' ) ) :
|
|
125 |
<?php
|
126 |
}
|
127 |
}
|
|
|
128 |
endif;
|
129 |
if ( function_exists( 'spiceb_honeypress_slider' ) ) {
|
130 |
$section_priority = apply_filters( 'honeypress_section_priority', 11, 'spiceb_honeypress_slider' );
|
62 |
|
63 |
<div class="btn-combo mt-5">
|
64 |
<?php if(!empty($home_slider_btn_txt)):?>
|
65 |
+
<a <?php ?> href="<?php if($home_slider_btn_link) {echo $home_slider_btn_link; } ?>"
|
66 |
<?php if($home_slider_btn_target) { ?> target="_blank" <?php } ?> class="btn-small btn-default">
|
67 |
<?php if($home_slider_btn_txt) { echo $home_slider_btn_txt; } ?></a>
|
68 |
<?php endif;?>
|
69 |
<?php
|
70 |
if(!empty($home_slider_btn_txt2)):?>
|
71 |
+
<a <?php ?> href="<?php if($home_slider_btn_link2) {echo $home_slider_btn_link2; } ?>"
|
72 |
<?php if($home_slider_btn_target2) { ?> target="_blank" <?php } ?> class="btn-small btn-light about-tbn">
|
73 |
<?php if($home_slider_btn_txt2) { echo $home_slider_btn_txt2; } ?></a>
|
74 |
<?php endif;?>
|
106 |
|
107 |
<div class="btn-combo mt-5">
|
108 |
<?php if(!empty($home_slider_btn_txt)):?>
|
109 |
+
<a <?php ?> href="<?php if($home_slider_btn_link) {echo $home_slider_btn_link; } ?>"
|
110 |
<?php if($home_slider_btn_target) { ?> target="_blank" <?php } ?> class="btn-small btn-default">
|
111 |
<?php if($home_slider_btn_txt) { echo $home_slider_btn_txt; } ?></a>
|
112 |
<?php endif;?>
|
113 |
<?php
|
114 |
if(!empty($home_slider_btn_txt2)):?>
|
115 |
+
<a href="<?php if($home_slider_btn_link2) { echo $home_slider_btn_link2; } ?>"
|
116 |
<?php if($home_slider_btn_target2) { ?> target="_blank" <?php } ?> class="btn-small btn-light about-tbn">
|
117 |
<?php if($home_slider_btn_txt2) { echo $home_slider_btn_txt2; } ?></a>
|
118 |
<?php endif;?>
|
119 |
</div>
|
120 |
+
|
121 |
</div>
|
122 |
</div>
|
123 |
</div>
|
125 |
<?php
|
126 |
}
|
127 |
}
|
128 |
+
}
|
129 |
endif;
|
130 |
if ( function_exists( 'spiceb_honeypress_slider' ) ) {
|
131 |
$section_priority = apply_filters( 'honeypress_section_priority', 11, 'spiceb_honeypress_slider' );
|
inc/spice-software/customizer/slider-section.php
CHANGED
@@ -77,13 +77,19 @@
|
|
77 |
'active_callback' => 'spiceb_spice_software_slider_callback'
|
78 |
|
79 |
));
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
'default' => SPICEB_PLUGIN_URL . '/inc/spice-software/images/slider/slider.jpg',
|
84 |
'sanitize_callback' => 'esc_url_raw',
|
85 |
));
|
86 |
-
|
87 |
$wp_customize->add_control(
|
88 |
new WP_Customize_Image_Control(
|
89 |
$wp_customize,
|
77 |
'active_callback' => 'spiceb_spice_software_slider_callback'
|
78 |
|
79 |
));
|
80 |
+
$theme=wp_get_theme();
|
81 |
+
if('Spice Software Dark'==$theme->name):
|
82 |
+
//Slider Image
|
83 |
+
$wp_customize->add_setting('home_slider_image', array(
|
84 |
+
'default' => SPICE_SOFTWARE_DARK_TEMPLATE_DIR_URI .'/assets/images/slider.jpg',
|
85 |
+
'sanitize_callback' => 'esc_url_raw',
|
86 |
+
));
|
87 |
+
else:
|
88 |
+
$wp_customize->add_setting('home_slider_image', array(
|
89 |
'default' => SPICEB_PLUGIN_URL . '/inc/spice-software/images/slider/slider.jpg',
|
90 |
'sanitize_callback' => 'esc_url_raw',
|
91 |
));
|
92 |
+
endif;
|
93 |
$wp_customize->add_control(
|
94 |
new WP_Customize_Image_Control(
|
95 |
$wp_customize,
|
inc/spice-software/customizer/team-section.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
//Team Section
|
4 |
$wp_customize->add_section('spice_software_team_section', array(
|
5 |
'title' => esc_html__('Team Settings', 'spicebox'),
|
@@ -50,7 +50,7 @@ if (class_exists('Spicebox_Repeater')) {
|
|
50 |
'spice_software_team_content', array(
|
51 |
)
|
52 |
);
|
53 |
-
|
54 |
$wp_customize->add_control(
|
55 |
new Spicebox_Repeater(
|
56 |
$wp_customize, 'spice_software_team_content', array(
|
@@ -64,14 +64,32 @@ if (class_exists('Spicebox_Repeater')) {
|
|
64 |
'customizer_repeater_designation_control' => true,
|
65 |
'customizer_repeater_image_control' => true,
|
66 |
'customizer_repeater_image_control2' => true,
|
67 |
-
// 'customizer_repeater_checkbox_control' => true,
|
68 |
'customizer_repeater_repeater_control' => true,
|
69 |
'active_callback' => 'spiceb_spice_software_team_callback'
|
70 |
)
|
71 |
)
|
72 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
74 |
-
|
75 |
// animation speed
|
76 |
$wp_customize->add_setting('team_animation_speed', array('default' => 3000));
|
77 |
$wp_customize->add_control('team_animation_speed',
|
1 |
<?php
|
2 |
+
$theme=wp_get_theme();
|
3 |
//Team Section
|
4 |
$wp_customize->add_section('spice_software_team_section', array(
|
5 |
'title' => esc_html__('Team Settings', 'spicebox'),
|
50 |
'spice_software_team_content', array(
|
51 |
)
|
52 |
);
|
53 |
+
if('Spice Software Dark'!=$theme->name):
|
54 |
$wp_customize->add_control(
|
55 |
new Spicebox_Repeater(
|
56 |
$wp_customize, 'spice_software_team_content', array(
|
64 |
'customizer_repeater_designation_control' => true,
|
65 |
'customizer_repeater_image_control' => true,
|
66 |
'customizer_repeater_image_control2' => true,
|
|
|
67 |
'customizer_repeater_repeater_control' => true,
|
68 |
'active_callback' => 'spiceb_spice_software_team_callback'
|
69 |
)
|
70 |
)
|
71 |
);
|
72 |
+
else:
|
73 |
+
$wp_customize->add_control(
|
74 |
+
new Spicebox_Repeater(
|
75 |
+
$wp_customize, 'spice_software_team_content', array(
|
76 |
+
'label' => esc_html__('Team content', 'spicebox'),
|
77 |
+
'section' => 'spice_software_team_section',
|
78 |
+
'priority' => 15,
|
79 |
+
'add_field_label' => esc_html__('Add new Team Member', 'spicebox'),
|
80 |
+
'item_name' => esc_html__('Team Member', 'spicebox'),
|
81 |
+
'customizer_repeater_member_name_control' => true,
|
82 |
+
'customizer_repeater_text_control' => true,
|
83 |
+
'customizer_repeater_designation_control' => true,
|
84 |
+
'customizer_repeater_image_control' => true,
|
85 |
+
'customizer_repeater_repeater_control' => true,
|
86 |
+
'active_callback' => 'spiceb_spice_software_team_callback'
|
87 |
+
)
|
88 |
+
)
|
89 |
+
);
|
90 |
+
endif;
|
91 |
}
|
92 |
+
|
93 |
// animation speed
|
94 |
$wp_customize->add_setting('team_animation_speed', array('default' => 3000));
|
95 |
$wp_customize->add_control('team_animation_speed',
|
inc/spice-software/customizer/testimonial-section.php
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?php
|
|
|
2 |
/* Testimonial Section */
|
3 |
$wp_customize->add_section('testimonial_section', array(
|
4 |
'title' => esc_html__('Testimonials Settings', 'spicebox'),
|
@@ -64,7 +65,49 @@
|
|
64 |
'active_callback' => 'spiceb_spice_software_testimonial_callback'
|
65 |
)));
|
66 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
//Navigation Type
|
69 |
$wp_customize->add_setting('testimonial_nav_style', array('default' => 'bullets'));
|
70 |
$wp_customize->add_control('testimonial_nav_style', array(
|
1 |
<?php
|
2 |
+
$theme=wp_get_theme();
|
3 |
/* Testimonial Section */
|
4 |
$wp_customize->add_section('testimonial_section', array(
|
5 |
'title' => esc_html__('Testimonials Settings', 'spicebox'),
|
65 |
'active_callback' => 'spiceb_spice_software_testimonial_callback'
|
66 |
)));
|
67 |
}
|
68 |
+
if('Spice Software Dark'==$theme->name):
|
69 |
+
//Testimonial Background Image
|
70 |
+
$wp_customize->add_setting('testimonial_callout_background', array(
|
71 |
+
'default' => SPICEB_PLUGIN_URL.'/inc/spice-software/images/testimonial/bg-img.jpg',
|
72 |
+
'sanitize_callback' => 'esc_url_raw',
|
73 |
+
));
|
74 |
+
|
75 |
+
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'testimonial_callout_background', array(
|
76 |
+
'label' => esc_html__('Background Image', 'spice-software-plus'),
|
77 |
+
'section' => 'testimonial_section',
|
78 |
+
'settings' => 'testimonial_callout_background',
|
79 |
+
'active_callback' => 'spiceb_spice_software_testimonial_callback'
|
80 |
+
|
81 |
+
)));
|
82 |
|
83 |
+
// Image overlay
|
84 |
+
$wp_customize->add_setting('testimonial_image_overlay', array(
|
85 |
+
'default' => true,
|
86 |
+
'sanitize_callback' => 'sanitize_text_field',
|
87 |
+
));
|
88 |
+
|
89 |
+
$wp_customize->add_control('testimonial_image_overlay', array(
|
90 |
+
'label' => esc_html__('Enable testimonial image overlay', 'spice-software-plus'),
|
91 |
+
'section' => 'testimonial_section',
|
92 |
+
'type' => 'checkbox',
|
93 |
+
'active_callback' => 'spiceb_spice_software_testimonial_callback'
|
94 |
+
));
|
95 |
+
|
96 |
+
|
97 |
+
//Testimonial Background Overlay Color
|
98 |
+
$wp_customize->add_setting('testimonial_overlay_section_color', array(
|
99 |
+
'sanitize_callback' => 'sanitize_text_field',
|
100 |
+
'default' => 'rgba(1, 7, 12, 0.8)',
|
101 |
+
));
|
102 |
+
|
103 |
+
$wp_customize->add_control(new SpiceBox_Customize_Alpha_Color_Control($wp_customize, 'testimonial_overlay_section_color', array(
|
104 |
+
'label' => esc_html__('Testimonial image overlay color', 'spice-software-plus'),
|
105 |
+
'palette' => true,
|
106 |
+
'section' => 'testimonial_section',
|
107 |
+
'active_callback' => 'spiceb_spice_software_testimonial_callback',
|
108 |
+
)
|
109 |
+
));
|
110 |
+
endif;
|
111 |
//Navigation Type
|
112 |
$wp_customize->add_setting('testimonial_nav_style', array('default' => 'bullets'));
|
113 |
$wp_customize->add_control('testimonial_nav_style', array(
|
inc/spice-software/default-pages/upload-media.php
CHANGED
@@ -1,9 +1,17 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
$ImagePath = SPICEB_PLUGIN_URL . 'inc/spice-software/images';
|
|
|
|
|
|
|
|
|
|
|
4 |
$images = array(
|
5 |
$ImagePath . '/logo.png',
|
6 |
);
|
|
|
|
|
|
|
7 |
foreach ($images as $name) {
|
8 |
$filename = basename($name);
|
9 |
$upload_file = wp_upload_bits($filename, null, file_get_contents($name));
|
1 |
<?php
|
2 |
+
$theme=wp_get_theme();
|
3 |
$ImagePath = SPICEB_PLUGIN_URL . 'inc/spice-software/images';
|
4 |
+
if('Spice Software Dark'==$theme->name):
|
5 |
+
$images = array(
|
6 |
+
$ImagePath . '/spice-software-dark-logo.png',
|
7 |
+
);
|
8 |
+
else:
|
9 |
$images = array(
|
10 |
$ImagePath . '/logo.png',
|
11 |
);
|
12 |
+
endif;
|
13 |
+
|
14 |
+
|
15 |
foreach ($images as $name) {
|
16 |
$filename = basename($name);
|
17 |
$upload_file = wp_upload_bits($filename, null, file_get_contents($name));
|
inc/spice-software/images/spice-software-dark-logo.png
ADDED
Binary file
|
inc/spice-software/images/testimonial/bg-img.jpg
ADDED
Binary file
|
inc/spice-software/sections/spice-software-news-section.php
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
/* Call the action for news section */
|
3 |
add_action('spiceb_spice_software_news_action','spiceb_spice_software_news_section');
|
4 |
/* Function for news section*/
|
5 |
-
function spiceb_spice_software_news_section()
|
6 |
-
{
|
7 |
$spice_software_index_news_link = get_theme_mod('home_blog_more_btn_link', __('#', 'spicebox'));
|
8 |
$spice_software_index_more_btn = get_theme_mod('home_blog_more_btn', __('Cras Vitae', 'spicebox'));
|
9 |
if (empty($spice_software_index_news_link)) {
|
10 |
$spice_software_index_news_link = '#';
|
11 |
}
|
12 |
-
if(get_theme_mod('latest_news_section_enable',true)==true)
|
|
|
13 |
<!-- Latest News section -->
|
14 |
<section class="section-space blog home-blog bg-default">
|
15 |
<div class="container">
|
@@ -36,13 +36,97 @@ if(get_theme_mod('latest_news_section_enable',true)==true):?>
|
|
36 |
<?php } ?>
|
37 |
<div class="row">
|
38 |
<?php
|
39 |
-
$
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
<div class="col-lg-4 col-md-6 col-sm-12">
|
47 |
<article class="post">
|
48 |
<?php if (has_post_thumbnail()) { ?>
|
@@ -86,7 +170,7 @@ if(get_theme_mod('latest_news_section_enable',true)==true):?>
|
|
86 |
|
87 |
<div class="entry-content">
|
88 |
<?php the_excerpt();
|
89 |
-
$blog_button = get_theme_mod('home_news_button_title', __('
|
90 |
if (!empty($blog_button)) {?>
|
91 |
<p><a href="<?php the_permalink(); ?>" class="more-link"><?php echo esc_html($blog_button); ?> <i class="fa <?php if(is_rtl()){echo 'fa-long-arrow-left';} else{ echo 'fa-long-arrow-right';}?>"></i></a></p>
|
92 |
<?php } ?>
|
@@ -94,11 +178,11 @@ if(get_theme_mod('latest_news_section_enable',true)==true):?>
|
|
94 |
</div>
|
95 |
</article>
|
96 |
</div>
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
?>
|
102 |
</div>
|
103 |
|
104 |
<?php if (!empty($spice_software_index_more_btn)): ?>
|
2 |
/* Call the action for news section */
|
3 |
add_action('spiceb_spice_software_news_action','spiceb_spice_software_news_section');
|
4 |
/* Function for news section*/
|
5 |
+
function spiceb_spice_software_news_section(){
|
|
|
6 |
$spice_software_index_news_link = get_theme_mod('home_blog_more_btn_link', __('#', 'spicebox'));
|
7 |
$spice_software_index_more_btn = get_theme_mod('home_blog_more_btn', __('Cras Vitae', 'spicebox'));
|
8 |
if (empty($spice_software_index_news_link)) {
|
9 |
$spice_software_index_news_link = '#';
|
10 |
}
|
11 |
+
if(get_theme_mod('latest_news_section_enable',true)==true):
|
12 |
+
$theme=wp_get_theme();?>
|
13 |
<!-- Latest News section -->
|
14 |
<section class="section-space blog home-blog bg-default">
|
15 |
<div class="container">
|
36 |
<?php } ?>
|
37 |
<div class="row">
|
38 |
<?php
|
39 |
+
$spice_software_dark=0;
|
40 |
+
if ('Spice Software Dark' == $theme->name){?>
|
41 |
+
<div class="col-lg-12 col-md-12 col-sm-12 list-view">
|
42 |
+
<?php
|
43 |
+
$spice_software_no_of_post = get_theme_mod('spice_software_homeblog_counts', 3);
|
44 |
+
$spice_software_args = array('post_type' => 'post', 'post__not_in' => get_option("sticky_posts"), 'posts_per_page' => $spice_software_no_of_post);
|
45 |
+
query_posts($spice_software_args);
|
46 |
+
if (query_posts($spice_software_args)) {
|
47 |
+
while (have_posts()):the_post();{?>
|
48 |
+
<article class="post media <?php if($spice_software_dark%2!=0 && has_post_thumbnail()): echo 'right'; endif;?>">
|
49 |
+
<?php
|
50 |
+
if($spice_software_dark%2==0):
|
51 |
+
if (has_post_thumbnail()) { ?>
|
52 |
+
<figure class="post-thumbnail">
|
53 |
+
<?php $spice_software_defalt_arg = array('class' => "img-fluid"); ?>
|
54 |
+
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('', $spice_software_defalt_arg); ?></a>
|
55 |
+
</figure>
|
56 |
+
<?php }
|
57 |
+
endif; ?>
|
58 |
+
<div class="post-content media-body">
|
59 |
+
<?php if(!has_post_thumbnail() || $spice_software_dark%2==0):
|
60 |
+
if ($spice_software_home_meta_section_settings == true) { ?>
|
61 |
+
<div class="<?php if(!has_post_thumbnail()){echo 'remove-image';}else{echo 'entry-date';}?>">
|
62 |
+
<a href="<?php echo esc_url(home_url('/')); ?>/<?php echo esc_html(date('Y/m', strtotime(get_the_date()))); ?>"><span class="date"><?php echo esc_html(get_the_date()); ?></span></a>
|
63 |
+
</div>
|
64 |
+
<?php }
|
65 |
+
endif;
|
66 |
+
|
67 |
+
if ($spice_software_home_meta_section_settings == true) { ?>
|
68 |
+
<div class="entry-meta">
|
69 |
+
<a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"> <i class="fa fa-user"></i><span class="author postauthor"><?php echo esc_html(get_the_author()); ?></span></a>
|
70 |
+
<?php
|
71 |
+
$spice_software_cat_list = get_the_category_list();
|
72 |
+
if (!empty($spice_software_cat_list)) {?>
|
73 |
+
<i class="fa fa-folder-open"></i><span class="cat-links postcat"><?php the_category(', ');?></span>
|
74 |
+
<?php } ?>
|
75 |
+
|
76 |
+
<?php
|
77 |
+
$tag_list = get_the_tag_list();
|
78 |
+
if (!empty($tag_list)) {
|
79 |
+
?>
|
80 |
+
<i class="fa fa-tag"></i>
|
81 |
+
<span class="cat-links posttag"><?php the_tags('', ', ', ''); ?></span>
|
82 |
+
<?php } ?>
|
83 |
+
</div>
|
84 |
+
<?php } ?>
|
85 |
+
|
86 |
+
<header class="entry-header">
|
87 |
+
<h4 class="entry-title">
|
88 |
+
<a class="home-blog-title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
|
89 |
+
</h4>
|
90 |
+
</header>
|
91 |
+
|
92 |
+
<div class="entry-content">
|
93 |
+
<?php the_excerpt();
|
94 |
+
$blog_button = get_theme_mod('home_news_button_title', __('Cras Vitae', 'spicebox'));
|
95 |
+
if (!empty($blog_button)) {?>
|
96 |
+
<p><a href="<?php the_permalink(); ?>" class="more-link"><?php echo esc_html($blog_button); ?> <i class="fa <?php if(is_rtl()){echo 'fa-long-arrow-left';} else{ echo 'fa-long-arrow-right';}?>"></i></a></p>
|
97 |
+
<?php } ?>
|
98 |
+
</div>
|
99 |
+
|
100 |
+
</div>
|
101 |
+
<?php if($spice_software_dark%2!=0 && has_post_thumbnail()):
|
102 |
+
if ($spice_software_home_meta_section_settings == true) { ?>
|
103 |
+
<div class="<?php if(!has_post_thumbnail()){echo 'remove-image';}else{echo 'entry-date';}?>">
|
104 |
+
<a href="<?php echo esc_url(home_url('/')); ?>/<?php echo esc_html(date('Y/m', strtotime(get_the_date()))); ?>"><span class="date"><?php echo esc_html(get_the_date()); ?></span></a>
|
105 |
+
</div>
|
106 |
+
<?php }
|
107 |
+
|
108 |
+
if (has_post_thumbnail()) { ?>
|
109 |
+
<figure class="post-thumbnail">
|
110 |
+
<?php $spice_software_defalt_arg = array('class' => "img-fluid"); ?>
|
111 |
+
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('', $spice_software_defalt_arg); ?></a>
|
112 |
+
</figure>
|
113 |
+
<?php }
|
114 |
+
endif;?>
|
115 |
+
</article>
|
116 |
+
<?php
|
117 |
+
$spice_software_dark++;
|
118 |
+
}
|
119 |
+
endwhile;
|
120 |
+
}?>
|
121 |
+
</div>
|
122 |
+
<?php
|
123 |
+
}
|
124 |
+
else{
|
125 |
+
$spice_software_no_of_post = get_theme_mod('spice_software_homeblog_counts', 3);
|
126 |
+
$spice_software_args = array('post_type' => 'post', 'post__not_in' => get_option("sticky_posts"), 'posts_per_page' => $spice_software_no_of_post);
|
127 |
+
query_posts($spice_software_args);
|
128 |
+
if (query_posts($spice_software_args)) {
|
129 |
+
while (have_posts()):the_post();{?>
|
130 |
<div class="col-lg-4 col-md-6 col-sm-12">
|
131 |
<article class="post">
|
132 |
<?php if (has_post_thumbnail()) { ?>
|
170 |
|
171 |
<div class="entry-content">
|
172 |
<?php the_excerpt();
|
173 |
+
$blog_button = get_theme_mod('home_news_button_title', __('Cras Vitae', 'spicebox'));
|
174 |
if (!empty($blog_button)) {?>
|
175 |
<p><a href="<?php the_permalink(); ?>" class="more-link"><?php echo esc_html($blog_button); ?> <i class="fa <?php if(is_rtl()){echo 'fa-long-arrow-left';} else{ echo 'fa-long-arrow-right';}?>"></i></a></p>
|
176 |
<?php } ?>
|
178 |
</div>
|
179 |
</article>
|
180 |
</div>
|
181 |
+
<?php
|
182 |
+
}
|
183 |
+
endwhile;
|
184 |
+
}
|
185 |
+
}?>
|
186 |
</div>
|
187 |
|
188 |
<?php if (!empty($spice_software_index_more_btn)): ?>
|
inc/spice-software/sections/spice-software-services-section.php
CHANGED
@@ -38,10 +38,18 @@ if (empty($service_data)) {
|
|
38 |
$spice_software_service_section_title = get_theme_mod('home_service_section_title', __('Quisque Blandit', 'spicebox'));
|
39 |
$spice_software_service_section_discription = get_theme_mod('home_service_section_discription', __('Fusce Sed Massa', 'spicebox'));
|
40 |
$spice_software_service_section_enabled = get_theme_mod('home_service_section_enabled',true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
if($spice_software_service_section_enabled ==true)
|
42 |
{
|
43 |
?>
|
44 |
-
<section class="section-space
|
45 |
<div class="container">
|
46 |
<?php if ($spice_software_service_section_discription != '' || $spice_software_service_section_title != '') {
|
47 |
?>
|
@@ -70,7 +78,7 @@ if($spice_software_service_section_enabled ==true)
|
|
70 |
$service_link = !empty($service_team->link) ? apply_filters('spice_software_translate_single_string', $service_team->link, 'Service section') : '';
|
71 |
?>
|
72 |
<div class="col-md-4 col-sm-6 col-xs-12">
|
73 |
-
<article class="post
|
74 |
<?php
|
75 |
if ($service_team->choice == 'customizer_repeater_icon') {
|
76 |
if ($service_icon != '') {
|
38 |
$spice_software_service_section_title = get_theme_mod('home_service_section_title', __('Quisque Blandit', 'spicebox'));
|
39 |
$spice_software_service_section_discription = get_theme_mod('home_service_section_discription', __('Fusce Sed Massa', 'spicebox'));
|
40 |
$spice_software_service_section_enabled = get_theme_mod('home_service_section_enabled',true);
|
41 |
+
$theme=wp_get_theme();
|
42 |
+
if ('Spice Software Dark' == $theme->name):
|
43 |
+
$service_section_classes = 'services3';
|
44 |
+
$service_article_classes = 'text-center';
|
45 |
+
else:
|
46 |
+
$service_section_classes = 'services';
|
47 |
+
$service_article_classes = 'text-center';
|
48 |
+
endif;
|
49 |
if($spice_software_service_section_enabled ==true)
|
50 |
{
|
51 |
?>
|
52 |
+
<section class="section-space <?php echo esc_attr($service_section_classes); ?>">
|
53 |
<div class="container">
|
54 |
<?php if ($spice_software_service_section_discription != '' || $spice_software_service_section_title != '') {
|
55 |
?>
|
78 |
$service_link = !empty($service_team->link) ? apply_filters('spice_software_translate_single_string', $service_team->link, 'Service section') : '';
|
79 |
?>
|
80 |
<div class="col-md-4 col-sm-6 col-xs-12">
|
81 |
+
<article class="post <?php echo esc_attr($service_article_classes); ?>">
|
82 |
<?php
|
83 |
if ($service_team->choice == 'customizer_repeater_icon') {
|
84 |
if ($service_icon != '') {
|
inc/spice-software/sections/spice-software-slider-section.php
CHANGED
@@ -5,8 +5,13 @@
|
|
5 |
add_action('spiceb_spice_software_slider_action','spiceb_spice_software_slider_section');
|
6 |
|
7 |
function spiceb_spice_software_slider_section()
|
8 |
-
{
|
9 |
-
$
|
|
|
|
|
|
|
|
|
|
|
10 |
$home_slider_title = get_theme_mod('home_slider_title',__('Nulla nec dolor sit amet lacus molestie','spicebox'));
|
11 |
$home_slider_discription = get_theme_mod('home_slider_discription',__('Sea summo mazim ex, ea errem eleifend definitionem vim. Ut nec hinc dolor possim <br> mei ludus efficiendi ei sea summo mazim ex.','spicebox'));
|
12 |
$home_slider_btn_txt = get_theme_mod('home_slider_btn_txt',__('Nec Sem','spicebox'));
|
5 |
add_action('spiceb_spice_software_slider_action','spiceb_spice_software_slider_section');
|
6 |
|
7 |
function spiceb_spice_software_slider_section()
|
8 |
+
{
|
9 |
+
$theme=wp_get_theme();
|
10 |
+
if('Spice Software Dark'==$theme->name):
|
11 |
+
$home_slider_image = get_theme_mod('home_slider_image',SPICE_SOFTWARE_DARK_TEMPLATE_DIR_URI .'/assets/images/slider.jpg');
|
12 |
+
else:
|
13 |
+
$home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/spice-software/images/slider/slider.jpg');
|
14 |
+
endif;
|
15 |
$home_slider_title = get_theme_mod('home_slider_title',__('Nulla nec dolor sit amet lacus molestie','spicebox'));
|
16 |
$home_slider_discription = get_theme_mod('home_slider_discription',__('Sea summo mazim ex, ea errem eleifend definitionem vim. Ut nec hinc dolor possim <br> mei ludus efficiendi ei sea summo mazim ex.','spicebox'));
|
17 |
$home_slider_btn_txt = get_theme_mod('home_slider_btn_txt',__('Nec Sem','spicebox'));
|
inc/spice-software/sections/spice-software-team-section.php
CHANGED
@@ -150,8 +150,9 @@ if (empty($team_options)) {
|
|
150 |
));
|
151 |
}
|
152 |
$team_section_enable = get_theme_mod('team_section_enable', true);
|
|
|
153 |
if ($team_section_enable != false) {?>
|
154 |
-
<section class="section-space team">
|
155 |
<div class="spice-software-team-container container">
|
156 |
<?php
|
157 |
$home_team_section_title = get_theme_mod('home_team_section_title', __('Magna Aliqua', 'spicebox'));
|
@@ -186,6 +187,60 @@ if ($team_section_enable != false) {?>
|
|
186 |
$subtitle = !empty($team_item->designation) ? apply_filters('spice_software_translate_single_string', $team_item->designation, 'Team section') : '';
|
187 |
$aboutme = !empty($team_item->text) ? apply_filters('spice_software_translate_single_string', $team_item->text, 'Team section') : '';?>
|
188 |
<div class="item">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
<div class="card-wrapper">
|
190 |
<div id="card-1" class="card card-rotating text-center">
|
191 |
<div class="face front">
|
@@ -205,7 +260,7 @@ if ($team_section_enable != false) {?>
|
|
205 |
<!-- Content -->
|
206 |
<div class="card-body">
|
207 |
<?php if (!empty($title)) : ?>
|
208 |
-
<h4 class="font-weight-bold mt-1 mb-
|
209 |
<?php endif;
|
210 |
if (!empty($subtitle)) : ?>
|
211 |
<p class="font-weight-bold dark-grey-text"><?php echo esc_html($subtitle); ?></p>
|
@@ -253,6 +308,7 @@ if ($team_section_enable != false) {?>
|
|
253 |
<!-- Back Side -->
|
254 |
</div>
|
255 |
</div>
|
|
|
256 |
</div>
|
257 |
<?php
|
258 |
}
|
150 |
));
|
151 |
}
|
152 |
$team_section_enable = get_theme_mod('team_section_enable', true);
|
153 |
+
$theme=wp_get_theme();
|
154 |
if ($team_section_enable != false) {?>
|
155 |
+
<section class="section-space team <?php if ('Spice Software Dark' == $theme->name):echo 'team4';endif;?>">
|
156 |
<div class="spice-software-team-container container">
|
157 |
<?php
|
158 |
$home_team_section_title = get_theme_mod('home_team_section_title', __('Magna Aliqua', 'spicebox'));
|
187 |
$subtitle = !empty($team_item->designation) ? apply_filters('spice_software_translate_single_string', $team_item->designation, 'Team section') : '';
|
188 |
$aboutme = !empty($team_item->text) ? apply_filters('spice_software_translate_single_string', $team_item->text, 'Team section') : '';?>
|
189 |
<div class="item">
|
190 |
+
<?php if ('Spice Software Dark' == $theme->name){?>
|
191 |
+
<div class="team-grid text-center">
|
192 |
+
<div class="overlay">
|
193 |
+
<?php if(!empty($image)){ ?>
|
194 |
+
<div class="img-holder">
|
195 |
+
<img src="<?php echo esc_url($image); ?>" class="img-fluid"alt="<?php echo $title; ?>">
|
196 |
+
</div>
|
197 |
+
<?php } ?>
|
198 |
+
|
199 |
+
<!-- Social Icons -->
|
200 |
+
|
201 |
+
<?php
|
202 |
+
$icons = html_entity_decode($team_item->social_repeater);
|
203 |
+
$icons_decoded = json_decode($icons, true);
|
204 |
+
$socails_counts = count($icons_decoded);
|
205 |
+
if (!empty($socails_counts)) :
|
206 |
+
?> <?php if (!empty($icons_decoded)) : ?>
|
207 |
+
<ul class="list-inline list-unstyled ml-0 mt-1 mb-1">
|
208 |
+
<?php
|
209 |
+
foreach ($icons_decoded as $value) {
|
210 |
+
$social_icon = !empty($value['icon']) ? apply_filters('spice_software_translate_single_string', $value['icon'], 'Team section') : '';
|
211 |
+
$social_link = !empty($value['link']) ? apply_filters('spice_software_translate_single_string', $value['link'], 'Team section') : '';
|
212 |
+
if (!empty($social_icon)) {
|
213 |
+
?>
|
214 |
+
<li class="list-inline-item"><a class="p-2 fa-lg fb-ic" <?php
|
215 |
+
if ($open_new_tab == 'yes') {
|
216 |
+
echo 'target="_blank"';
|
217 |
+
}
|
218 |
+
?> href="<?php echo esc_url($social_link); ?>"><i class="fa <?php echo esc_attr($social_icon); ?> " aria-hidden="true"></i></a></li>
|
219 |
+
<?php
|
220 |
+
}
|
221 |
+
}
|
222 |
+
?>
|
223 |
+
</ul>
|
224 |
+
<?php
|
225 |
+
endif;
|
226 |
+
endif;
|
227 |
+
?>
|
228 |
+
|
229 |
+
</div>
|
230 |
+
|
231 |
+
<div class="card-body">
|
232 |
+
<?php if (!empty($title)) : ?>
|
233 |
+
<h4 class="font-weight-bold mt-1 mb-2"><?php echo esc_html($title); ?></h4>
|
234 |
+
<?php endif;
|
235 |
+
if (!empty($subtitle)) : ?>
|
236 |
+
<p class="font-weight-bold dark-grey-text"><?php echo esc_html($subtitle); ?></p>
|
237 |
+
<?php endif; ?>
|
238 |
+
|
239 |
+
</div>
|
240 |
+
</div>
|
241 |
+
<?php
|
242 |
+
}
|
243 |
+
else{?>
|
244 |
<div class="card-wrapper">
|
245 |
<div id="card-1" class="card card-rotating text-center">
|
246 |
<div class="face front">
|
260 |
<!-- Content -->
|
261 |
<div class="card-body">
|
262 |
<?php if (!empty($title)) : ?>
|
263 |
+
<h4 class="font-weight-bold mt-1 mb-2"><?php echo esc_html($title); ?></h4>
|
264 |
<?php endif;
|
265 |
if (!empty($subtitle)) : ?>
|
266 |
<p class="font-weight-bold dark-grey-text"><?php echo esc_html($subtitle); ?></p>
|
308 |
<!-- Back Side -->
|
309 |
</div>
|
310 |
</div>
|
311 |
+
<?php } ?>
|
312 |
</div>
|
313 |
<?php
|
314 |
}
|
inc/spice-software/sections/spice-software-testimonial-section.php
CHANGED
@@ -62,8 +62,26 @@ if (empty($testimonial_options)) {
|
|
62 |
),
|
63 |
));
|
64 |
}
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
<div class="owl-carousel owl-theme">
|
68 |
<div class="container">
|
69 |
<?php if ($home_testimonial_section_title != '' || $home_testimonial_section_discription != '') { ?>
|
@@ -71,7 +89,7 @@ if(get_theme_mod('testimonial_section_enable',true)==true):?>
|
|
71 |
<div class="col-lg-12 col-md-12 col-sm-12">
|
72 |
<div class="section-header">
|
73 |
<?php if($home_testimonial_section_title):?>
|
74 |
-
<h2 class="section-title
|
75 |
<?php endif;?>
|
76 |
<?php if ($home_testimonial_section_discription != ''):?>
|
77 |
<p class="<?php echo $textColor; ?>"><?php echo esc_attr($home_testimonial_section_discription); ?></p>
|
@@ -84,7 +102,7 @@ if(get_theme_mod('testimonial_section_enable',true)==true):?>
|
|
84 |
|
85 |
<!--Testimonial-->
|
86 |
<div class="row">
|
87 |
-
|
88 |
<?php
|
89 |
$testimonial_options = json_decode($testimonial_options);
|
90 |
if ($testimonial_options != '') {
|
@@ -106,49 +124,65 @@ if(get_theme_mod('testimonial_section_enable',true)==true):?>
|
|
106 |
$stars = !empty($testimonial_iteam->home_testimonial_star) ? apply_filters('spice_software_translate_single_string', $testimonial_iteam->home_testimonial_star, 'Testimonial section') : '';
|
107 |
?>
|
108 |
<div class="item">
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
<?php
|
128 |
-
|
129 |
-
<?php endif; ?>
|
130 |
-
</figcaption>
|
131 |
-
<?php } ?>
|
132 |
-
</blockquote>
|
133 |
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
?>
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
<?php } ?>
|
146 |
-
</
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
}
|
151 |
-
}?>
|
152 |
</div>
|
153 |
</div>
|
154 |
</div>
|
62 |
),
|
63 |
));
|
64 |
}
|
65 |
+
$theme=wp_get_theme();
|
66 |
+
if ('Spice Software Dark' == $theme->name):
|
67 |
+
$sectionClass = 'testi-4';
|
68 |
+
$textColor = 'text-white';
|
69 |
+
$textAlign = 'text-center';
|
70 |
+
else:
|
71 |
+
$sectionClass = 'testi-1';
|
72 |
+
$textColor = 'text-black';
|
73 |
+
$textAlign = 'text-center';
|
74 |
+
endif;
|
75 |
+
$testimonial_callout_background = get_theme_mod('testimonial_callout_background',SPICEB_PLUGIN_URL . '/inc/spice-software/images/testimonial/bg-img.jpg');
|
76 |
+
if(get_theme_mod('testimonial_section_enable',true)==true):
|
77 |
+
if('Spice Software Dark'==$theme->name):?>
|
78 |
+
<section class="section-space testimonial <?php echo $sectionClass; ?>" style="background:url('<?php echo esc_url($testimonial_callout_background); ?>') 100% 100% no-repeat; -webkit-background-size: cover;
|
79 |
+
-moz-background-size: cover;
|
80 |
+
-o-background-size: cover;
|
81 |
+
background-size: cover;">
|
82 |
+
<?php else:?>
|
83 |
+
<section class="section-space testimonial <?php echo $sectionClass; ?>">
|
84 |
+
<?php endif;?>
|
85 |
<div class="owl-carousel owl-theme">
|
86 |
<div class="container">
|
87 |
<?php if ($home_testimonial_section_title != '' || $home_testimonial_section_discription != '') { ?>
|
89 |
<div class="col-lg-12 col-md-12 col-sm-12">
|
90 |
<div class="section-header">
|
91 |
<?php if($home_testimonial_section_title):?>
|
92 |
+
<h2 class="section-title <?php echo $textColor; ?>"><?php echo esc_attr($home_testimonial_section_title); ?></h2>
|
93 |
<?php endif;?>
|
94 |
<?php if ($home_testimonial_section_discription != ''):?>
|
95 |
<p class="<?php echo $textColor; ?>"><?php echo esc_attr($home_testimonial_section_discription); ?></p>
|
102 |
|
103 |
<!--Testimonial-->
|
104 |
<div class="row">
|
105 |
+
<div class="col-md-12" id="testimonial-carousel">
|
106 |
<?php
|
107 |
$testimonial_options = json_decode($testimonial_options);
|
108 |
if ($testimonial_options != '') {
|
124 |
$stars = !empty($testimonial_iteam->home_testimonial_star) ? apply_filters('spice_software_translate_single_string', $testimonial_iteam->home_testimonial_star, 'Testimonial section') : '';
|
125 |
?>
|
126 |
<div class="item">
|
127 |
+
<blockquote class="testmonial-block <?php echo $textAlign; ?>">
|
128 |
+
<?php $default_arg = array('class' => "img-circle"); ?>
|
129 |
+
<?php if ($home_testimonial_thumb != ''): ?>
|
130 |
+
<figure class="avatar">
|
131 |
+
<img src="<?php echo esc_url($home_testimonial_thumb); ?>" class="img-fluid rounded-circle" alt="<?php echo esc_attr($home_testimonial_clientname);?>" >
|
132 |
+
</figure>
|
133 |
+
<?php endif;
|
134 |
+
if ('Spice Software Dark' == $theme->name):
|
135 |
+
if ($home_testimonial_clientname != '' || $home_testimonial_designation != '' ) { ?>
|
136 |
+
<figcaption>
|
137 |
+
<?php if (!empty($home_testimonial_designation)): ?>
|
138 |
+
<a href="<?php if (empty($home_testimonial_link)) {echo '#';} else { echo esc_url($home_testimonial_link);}?>" <?php if($open_new_tab==true) { ?> target="_blank"<?php } ?>>
|
139 |
+
<cite class="name"><?php echo esc_html($home_testimonial_clientname); ?></cite></a>
|
140 |
+
<?php endif; ?>
|
141 |
+
<?php if (!empty($home_testimonial_designation)): ?>
|
142 |
+
<span class="designation <?php echo esc_attr($textColor);?>"><?php echo esc_html($home_testimonial_designation); ?></span>
|
143 |
+
<?php endif; ?>
|
144 |
+
</figcaption>
|
145 |
+
<?php }
|
146 |
+
endif;
|
|
|
|
|
|
|
|
|
147 |
|
148 |
+
if (!empty($home_testimonial_desc)): ?>
|
149 |
+
<div class="entry-content">
|
150 |
+
<?php if ($home_testimonial_desc != '') { ?><p class="<?php echo esc_attr($textColor);?>" ><?php echo wp_kses(html_entity_decode($home_testimonial_desc), $allowed_html); ?></p> <?php } ?>
|
151 |
+
</div>
|
152 |
+
<?php endif;
|
153 |
+
if ('Spice Software Dark' != $theme->name):
|
154 |
+
if ($home_testimonial_clientname != '' || $home_testimonial_designation != '' ) { ?>
|
155 |
+
<figcaption>
|
156 |
+
<?php if (!empty($home_testimonial_designation)): ?>
|
157 |
+
<a href="<?php if (empty($home_testimonial_link)) {echo '#';} else { echo esc_url($home_testimonial_link);}?>" <?php if($open_new_tab==true) { ?> target="_blank"<?php } ?>>
|
158 |
+
<cite class="name"><?php echo esc_html($home_testimonial_clientname); ?></cite></a>
|
159 |
+
<?php endif; ?>
|
160 |
+
<?php if (!empty($home_testimonial_designation)): ?>
|
161 |
+
<span class="designation"><?php echo esc_html($home_testimonial_designation); ?></span>
|
162 |
+
<?php endif; ?>
|
163 |
+
</figcaption>
|
164 |
+
<?php }
|
165 |
+
endif;
|
166 |
+
|
167 |
+
if(!empty($stars)) { ?>
|
168 |
+
<div class="rating">
|
169 |
+
<?php
|
170 |
+
$stars = end(explode('_', $stars));
|
171 |
+
$stars = explode('.', end(explode('_', $stars)));
|
172 |
+
for ($i = 1; $i <= $stars[0]; $i++) {
|
173 |
+
?>
|
174 |
+
<span class="fa fa-star"></span>
|
175 |
+
<?php } ?>
|
176 |
+
<?php if ($stars[1]) { ?>
|
177 |
+
<span class="fa fa-star-half-o"></span>
|
178 |
+
<?php } ?>
|
179 |
+
</div>
|
180 |
<?php } ?>
|
181 |
+
</blockquote>
|
182 |
+
</div>
|
183 |
+
<?php
|
184 |
+
}
|
185 |
+
}?>
|
|
|
186 |
</div>
|
187 |
</div>
|
188 |
</div>
|
inc/spicepress/default-pages/upload-media.php
CHANGED
@@ -1,7 +1,24 @@
|
|
1 |
<?php
|
2 |
$file = SPICEB_PLUGIN_URL .'inc/spicepress/images/portfolio/gallery2.jpg';
|
3 |
$ImagePath = SPICEB_PLUGIN_URL .'inc/spicepress/images/portfolio';
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
$images = array(
|
6 |
$ImagePath.'/gallery1.jpg',
|
7 |
$ImagePath.'/gallery2.jpg',
|
@@ -17,6 +34,7 @@ $ImagePath.'/gallery11.jpg',
|
|
17 |
$ImagePath.'/gallery12.jpg',
|
18 |
$ImagePath. '/logo.png',
|
19 |
);
|
|
|
20 |
|
21 |
foreach($images as $name) {
|
22 |
$filename = basename($name);
|
1 |
<?php
|
2 |
$file = SPICEB_PLUGIN_URL .'inc/spicepress/images/portfolio/gallery2.jpg';
|
3 |
$ImagePath = SPICEB_PLUGIN_URL .'inc/spicepress/images/portfolio';
|
4 |
+
if (wp_get_theme()->name == 'SpicePress Dark'){
|
5 |
+
$images = array(
|
6 |
+
$ImagePath.'/gallery1.jpg',
|
7 |
+
$ImagePath.'/gallery2.jpg',
|
8 |
+
$ImagePath.'/gallery3.jpg',
|
9 |
+
$ImagePath.'/gallery4.jpg',
|
10 |
+
$ImagePath.'/gallery5.jpg',
|
11 |
+
$ImagePath.'/gallery6.jpg',
|
12 |
+
$ImagePath.'/gallery7.jpg',
|
13 |
+
$ImagePath.'/gallery8.jpg',
|
14 |
+
$ImagePath.'/gallery9.jpg',
|
15 |
+
$ImagePath.'/gallery10.jpg',
|
16 |
+
$ImagePath.'/gallery11.jpg',
|
17 |
+
$ImagePath.'/gallery12.jpg',
|
18 |
+
$ImagePath. '/spicepress-dark.png',
|
19 |
+
);
|
20 |
+
}
|
21 |
+
else{
|
22 |
$images = array(
|
23 |
$ImagePath.'/gallery1.jpg',
|
24 |
$ImagePath.'/gallery2.jpg',
|
34 |
$ImagePath.'/gallery12.jpg',
|
35 |
$ImagePath. '/logo.png',
|
36 |
);
|
37 |
+
}
|
38 |
|
39 |
foreach($images as $name) {
|
40 |
$filename = basename($name);
|
inc/spicepress/features/feature-service-section.php
CHANGED
@@ -131,14 +131,14 @@ function spiceb_spicepress_register_home_service_section_partials( $wp_customize
|
|
131 |
|
132 |
//Slider section
|
133 |
$wp_customize->selective_refresh->add_partial( 'home_service_section_title', array(
|
134 |
-
'selector' => '.service-section .section-header .widget-title, .section-module.services2.service_wrapper .section-header h1',
|
135 |
'settings' => 'home_service_section_title',
|
136 |
'render_callback' => 'spiceb_spicepress_service_section_title_render_callback',
|
137 |
|
138 |
) );
|
139 |
|
140 |
$wp_customize->selective_refresh->add_partial( 'home_service_section_discription', array(
|
141 |
-
'selector' => '.service-section .section-header p
|
142 |
'settings' => 'home_service_section_discription',
|
143 |
'render_callback' => 'spiceb_spicepress_service_section_discription_render_callback',
|
144 |
|
131 |
|
132 |
//Slider section
|
133 |
$wp_customize->selective_refresh->add_partial( 'home_service_section_title', array(
|
134 |
+
'selector' => '.service-section .section-header .widget-title,.section-module.services5 .widget-title, .section-module.services2.service_wrapper .section-header h1',
|
135 |
'settings' => 'home_service_section_title',
|
136 |
'render_callback' => 'spiceb_spicepress_service_section_title_render_callback',
|
137 |
|
138 |
) );
|
139 |
|
140 |
$wp_customize->selective_refresh->add_partial( 'home_service_section_discription', array(
|
141 |
+
'selector' => '.service-section .section-header p,.section-module.services5 .section-header p,.section-module.services2.service_wrapper .section-header p',
|
142 |
'settings' => 'home_service_section_discription',
|
143 |
'render_callback' => 'spiceb_spicepress_service_section_discription_render_callback',
|
144 |
|
inc/spicepress/features/feature-testimonial-section.php
CHANGED
@@ -84,11 +84,19 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
84 |
'section' => 'testimonial_section',
|
85 |
'type' => 'textarea',
|
86 |
));
|
87 |
-
|
88 |
//testimonial one image
|
89 |
-
|
|
|
|
|
90 |
'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
$wp_customize->add_control(
|
93 |
new WP_Customize_Image_Control(
|
94 |
$wp_customize,
|
84 |
'section' => 'testimonial_section',
|
85 |
'type' => 'textarea',
|
86 |
));
|
87 |
+
|
88 |
//testimonial one image
|
89 |
+
if(wp_get_theme()->name == 'SpicePress Dark'){
|
90 |
+
|
91 |
+
$wp_customize->add_setting( 'home_testimonial_thumb',array('default' => SPICEB_PLUGIN_URL .'inc/spicepress/images/testimonial/testi-2.jpg',
|
92 |
'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
|
93 |
|
94 |
+
}
|
95 |
+
else{
|
96 |
+
$wp_customize->add_setting( 'home_testimonial_thumb',array('default' => SPICEB_PLUGIN_URL .'inc/spicepress/images/testimonial/testi1.jpg',
|
97 |
+
'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
|
98 |
+
}
|
99 |
+
|
100 |
$wp_customize->add_control(
|
101 |
new WP_Customize_Image_Control(
|
102 |
$wp_customize,
|
inc/spicepress/images/portfolio/spicepress-dark.png
ADDED
Binary file
|
inc/spicepress/images/slider/slider.jpg
CHANGED
Binary file
|
inc/spicepress/images/testimonial/testi-2.jpg
ADDED
Binary file
|
inc/spicepress/images/testimonial/testimonial-bg.jpg
CHANGED
Binary file
|
inc/spicepress/sections/spicepress-features-section.php
CHANGED
@@ -24,9 +24,12 @@ if ( ! function_exists( 'spiceb_spicepress_service' ) ) :
|
|
24 |
if (get_option('stacy_user', false) == 'new') {
|
25 |
$section_class= 'section-module services2 service_wrapper';
|
26 |
}
|
|
|
27 |
}
|
28 |
}
|
29 |
-
|
|
|
|
|
30 |
|
31 |
?>
|
32 |
<!-- Section Title -->
|
@@ -120,7 +123,7 @@ function spiceb_spicepress_service_content( $spicepress_service_content, $is_cal
|
|
120 |
<a href="<?php echo esc_url( $link ); ?>" <?php if($open_new_tab == 'yes'){ echo 'target="_blank"';}?> >
|
121 |
<?php endif; ?>
|
122 |
|
123 |
-
|
124 |
|
125 |
<?php if ( ! empty( $link ) ) : ?>
|
126 |
</a>
|
24 |
if (get_option('stacy_user', false) == 'new') {
|
25 |
$section_class= 'section-module services2 service_wrapper';
|
26 |
}
|
27 |
+
|
28 |
}
|
29 |
}
|
30 |
+
if (wp_get_theme()->name == 'SpicePress Dark') {
|
31 |
+
$section_class= 'section-module services5 service_wrapper';
|
32 |
+
}
|
33 |
|
34 |
?>
|
35 |
<!-- Section Title -->
|
123 |
<a href="<?php echo esc_url( $link ); ?>" <?php if($open_new_tab == 'yes'){ echo 'target="_blank"';}?> >
|
124 |
<?php endif; ?>
|
125 |
|
126 |
+
<i class="fa <?php echo esc_html( $icon ); ?> <?php if (wp_get_theme()->name != 'SpicePress Dark') { echo 'txt-pink'; }?> "></i>
|
127 |
|
128 |
<?php if ( ! empty( $link ) ) : ?>
|
129 |
</a>
|
inc/spicepress/sections/spicepress-testimonail-section.php
CHANGED
@@ -20,8 +20,9 @@ $testimonial_section_enable = get_theme_mod('testimonial_section_enable','on');
|
|
20 |
}
|
21 |
}
|
22 |
}
|
23 |
-
|
24 |
-
|
|
|
25 |
$testimonial_section_design = ($testimonial_section_design) ? $testimonial_section_design : 'default';
|
26 |
|
27 |
if($testimonial_section_enable !='off' && $testimonial_section_design == 'default' )
|
@@ -174,7 +175,83 @@ $testimonial_image_overlay = get_theme_mod('testimonial_image_overlay',true);
|
|
174 |
</section>
|
175 |
<!-- /Testimonial Section -->
|
176 |
<div class="clearfix"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
<?php } ?>
|
|
|
178 |
<?php
|
179 |
}
|
180 |
|
20 |
}
|
21 |
}
|
22 |
}
|
23 |
+
if (wp_get_theme()->name == 'SpicePress Dark'){
|
24 |
+
$testimonial_section_design= 'spicepress-dark';
|
25 |
+
}
|
26 |
$testimonial_section_design = ($testimonial_section_design) ? $testimonial_section_design : 'default';
|
27 |
|
28 |
if($testimonial_section_enable !='off' && $testimonial_section_design == 'default' )
|
175 |
</section>
|
176 |
<!-- /Testimonial Section -->
|
177 |
<div class="clearfix"></div>
|
178 |
+
<?php }
|
179 |
+
|
180 |
+
if($testimonial_section_enable !='off' && $testimonial_section_design == 'spicepress-dark' )
|
181 |
+
{
|
182 |
+
$testimonial_callout_background = get_theme_mod('testimonial_callout_background',SPICEB_PLUGIN_URL .'inc/spicepress/images/testimonial/testimonial-bg.jpg');
|
183 |
+
if($testimonial_callout_background != '') { ?>
|
184 |
+
<section class="testimonial-section testimonial5" style="background-image:url('<?php echo esc_url($testimonial_callout_background);?>'); background-repeat: no-repeat; background-position: top left;">
|
185 |
+
<?php } else { ?>
|
186 |
+
<section class="testimonial-section testimonial5">
|
187 |
+
<?php }
|
188 |
+
$testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color','rgba(0,0,0,0.6)');
|
189 |
+
$testimonial_image_overlay = get_theme_mod('testimonial_image_overlay',true);
|
190 |
+
?>
|
191 |
+
<div class="overlay"<?php if($testimonial_image_overlay != false) { ?>style="background-color:<?php echo $testimonial_overlay_section_color; } ?>">
|
192 |
+
<div class="container">
|
193 |
+
<?php
|
194 |
+
$home_testimonial_section_title = get_theme_mod('home_testimonial_section_title',__('Lorem ipsum dolor','spicebox'));
|
195 |
+
$home_testimonial_section_discription = get_theme_mod('home_testimonial_section_discription',__('Sea summo mazim ex, ea errem eleifend definitionem vim. Ut nec hinc dolor possim mei ludus efficiendi ei sea summo mazim ex.','spicebox'));
|
196 |
+
$home_testimonial_title = get_theme_mod('home_testimonial_title',__('Ipsum dolor','spicebox'));
|
197 |
+
$home_testimonial_designation= get_theme_mod('home_testimonial_designation',__('Ligula Eget','spicebox'));
|
198 |
+
$home_testimonial_thumb = get_theme_mod('home_testimonial_thumb',SPICEB_PLUGIN_URL .'inc/spicepress/images/testimonial/testi-2.jpg');
|
199 |
+
$home_testimonial_desc = get_theme_mod('home_testimonial_desc',__('Sed ut Perspiciatis Unde Omnis Iste Sed ut perspiciatis unde omnis iste natu error sit voluptatem accu tium neque fermentum veposu miten a tempor nise. Duis autem vel eum iriure dolor in hendrerit in vulputate velit consequat reprehender in voluptate velit esse cillum duis dolor fugiat nulla pariatur.','spicebox'));
|
200 |
+
?>
|
201 |
+
|
202 |
+
|
203 |
+
<?php if( $home_testimonial_section_title != '' || $home_testimonial_section_discription != '') { ?>
|
204 |
+
<!-- Section Title -->
|
205 |
+
<div class="row">
|
206 |
+
<div class="col-md-12">
|
207 |
+
<div class="section-header">
|
208 |
+
<h1 class="white wow fadeInUp animated" data-wow-delay="0ms" data-wow-duration="500ms">
|
209 |
+
<?php echo esc_attr($home_testimonial_section_title); ?>
|
210 |
+
</h1>
|
211 |
+
<div class="widget-separator"><span></span></div>
|
212 |
+
<p class="white wow fadeInDown animated">
|
213 |
+
<?php echo esc_attr($home_testimonial_section_discription); ?>
|
214 |
+
</p>
|
215 |
+
</div>
|
216 |
+
</div>
|
217 |
+
</div>
|
218 |
+
<?php } ?>
|
219 |
+
<!-- /Section Title -->
|
220 |
+
|
221 |
+
<!-- Testimonial -->
|
222 |
+
<div class="row">
|
223 |
+
<div class="col-md-12">
|
224 |
+
<article class="testmonial-block">
|
225 |
+
<div class="col-lg-4">
|
226 |
+
<?php if($home_testimonial_thumb !=''){ ?>
|
227 |
+
<figure class="avatar">
|
228 |
+
<img src="<?php echo $home_testimonial_thumb; ?>" class="img-responsive img-circle" alt="img">
|
229 |
+
</figure>
|
230 |
+
<?php } ?>
|
231 |
+
</div>
|
232 |
+
<div class="col-lg-8 testimonial-text">
|
233 |
+
<?php
|
234 |
+
if($home_testimonial_desc !=''){ ?>
|
235 |
+
<div class="entry-content">
|
236 |
+
<p class="text-white"><?php echo $home_testimonial_desc; ?></p>
|
237 |
+
</div>
|
238 |
+
<?php }
|
239 |
+
if($home_testimonial_title != '' || $home_testimonial_designation !='' ){?>
|
240 |
+
<h4><?php echo $home_testimonial_title; ?> <?php if($home_testimonial_designation !=''){ ?> - <?php } ?><span class="designation"><?php echo $home_testimonial_designation; ?></span>
|
241 |
+
</h4>
|
242 |
+
<?php }?>
|
243 |
+
</div>
|
244 |
+
</article>
|
245 |
+
</div>
|
246 |
+
</div>
|
247 |
+
</div>
|
248 |
+
<!-- /Testimonial -->
|
249 |
+
</div>
|
250 |
+
</section>
|
251 |
+
<!-- /Testimonial Section -->
|
252 |
+
<div class="clearfix"></div>
|
253 |
<?php } ?>
|
254 |
+
|
255 |
<?php
|
256 |
}
|
257 |
|
languages/spicebox.pot
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"Project-Id-Version: "
|
5 |
"Spiceboxv1.0.0\n"
|
6 |
"POT-Creation-Date: "
|
7 |
-
"2021-
|
8 |
"PO-Revision-Date: \n"
|
9 |
"Last-Translator: Your "
|
10 |
"Name <you@example.com>\n"
|
@@ -117,9 +117,11 @@ msgstr ""
|
|
117 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:42
|
118 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:84
|
119 |
#: inc/spice-software/customizer/news-section.php:55
|
120 |
-
#: inc/spice-software/customizer/slider-section.php:
|
121 |
-
#: inc/spice-software/sections/spice-software-news-section.php:
|
122 |
-
#: inc/spice-software/sections/spice-software-
|
|
|
|
|
123 |
msgid "Cras Vitae"
|
124 |
msgstr ""
|
125 |
|
@@ -229,9 +231,9 @@ msgstr ""
|
|
229 |
#: inc/innofit/customizer/wooproduct-section.php:26
|
230 |
#: inc/spice-software/customizer/news-section.php:33
|
231 |
#: inc/spice-software/customizer/services-section.php:31
|
232 |
-
#: inc/spice-software/customizer/slider-section.php:
|
233 |
#: inc/spice-software/customizer/team-section.php:29
|
234 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
235 |
#: inc/spicepress/features/feature-portfolio-section.php:31
|
236 |
#: inc/spicepress/features/feature-portfolio-section.php:78
|
237 |
#: inc/spicepress/features/feature-portfolio-section.php:127
|
@@ -239,7 +241,7 @@ msgstr ""
|
|
239 |
#: inc/spicepress/features/feature-service-section.php:40
|
240 |
#: inc/spicepress/features/feature-slider-section.php:76
|
241 |
#: inc/spicepress/features/feature-testimonial-section.php:70
|
242 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
243 |
msgid "Title"
|
244 |
msgstr ""
|
245 |
|
@@ -260,7 +262,7 @@ msgstr ""
|
|
260 |
#: inc/spice-software/customizer/news-section.php:46
|
261 |
#: inc/spice-software/customizer/services-section.php:47
|
262 |
#: inc/spice-software/customizer/team-section.php:42
|
263 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
264 |
msgid "Sub Title"
|
265 |
msgstr ""
|
266 |
|
@@ -305,8 +307,8 @@ msgstr ""
|
|
305 |
#: inc/innofit/customizer/callout-section.php:90
|
306 |
#: inc/innofit/customizer/slider-section.php:123
|
307 |
#: inc/spice-software/customizer/news-section.php:131
|
308 |
-
#: inc/spice-software/customizer/slider-section.php:
|
309 |
-
#: inc/spice-software/customizer/slider-section.php:
|
310 |
#: inc/spicepress/features/feature-slider-section.php:126
|
311 |
msgid ""
|
312 |
"Open link in new tab"
|
@@ -421,12 +423,12 @@ msgstr ""
|
|
421 |
#: inc/innofit/customizer/about-section.php:73
|
422 |
#: inc/innofit/customizer/slider-section.php:32
|
423 |
#: inc/spice-software/customizer/slider-section.php:34
|
424 |
-
#: inc/spice-software/customizer/slider-section.php:
|
425 |
#: inc/spicepress/features/feature-portfolio-section.php:59
|
426 |
#: inc/spicepress/features/feature-portfolio-section.php:108
|
427 |
#: inc/spicepress/features/feature-portfolio-section.php:157
|
428 |
#: inc/spicepress/features/feature-slider-section.php:35
|
429 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
430 |
msgid "Image"
|
431 |
msgstr ""
|
432 |
|
@@ -503,7 +505,7 @@ msgid ""
|
|
503 |
msgstr ""
|
504 |
|
505 |
#: inc/busicare/customizer/slider-section.php:118
|
506 |
-
#: inc/spice-software/customizer/slider-section.php:
|
507 |
msgid ""
|
508 |
"Enable/Disable slider "
|
509 |
"image overlay"
|
@@ -513,7 +515,7 @@ msgstr ""
|
|
513 |
#: inc/cloudpress/features/feature-slider-section.php:63
|
514 |
#: inc/honeypress/features/feature-slider-section.php:140
|
515 |
#: inc/innofit/customizer/slider-section.php:60
|
516 |
-
#: inc/spice-software/customizer/slider-section.php:
|
517 |
#: inc/spicepress/features/feature-slider-section.php:63
|
518 |
msgid ""
|
519 |
"Slider image overlay "
|
@@ -522,26 +524,26 @@ msgstr ""
|
|
522 |
|
523 |
#: inc/busicare/customizer/slider-section.php:149
|
524 |
#: inc/honeypress/features/feature-slider-section.php:155
|
525 |
-
#: inc/spice-software/customizer/slider-section.php:
|
526 |
msgid ""
|
527 |
"Slider Content Alignment"
|
528 |
msgstr ""
|
529 |
|
530 |
#: inc/busicare/customizer/slider-section.php:153
|
531 |
#: inc/honeypress/features/feature-slider-section.php:158
|
532 |
-
#: inc/spice-software/customizer/slider-section.php:
|
533 |
msgid "Left"
|
534 |
msgstr ""
|
535 |
|
536 |
#: inc/busicare/customizer/slider-section.php:154
|
537 |
#: inc/honeypress/features/feature-slider-section.php:159
|
538 |
-
#: inc/spice-software/customizer/slider-section.php:
|
539 |
msgid "Center"
|
540 |
msgstr ""
|
541 |
|
542 |
#: inc/busicare/customizer/slider-section.php:155
|
543 |
#: inc/honeypress/features/feature-slider-section.php:160
|
544 |
-
#: inc/spice-software/customizer/slider-section.php:
|
545 |
msgid "Right"
|
546 |
msgstr ""
|
547 |
|
@@ -556,8 +558,8 @@ msgstr ""
|
|
556 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:10
|
557 |
#: inc/honeypress/features/feature-slider-section.php:168
|
558 |
#: inc/honeypress/sections/honeypress-slider-section.php:25
|
559 |
-
#: inc/spice-software/customizer/slider-section.php:
|
560 |
-
#: inc/spice-software/sections/spice-software-slider-section.php:
|
561 |
msgid ""
|
562 |
"Nulla nec dolor sit amet "
|
563 |
"lacus molestie"
|
@@ -566,7 +568,7 @@ msgstr ""
|
|
566 |
#: inc/busicare/customizer/slider-section.php:189
|
567 |
#: inc/cloudpress/features/feature-slider-section.php:84
|
568 |
#: inc/honeypress/features/feature-slider-section.php:181
|
569 |
-
#: inc/spice-software/customizer/slider-section.php:
|
570 |
msgid ""
|
571 |
"Sea summo mazim ex, ea "
|
572 |
"errem eleifend "
|
@@ -597,7 +599,7 @@ msgstr ""
|
|
597 |
#: inc/innofit/customizer/team-section.php:38
|
598 |
#: inc/innofit/customizer/testimonial-section.php:79
|
599 |
#: inc/innofit/customizer/wooproduct-section.php:37
|
600 |
-
#: inc/spice-software/customizer/slider-section.php:
|
601 |
#: inc/spicepress/features/feature-portfolio-section.php:44
|
602 |
#: inc/spicepress/features/feature-portfolio-section.php:92
|
603 |
#: inc/spicepress/features/feature-portfolio-section.php:141
|
@@ -605,7 +607,7 @@ msgstr ""
|
|
605 |
#: inc/spicepress/features/feature-service-section.php:53
|
606 |
#: inc/spicepress/features/feature-slider-section.php:88
|
607 |
#: inc/spicepress/features/feature-testimonial-section.php:83
|
608 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
609 |
msgid "Description"
|
610 |
msgstr ""
|
611 |
|
@@ -615,8 +617,8 @@ msgstr ""
|
|
615 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:13
|
616 |
#: inc/honeypress/features/feature-slider-section.php:194
|
617 |
#: inc/honeypress/sections/honeypress-slider-section.php:28
|
618 |
-
#: inc/spice-software/customizer/slider-section.php:
|
619 |
-
#: inc/spice-software/sections/spice-software-slider-section.php:
|
620 |
msgid "Nec Sem"
|
621 |
msgstr ""
|
622 |
|
@@ -629,7 +631,7 @@ msgstr ""
|
|
629 |
#: inc/honeypress/features/feature-slider-section.php:199
|
630 |
#: inc/innofit/customizer/callout-section.php:60
|
631 |
#: inc/innofit/customizer/slider-section.php:98
|
632 |
-
#: inc/spice-software/customizer/slider-section.php:
|
633 |
#: inc/spicepress/features/feature-slider-section.php:101
|
634 |
msgid "Button Text"
|
635 |
msgstr ""
|
@@ -647,9 +649,9 @@ msgstr ""
|
|
647 |
#: inc/honeypress/features/feature-slider-section.php:243
|
648 |
#: inc/innofit/customizer/callout-section.php:68
|
649 |
#: inc/innofit/customizer/slider-section.php:105
|
650 |
-
#: inc/spice-software/customizer/slider-section.php:
|
651 |
-
#: inc/spice-software/customizer/slider-section.php:
|
652 |
-
#: inc/spice-software/sections/spice-software-news-section.php:
|
653 |
#: inc/spicepress/features/feature-slider-section.php:108
|
654 |
msgid "#"
|
655 |
msgstr ""
|
@@ -660,7 +662,7 @@ msgstr ""
|
|
660 |
#: inc/honeypress/features/feature-slider-section.php:211
|
661 |
#: inc/innofit/customizer/callout-section.php:74
|
662 |
#: inc/innofit/customizer/slider-section.php:110
|
663 |
-
#: inc/spice-software/customizer/slider-section.php:
|
664 |
#: inc/spicepress/features/feature-slider-section.php:113
|
665 |
msgid "Button Link"
|
666 |
msgstr ""
|
@@ -668,14 +670,14 @@ msgstr ""
|
|
668 |
#: inc/busicare/customizer/slider-section.php:244
|
669 |
#: inc/cloudpress/features/feature-slider-section.php:139
|
670 |
#: inc/honeypress/features/feature-slider-section.php:236
|
671 |
-
#: inc/spice-software/customizer/slider-section.php:
|
672 |
msgid "Button 2 Text"
|
673 |
msgstr ""
|
674 |
|
675 |
#: inc/busicare/customizer/slider-section.php:256
|
676 |
#: inc/cloudpress/features/feature-slider-section.php:151
|
677 |
#: inc/honeypress/features/feature-slider-section.php:248
|
678 |
-
#: inc/spice-software/customizer/slider-section.php:
|
679 |
msgid "Button 2 Link"
|
680 |
msgstr ""
|
681 |
|
@@ -707,6 +709,7 @@ msgstr ""
|
|
707 |
#: inc/cloudpress/features/feature-team-section.php:59
|
708 |
#: inc/innofit/customizer/team-section.php:53
|
709 |
#: inc/spice-software/customizer/team-section.php:57
|
|
|
710 |
msgid "Team content"
|
711 |
msgstr ""
|
712 |
|
@@ -718,49 +721,50 @@ msgstr ""
|
|
718 |
#: inc/cloudpress/features/feature-team-section.php:63
|
719 |
#: inc/innofit/customizer/team-section.php:57
|
720 |
#: inc/spice-software/customizer/team-section.php:61
|
|
|
721 |
msgid "Team Member"
|
722 |
msgstr ""
|
723 |
|
724 |
#: inc/busicare/customizer/team-section.php:86
|
725 |
#: inc/busicare/customizer/testimonial-section.php:58
|
726 |
#: inc/cloudpress/features/feature-team-section.php:94
|
727 |
-
#: inc/spice-software/customizer/team-section.php:
|
728 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
729 |
msgid "Navigation Style"
|
730 |
msgstr ""
|
731 |
|
732 |
#: inc/busicare/customizer/team-section.php:91
|
733 |
#: inc/busicare/customizer/testimonial-section.php:63
|
734 |
#: inc/cloudpress/features/feature-team-section.php:99
|
735 |
-
#: inc/spice-software/customizer/team-section.php:
|
736 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
737 |
msgid "Bullets"
|
738 |
msgstr ""
|
739 |
|
740 |
#: inc/busicare/customizer/team-section.php:92
|
741 |
#: inc/busicare/customizer/testimonial-section.php:64
|
742 |
#: inc/cloudpress/features/feature-team-section.php:100
|
743 |
-
#: inc/spice-software/customizer/team-section.php:
|
744 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
745 |
msgid "Navigation"
|
746 |
msgstr ""
|
747 |
|
748 |
#: inc/busicare/customizer/team-section.php:93
|
749 |
#: inc/busicare/customizer/testimonial-section.php:65
|
750 |
#: inc/cloudpress/features/feature-team-section.php:101
|
751 |
-
#: inc/spice-software/customizer/team-section.php:
|
752 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
753 |
msgid "Both"
|
754 |
msgstr ""
|
755 |
|
756 |
#: inc/busicare/customizer/testimonial-section.php:4
|
757 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
758 |
msgid ""
|
759 |
"Testimonials Settings"
|
760 |
msgstr ""
|
761 |
|
762 |
#: inc/busicare/customizer/testimonial-section.php:17
|
763 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
764 |
msgid ""
|
765 |
"Enable/Disable "
|
766 |
"Testimonial Section"
|
@@ -771,14 +775,14 @@ msgstr ""
|
|
771 |
#: inc/cloudpress/sections/cloudpress-testimonail-section.php:15
|
772 |
#: inc/honeypress/features/feature-testimonial-section.php:85
|
773 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:40
|
774 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
775 |
#: inc/spice-software/sections/spice-software-testimonial-section.php:20
|
776 |
msgid "Proin Egestas"
|
777 |
msgstr ""
|
778 |
|
779 |
#: inc/busicare/customizer/testimonial-section.php:40
|
780 |
#: inc/innofit/customizer/testimonial-section.php:89
|
781 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
782 |
msgid "Testimonial content"
|
783 |
msgstr ""
|
784 |
|
@@ -788,7 +792,7 @@ msgstr ""
|
|
788 |
|
789 |
#: inc/busicare/customizer/testimonial-section.php:43
|
790 |
#: inc/innofit/customizer/testimonial-section.php:92
|
791 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
792 |
msgid "Testimonial"
|
793 |
msgstr ""
|
794 |
|
@@ -798,6 +802,7 @@ msgstr ""
|
|
798 |
#: inc/innofit/customizer/contact-section.php:28
|
799 |
#: inc/innofit/customizer/subscriber-section.php:71
|
800 |
#: inc/innofit/customizer/testimonial-section.php:27
|
|
|
801 |
#: inc/spicepress/features/feature-testimonial-section.php:31
|
802 |
msgid "Background Image"
|
803 |
msgstr ""
|
@@ -810,6 +815,7 @@ msgstr ""
|
|
810 |
|
811 |
#: inc/busicare/customizer/testimonial-section.php:103
|
812 |
#: inc/innofit/customizer/testimonial-section.php:52
|
|
|
813 |
#: inc/spicepress/features/feature-testimonial-section.php:56
|
814 |
msgid ""
|
815 |
"Testimonial image "
|
@@ -823,14 +829,13 @@ msgstr ""
|
|
823 |
|
824 |
#: inc/busicare/sections/busicare-news-section.php:94
|
825 |
#: inc/innofit/sections/innofit-news-section.php:97
|
826 |
-
#: inc/spice-software/sections/spice-software-news-section.php:89
|
827 |
msgid "Read More"
|
828 |
msgstr ""
|
829 |
|
830 |
#: inc/busicare/sections/busicare-slider-section.php:21
|
831 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:12
|
832 |
#: inc/honeypress/sections/honeypress-slider-section.php:27
|
833 |
-
#: inc/spice-software/sections/spice-software-slider-section.php:
|
834 |
msgid ""
|
835 |
"Sea summo mazim ex, ea "
|
836 |
"errem eleifend "
|
@@ -845,7 +850,7 @@ msgstr ""
|
|
845 |
#: inc/cloudpress/sections/cloudpress-testimonail-section.php:16
|
846 |
#: inc/honeypress/features/feature-testimonial-section.php:98
|
847 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:41
|
848 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
849 |
#: inc/spice-software/sections/spice-software-testimonial-section.php:21
|
850 |
msgid ""
|
851 |
"Nam Viverra Iaculis "
|
@@ -1053,18 +1058,19 @@ msgstr ""
|
|
1053 |
#: inc/cloudpress/features/feature-team-section.php:62
|
1054 |
#: inc/innofit/customizer/team-section.php:56
|
1055 |
#: inc/spice-software/customizer/team-section.php:60
|
|
|
1056 |
msgid "Add new Team Member"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
#: inc/cloudpress/features/feature-team-section.php:78
|
1060 |
-
#: inc/spice-software/customizer/team-section.php:
|
1061 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
1062 |
msgid "Animation speed"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: inc/cloudpress/features/feature-team-section.php:110
|
1066 |
-
#: inc/spice-software/customizer/team-section.php:
|
1067 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
1068 |
msgid "Smooth speed"
|
1069 |
msgstr ""
|
1070 |
|
@@ -1094,9 +1100,10 @@ msgstr ""
|
|
1094 |
#: inc/honeypress/features/feature-testimonial-section.php:143
|
1095 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:45
|
1096 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:92
|
1097 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
1098 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
1099 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
|
|
1100 |
msgid ""
|
1101 |
"Sed ut Perspiciatis Unde "
|
1102 |
"Omnis Iste Sed ut "
|
@@ -1133,7 +1140,7 @@ msgstr ""
|
|
1133 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:320
|
1134 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:544
|
1135 |
#: inc/honeypress/features/feature-testimonial-section.php:173
|
1136 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
1137 |
msgid "Designation"
|
1138 |
msgstr ""
|
1139 |
|
@@ -1314,7 +1321,7 @@ msgstr ""
|
|
1314 |
#: inc/controls/customizer-repeater/class/customizer-limit-repeater-control.php:605
|
1315 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:741
|
1316 |
#: inc/spicepress/features/feature-service-section.php:101
|
1317 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
1318 |
msgid "Standard"
|
1319 |
msgstr ""
|
1320 |
|
@@ -1859,6 +1866,7 @@ msgid ""
|
|
1859 |
msgstr ""
|
1860 |
|
1861 |
#: inc/innofit/customizer/testimonial-section.php:39
|
|
|
1862 |
#: inc/spicepress/features/feature-testimonial-section.php:43
|
1863 |
msgid ""
|
1864 |
"Enable testimonial image "
|
@@ -1880,7 +1888,7 @@ msgid ""
|
|
1880 |
msgstr ""
|
1881 |
|
1882 |
#: inc/innofit/customizer/testimonial-section.php:91
|
1883 |
-
#: inc/spice-software/customizer/testimonial-section.php:
|
1884 |
msgid "Add new Testimonial"
|
1885 |
msgstr ""
|
1886 |
|
@@ -1971,12 +1979,12 @@ msgid "Quisque Blandit"
|
|
1971 |
msgstr ""
|
1972 |
|
1973 |
#: inc/spice-software/customizer/team-section.php:25
|
1974 |
-
#: inc/spice-software/sections/spice-software-team-section.php:
|
1975 |
msgid "Magna Aliqua"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: inc/spice-software/customizer/team-section.php:37
|
1979 |
-
#: inc/spice-software/sections/spice-software-team-section.php:
|
1980 |
msgid ""
|
1981 |
"Ullamco Laboris Nisi"
|
1982 |
msgstr ""
|
@@ -2003,8 +2011,9 @@ msgstr ""
|
|
2003 |
#: inc/spicepress/sections/spicepress-features-section.php:11
|
2004 |
#: inc/spicepress/sections/spicepress-portfolio-section.php:10
|
2005 |
#: inc/spicepress/sections/spicepress-slider-section.php:12
|
2006 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
2007 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
|
|
2008 |
msgid ""
|
2009 |
"Sea summo mazim ex, ea "
|
2010 |
"errem eleifend "
|
@@ -2064,38 +2073,41 @@ msgid "Urna Nec"
|
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: inc/spicepress/features/feature-testimonial-section.php:65
|
2067 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
2068 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
|
|
2069 |
msgid "Lorem ipsum dolor"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
2073 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
2074 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
|
|
2075 |
msgid "Ipsum dolor"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
2079 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
2080 |
-
#: inc/spicepress/sections/spicepress-testimonail-section.php:
|
|
|
2081 |
msgid "Ligula Eget"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
2085 |
msgid "Testimonial Design"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: inc/spicepress/features/feature-testimonial-section.php:
|
2089 |
msgid "Center-effect"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2093 |
msgid "In Felis Ut"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2097 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2098 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2099 |
msgid ""
|
2100 |
"Phasellus facilisis, "
|
2101 |
"nunc in lacinia auctor, "
|
@@ -2111,11 +2123,11 @@ msgid ""
|
|
2111 |
"neque."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2115 |
msgid "Risus Vitae"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: inc/spicepress/sections/spicepress-features-section.php:
|
2119 |
msgid ""
|
2120 |
"Quis hendrerit purus"
|
2121 |
msgstr ""
|
4 |
"Project-Id-Version: "
|
5 |
"Spiceboxv1.0.0\n"
|
6 |
"POT-Creation-Date: "
|
7 |
+
"2021-09-10 19:18+0530\n"
|
8 |
"PO-Revision-Date: \n"
|
9 |
"Last-Translator: Your "
|
10 |
"Name <you@example.com>\n"
|
117 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:42
|
118 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:84
|
119 |
#: inc/spice-software/customizer/news-section.php:55
|
120 |
+
#: inc/spice-software/customizer/slider-section.php:224
|
121 |
+
#: inc/spice-software/sections/spice-software-news-section.php:7
|
122 |
+
#: inc/spice-software/sections/spice-software-news-section.php:94
|
123 |
+
#: inc/spice-software/sections/spice-software-news-section.php:173
|
124 |
+
#: inc/spice-software/sections/spice-software-slider-section.php:21
|
125 |
msgid "Cras Vitae"
|
126 |
msgstr ""
|
127 |
|
231 |
#: inc/innofit/customizer/wooproduct-section.php:26
|
232 |
#: inc/spice-software/customizer/news-section.php:33
|
233 |
#: inc/spice-software/customizer/services-section.php:31
|
234 |
+
#: inc/spice-software/customizer/slider-section.php:165
|
235 |
#: inc/spice-software/customizer/team-section.php:29
|
236 |
+
#: inc/spice-software/customizer/testimonial-section.php:30
|
237 |
#: inc/spicepress/features/feature-portfolio-section.php:31
|
238 |
#: inc/spicepress/features/feature-portfolio-section.php:78
|
239 |
#: inc/spicepress/features/feature-portfolio-section.php:127
|
241 |
#: inc/spicepress/features/feature-service-section.php:40
|
242 |
#: inc/spicepress/features/feature-slider-section.php:76
|
243 |
#: inc/spicepress/features/feature-testimonial-section.php:70
|
244 |
+
#: inc/spicepress/features/feature-testimonial-section.php:136
|
245 |
msgid "Title"
|
246 |
msgstr ""
|
247 |
|
262 |
#: inc/spice-software/customizer/news-section.php:46
|
263 |
#: inc/spice-software/customizer/services-section.php:47
|
264 |
#: inc/spice-software/customizer/team-section.php:42
|
265 |
+
#: inc/spice-software/customizer/testimonial-section.php:43
|
266 |
msgid "Sub Title"
|
267 |
msgstr ""
|
268 |
|
307 |
#: inc/innofit/customizer/callout-section.php:90
|
308 |
#: inc/innofit/customizer/slider-section.php:123
|
309 |
#: inc/spice-software/customizer/news-section.php:131
|
310 |
+
#: inc/spice-software/customizer/slider-section.php:216
|
311 |
+
#: inc/spice-software/customizer/slider-section.php:254
|
312 |
#: inc/spicepress/features/feature-slider-section.php:126
|
313 |
msgid ""
|
314 |
"Open link in new tab"
|
423 |
#: inc/innofit/customizer/about-section.php:73
|
424 |
#: inc/innofit/customizer/slider-section.php:32
|
425 |
#: inc/spice-software/customizer/slider-section.php:34
|
426 |
+
#: inc/spice-software/customizer/slider-section.php:99
|
427 |
#: inc/spicepress/features/feature-portfolio-section.php:59
|
428 |
#: inc/spicepress/features/feature-portfolio-section.php:108
|
429 |
#: inc/spicepress/features/feature-portfolio-section.php:157
|
430 |
#: inc/spicepress/features/feature-slider-section.php:35
|
431 |
+
#: inc/spicepress/features/feature-testimonial-section.php:105
|
432 |
msgid "Image"
|
433 |
msgstr ""
|
434 |
|
505 |
msgstr ""
|
506 |
|
507 |
#: inc/busicare/customizer/slider-section.php:118
|
508 |
+
#: inc/spice-software/customizer/slider-section.php:115
|
509 |
msgid ""
|
510 |
"Enable/Disable slider "
|
511 |
"image overlay"
|
515 |
#: inc/cloudpress/features/feature-slider-section.php:63
|
516 |
#: inc/honeypress/features/feature-slider-section.php:140
|
517 |
#: inc/innofit/customizer/slider-section.php:60
|
518 |
+
#: inc/spice-software/customizer/slider-section.php:130
|
519 |
#: inc/spicepress/features/feature-slider-section.php:63
|
520 |
msgid ""
|
521 |
"Slider image overlay "
|
524 |
|
525 |
#: inc/busicare/customizer/slider-section.php:149
|
526 |
#: inc/honeypress/features/feature-slider-section.php:155
|
527 |
+
#: inc/spice-software/customizer/slider-section.php:146
|
528 |
msgid ""
|
529 |
"Slider Content Alignment"
|
530 |
msgstr ""
|
531 |
|
532 |
#: inc/busicare/customizer/slider-section.php:153
|
533 |
#: inc/honeypress/features/feature-slider-section.php:158
|
534 |
+
#: inc/spice-software/customizer/slider-section.php:150
|
535 |
msgid "Left"
|
536 |
msgstr ""
|
537 |
|
538 |
#: inc/busicare/customizer/slider-section.php:154
|
539 |
#: inc/honeypress/features/feature-slider-section.php:159
|
540 |
+
#: inc/spice-software/customizer/slider-section.php:151
|
541 |
msgid "Center"
|
542 |
msgstr ""
|
543 |
|
544 |
#: inc/busicare/customizer/slider-section.php:155
|
545 |
#: inc/honeypress/features/feature-slider-section.php:160
|
546 |
+
#: inc/spice-software/customizer/slider-section.php:152
|
547 |
msgid "Right"
|
548 |
msgstr ""
|
549 |
|
558 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:10
|
559 |
#: inc/honeypress/features/feature-slider-section.php:168
|
560 |
#: inc/honeypress/sections/honeypress-slider-section.php:25
|
561 |
+
#: inc/spice-software/customizer/slider-section.php:160
|
562 |
+
#: inc/spice-software/sections/spice-software-slider-section.php:15
|
563 |
msgid ""
|
564 |
"Nulla nec dolor sit amet "
|
565 |
"lacus molestie"
|
568 |
#: inc/busicare/customizer/slider-section.php:189
|
569 |
#: inc/cloudpress/features/feature-slider-section.php:84
|
570 |
#: inc/honeypress/features/feature-slider-section.php:181
|
571 |
+
#: inc/spice-software/customizer/slider-section.php:173
|
572 |
msgid ""
|
573 |
"Sea summo mazim ex, ea "
|
574 |
"errem eleifend "
|
599 |
#: inc/innofit/customizer/team-section.php:38
|
600 |
#: inc/innofit/customizer/testimonial-section.php:79
|
601 |
#: inc/innofit/customizer/wooproduct-section.php:37
|
602 |
+
#: inc/spice-software/customizer/slider-section.php:177
|
603 |
#: inc/spicepress/features/feature-portfolio-section.php:44
|
604 |
#: inc/spicepress/features/feature-portfolio-section.php:92
|
605 |
#: inc/spicepress/features/feature-portfolio-section.php:141
|
607 |
#: inc/spicepress/features/feature-service-section.php:53
|
608 |
#: inc/spicepress/features/feature-slider-section.php:88
|
609 |
#: inc/spicepress/features/feature-testimonial-section.php:83
|
610 |
+
#: inc/spicepress/features/feature-testimonial-section.php:122
|
611 |
msgid "Description"
|
612 |
msgstr ""
|
613 |
|
617 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:13
|
618 |
#: inc/honeypress/features/feature-slider-section.php:194
|
619 |
#: inc/honeypress/sections/honeypress-slider-section.php:28
|
620 |
+
#: inc/spice-software/customizer/slider-section.php:186
|
621 |
+
#: inc/spice-software/sections/spice-software-slider-section.php:17
|
622 |
msgid "Nec Sem"
|
623 |
msgstr ""
|
624 |
|
631 |
#: inc/honeypress/features/feature-slider-section.php:199
|
632 |
#: inc/innofit/customizer/callout-section.php:60
|
633 |
#: inc/innofit/customizer/slider-section.php:98
|
634 |
+
#: inc/spice-software/customizer/slider-section.php:190
|
635 |
#: inc/spicepress/features/feature-slider-section.php:101
|
636 |
msgid "Button Text"
|
637 |
msgstr ""
|
649 |
#: inc/honeypress/features/feature-slider-section.php:243
|
650 |
#: inc/innofit/customizer/callout-section.php:68
|
651 |
#: inc/innofit/customizer/slider-section.php:105
|
652 |
+
#: inc/spice-software/customizer/slider-section.php:198
|
653 |
+
#: inc/spice-software/customizer/slider-section.php:236
|
654 |
+
#: inc/spice-software/sections/spice-software-news-section.php:6
|
655 |
#: inc/spicepress/features/feature-slider-section.php:108
|
656 |
msgid "#"
|
657 |
msgstr ""
|
662 |
#: inc/honeypress/features/feature-slider-section.php:211
|
663 |
#: inc/innofit/customizer/callout-section.php:74
|
664 |
#: inc/innofit/customizer/slider-section.php:110
|
665 |
+
#: inc/spice-software/customizer/slider-section.php:202
|
666 |
#: inc/spicepress/features/feature-slider-section.php:113
|
667 |
msgid "Button Link"
|
668 |
msgstr ""
|
670 |
#: inc/busicare/customizer/slider-section.php:244
|
671 |
#: inc/cloudpress/features/feature-slider-section.php:139
|
672 |
#: inc/honeypress/features/feature-slider-section.php:236
|
673 |
+
#: inc/spice-software/customizer/slider-section.php:228
|
674 |
msgid "Button 2 Text"
|
675 |
msgstr ""
|
676 |
|
677 |
#: inc/busicare/customizer/slider-section.php:256
|
678 |
#: inc/cloudpress/features/feature-slider-section.php:151
|
679 |
#: inc/honeypress/features/feature-slider-section.php:248
|
680 |
+
#: inc/spice-software/customizer/slider-section.php:240
|
681 |
msgid "Button 2 Link"
|
682 |
msgstr ""
|
683 |
|
709 |
#: inc/cloudpress/features/feature-team-section.php:59
|
710 |
#: inc/innofit/customizer/team-section.php:53
|
711 |
#: inc/spice-software/customizer/team-section.php:57
|
712 |
+
#: inc/spice-software/customizer/team-section.php:76
|
713 |
msgid "Team content"
|
714 |
msgstr ""
|
715 |
|
721 |
#: inc/cloudpress/features/feature-team-section.php:63
|
722 |
#: inc/innofit/customizer/team-section.php:57
|
723 |
#: inc/spice-software/customizer/team-section.php:61
|
724 |
+
#: inc/spice-software/customizer/team-section.php:80
|
725 |
msgid "Team Member"
|
726 |
msgstr ""
|
727 |
|
728 |
#: inc/busicare/customizer/team-section.php:86
|
729 |
#: inc/busicare/customizer/testimonial-section.php:58
|
730 |
#: inc/cloudpress/features/feature-team-section.php:94
|
731 |
+
#: inc/spice-software/customizer/team-section.php:114
|
732 |
+
#: inc/spice-software/customizer/testimonial-section.php:114
|
733 |
msgid "Navigation Style"
|
734 |
msgstr ""
|
735 |
|
736 |
#: inc/busicare/customizer/team-section.php:91
|
737 |
#: inc/busicare/customizer/testimonial-section.php:63
|
738 |
#: inc/cloudpress/features/feature-team-section.php:99
|
739 |
+
#: inc/spice-software/customizer/team-section.php:119
|
740 |
+
#: inc/spice-software/customizer/testimonial-section.php:119
|
741 |
msgid "Bullets"
|
742 |
msgstr ""
|
743 |
|
744 |
#: inc/busicare/customizer/team-section.php:92
|
745 |
#: inc/busicare/customizer/testimonial-section.php:64
|
746 |
#: inc/cloudpress/features/feature-team-section.php:100
|
747 |
+
#: inc/spice-software/customizer/team-section.php:120
|
748 |
+
#: inc/spice-software/customizer/testimonial-section.php:120
|
749 |
msgid "Navigation"
|
750 |
msgstr ""
|
751 |
|
752 |
#: inc/busicare/customizer/team-section.php:93
|
753 |
#: inc/busicare/customizer/testimonial-section.php:65
|
754 |
#: inc/cloudpress/features/feature-team-section.php:101
|
755 |
+
#: inc/spice-software/customizer/team-section.php:121
|
756 |
+
#: inc/spice-software/customizer/testimonial-section.php:121
|
757 |
msgid "Both"
|
758 |
msgstr ""
|
759 |
|
760 |
#: inc/busicare/customizer/testimonial-section.php:4
|
761 |
+
#: inc/spice-software/customizer/testimonial-section.php:5
|
762 |
msgid ""
|
763 |
"Testimonials Settings"
|
764 |
msgstr ""
|
765 |
|
766 |
#: inc/busicare/customizer/testimonial-section.php:17
|
767 |
+
#: inc/spice-software/customizer/testimonial-section.php:18
|
768 |
msgid ""
|
769 |
"Enable/Disable "
|
770 |
"Testimonial Section"
|
775 |
#: inc/cloudpress/sections/cloudpress-testimonail-section.php:15
|
776 |
#: inc/honeypress/features/feature-testimonial-section.php:85
|
777 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:40
|
778 |
+
#: inc/spice-software/customizer/testimonial-section.php:26
|
779 |
#: inc/spice-software/sections/spice-software-testimonial-section.php:20
|
780 |
msgid "Proin Egestas"
|
781 |
msgstr ""
|
782 |
|
783 |
#: inc/busicare/customizer/testimonial-section.php:40
|
784 |
#: inc/innofit/customizer/testimonial-section.php:89
|
785 |
+
#: inc/spice-software/customizer/testimonial-section.php:54
|
786 |
msgid "Testimonial content"
|
787 |
msgstr ""
|
788 |
|
792 |
|
793 |
#: inc/busicare/customizer/testimonial-section.php:43
|
794 |
#: inc/innofit/customizer/testimonial-section.php:92
|
795 |
+
#: inc/spice-software/customizer/testimonial-section.php:57
|
796 |
msgid "Testimonial"
|
797 |
msgstr ""
|
798 |
|
802 |
#: inc/innofit/customizer/contact-section.php:28
|
803 |
#: inc/innofit/customizer/subscriber-section.php:71
|
804 |
#: inc/innofit/customizer/testimonial-section.php:27
|
805 |
+
#: inc/spice-software/customizer/testimonial-section.php:76
|
806 |
#: inc/spicepress/features/feature-testimonial-section.php:31
|
807 |
msgid "Background Image"
|
808 |
msgstr ""
|
815 |
|
816 |
#: inc/busicare/customizer/testimonial-section.php:103
|
817 |
#: inc/innofit/customizer/testimonial-section.php:52
|
818 |
+
#: inc/spice-software/customizer/testimonial-section.php:104
|
819 |
#: inc/spicepress/features/feature-testimonial-section.php:56
|
820 |
msgid ""
|
821 |
"Testimonial image "
|
829 |
|
830 |
#: inc/busicare/sections/busicare-news-section.php:94
|
831 |
#: inc/innofit/sections/innofit-news-section.php:97
|
|
|
832 |
msgid "Read More"
|
833 |
msgstr ""
|
834 |
|
835 |
#: inc/busicare/sections/busicare-slider-section.php:21
|
836 |
#: inc/cloudpress/sections/cloudpress-slider-section.php:12
|
837 |
#: inc/honeypress/sections/honeypress-slider-section.php:27
|
838 |
+
#: inc/spice-software/sections/spice-software-slider-section.php:16
|
839 |
msgid ""
|
840 |
"Sea summo mazim ex, ea "
|
841 |
"errem eleifend "
|
850 |
#: inc/cloudpress/sections/cloudpress-testimonail-section.php:16
|
851 |
#: inc/honeypress/features/feature-testimonial-section.php:98
|
852 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:41
|
853 |
+
#: inc/spice-software/customizer/testimonial-section.php:39
|
854 |
#: inc/spice-software/sections/spice-software-testimonial-section.php:21
|
855 |
msgid ""
|
856 |
"Nam Viverra Iaculis "
|
1058 |
#: inc/cloudpress/features/feature-team-section.php:62
|
1059 |
#: inc/innofit/customizer/team-section.php:56
|
1060 |
#: inc/spice-software/customizer/team-section.php:60
|
1061 |
+
#: inc/spice-software/customizer/team-section.php:79
|
1062 |
msgid "Add new Team Member"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: inc/cloudpress/features/feature-team-section.php:78
|
1066 |
+
#: inc/spice-software/customizer/team-section.php:97
|
1067 |
+
#: inc/spice-software/customizer/testimonial-section.php:130
|
1068 |
msgid "Animation speed"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: inc/cloudpress/features/feature-team-section.php:110
|
1072 |
+
#: inc/spice-software/customizer/team-section.php:130
|
1073 |
+
#: inc/spice-software/customizer/testimonial-section.php:147
|
1074 |
msgid "Smooth speed"
|
1075 |
msgstr ""
|
1076 |
|
1100 |
#: inc/honeypress/features/feature-testimonial-section.php:143
|
1101 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:45
|
1102 |
#: inc/honeypress/sections/honeypress-testimonail-section.php:92
|
1103 |
+
#: inc/spicepress/features/feature-testimonial-section.php:117
|
1104 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:47
|
1105 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:124
|
1106 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:199
|
1107 |
msgid ""
|
1108 |
"Sed ut Perspiciatis Unde "
|
1109 |
"Omnis Iste Sed ut "
|
1140 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:320
|
1141 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:544
|
1142 |
#: inc/honeypress/features/feature-testimonial-section.php:173
|
1143 |
+
#: inc/spicepress/features/feature-testimonial-section.php:149
|
1144 |
msgid "Designation"
|
1145 |
msgstr ""
|
1146 |
|
1321 |
#: inc/controls/customizer-repeater/class/customizer-limit-repeater-control.php:605
|
1322 |
#: inc/controls/customizer-repeater/class/customizer-repeater-control.php:741
|
1323 |
#: inc/spicepress/features/feature-service-section.php:101
|
1324 |
+
#: inc/spicepress/features/feature-testimonial-section.php:179
|
1325 |
msgid "Standard"
|
1326 |
msgstr ""
|
1327 |
|
1866 |
msgstr ""
|
1867 |
|
1868 |
#: inc/innofit/customizer/testimonial-section.php:39
|
1869 |
+
#: inc/spice-software/customizer/testimonial-section.php:90
|
1870 |
#: inc/spicepress/features/feature-testimonial-section.php:43
|
1871 |
msgid ""
|
1872 |
"Enable testimonial image "
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: inc/innofit/customizer/testimonial-section.php:91
|
1891 |
+
#: inc/spice-software/customizer/testimonial-section.php:56
|
1892 |
msgid "Add new Testimonial"
|
1893 |
msgstr ""
|
1894 |
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: inc/spice-software/customizer/team-section.php:25
|
1982 |
+
#: inc/spice-software/sections/spice-software-team-section.php:158
|
1983 |
msgid "Magna Aliqua"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: inc/spice-software/customizer/team-section.php:37
|
1987 |
+
#: inc/spice-software/sections/spice-software-team-section.php:159
|
1988 |
msgid ""
|
1989 |
"Ullamco Laboris Nisi"
|
1990 |
msgstr ""
|
2011 |
#: inc/spicepress/sections/spicepress-features-section.php:11
|
2012 |
#: inc/spicepress/sections/spicepress-portfolio-section.php:10
|
2013 |
#: inc/spicepress/sections/spicepress-slider-section.php:12
|
2014 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:43
|
2015 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:120
|
2016 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:195
|
2017 |
msgid ""
|
2018 |
"Sea summo mazim ex, ea "
|
2019 |
"errem eleifend "
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#: inc/spicepress/features/feature-testimonial-section.php:65
|
2076 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:42
|
2077 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:119
|
2078 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:194
|
2079 |
msgid "Lorem ipsum dolor"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: inc/spicepress/features/feature-testimonial-section.php:131
|
2083 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:44
|
2084 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:121
|
2085 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:196
|
2086 |
msgid "Ipsum dolor"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: inc/spicepress/features/feature-testimonial-section.php:144
|
2090 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:45
|
2091 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:122
|
2092 |
+
#: inc/spicepress/sections/spicepress-testimonail-section.php:197
|
2093 |
msgid "Ligula Eget"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: inc/spicepress/features/feature-testimonial-section.php:174
|
2097 |
msgid "Testimonial Design"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: inc/spicepress/features/feature-testimonial-section.php:183
|
2101 |
msgid "Center-effect"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: inc/spicepress/sections/spicepress-features-section.php:193
|
2105 |
msgid "In Felis Ut"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: inc/spicepress/sections/spicepress-features-section.php:194
|
2109 |
+
#: inc/spicepress/sections/spicepress-features-section.php:202
|
2110 |
+
#: inc/spicepress/sections/spicepress-features-section.php:210
|
2111 |
msgid ""
|
2112 |
"Phasellus facilisis, "
|
2113 |
"nunc in lacinia auctor, "
|
2123 |
"neque."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: inc/spicepress/sections/spicepress-features-section.php:201
|
2127 |
msgid "Risus Vitae"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: inc/spicepress/sections/spicepress-features-section.php:209
|
2131 |
msgid ""
|
2132 |
"Quis hendrerit purus"
|
2133 |
msgstr ""
|
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.8
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -240,6 +240,12 @@ Fixed minor issues of HoneyPress child themes.
|
|
240 |
1. Added homepage sections for Busicare Dark child theme.
|
241 |
2. Added homepage sections for CloudPress Dark child theme.
|
242 |
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
=======External resources=======
|
244 |
|
245 |
Alpha color picker Control:
|
@@ -346,4 +352,9 @@ License CC0 Public Domain
|
|
346 |
4. https://pxhere.com/en/photo/1596737
|
347 |
5. https://pxhere.com/en/photo/99184
|
348 |
6. https://pxhere.com/en/photo/1576793
|
349 |
-
7. https://pxhere.com/en/photo/816420
|
|
|
|
|
|
|
|
|
|
3 |
Tags: widget, admin, widgets
|
4 |
Requires at least: 3.3+
|
5 |
Tested up to: 5.8
|
6 |
+
Stable tag: 1.8
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
240 |
1. Added homepage sections for Busicare Dark child theme.
|
241 |
2. Added homepage sections for CloudPress Dark child theme.
|
242 |
|
243 |
+
= 1.8 =
|
244 |
+
1. Added homepage sections for SpicePress Dark child theme.
|
245 |
+
2. Added homepage sections for Spice Software Dark child theme.
|
246 |
+
3. Compressed all images and removed the unnecessary images.
|
247 |
+
4. Fixed container setting issue with video slider in HoneyPress theme.
|
248 |
+
|
249 |
=======External resources=======
|
250 |
|
251 |
Alpha color picker Control:
|
352 |
4. https://pxhere.com/en/photo/1596737
|
353 |
5. https://pxhere.com/en/photo/99184
|
354 |
6. https://pxhere.com/en/photo/1576793
|
355 |
+
7. https://pxhere.com/en/photo/816420
|
356 |
+
|
357 |
+
== SpicePress Dark Images ==
|
358 |
+
|
359 |
+
* Image used in testimonial
|
360 |
+
https://pxhere.com/en/photo/827076
|
spicebox.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: SpiceBox
|
4 |
Description: Enhances SpiceThemes with extra functionality.
|
5 |
-
Version: 1.
|
6 |
Author: Spicethemes
|
7 |
Author URI: https://spicethemes.com
|
8 |
Text Domain: spicebox
|
@@ -12,7 +12,7 @@ define( 'SPICEB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
|
12 |
error_reporting(0);
|
13 |
function spiceb_activate() {
|
14 |
$theme = wp_get_theme(); // gets the current theme
|
15 |
-
if ( 'SpicePress' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name){
|
16 |
|
17 |
//Alpha Color Control
|
18 |
require_once('inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php');
|
@@ -199,10 +199,10 @@ function spiceb_activate() {
|
|
199 |
}
|
200 |
|
201 |
//Spice Software
|
202 |
-
if ( 'Spice Software' == $theme->name || 'Spice Software Child' == $theme->name){
|
203 |
|
204 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
205 |
-
|
206 |
if ( ! is_plugin_active( 'spice-software-plus/spice-software-plus.php' ) ):
|
207 |
|
208 |
require_once('inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php');
|
@@ -249,7 +249,7 @@ add_action( 'init', 'spiceb_activate' );
|
|
249 |
|
250 |
|
251 |
$theme = wp_get_theme();
|
252 |
-
if ( 'SpicePress' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'Chilly' == $theme->name || 'SpiceBlue' == $theme->name || 'SpicePress Child' == $theme->name){
|
253 |
|
254 |
|
255 |
register_activation_hook( __FILE__, 'spiceb_install_function');
|
@@ -343,7 +343,7 @@ if ( 'BusiCare' == $theme->name || 'BusiCare Child' == $theme->name || 'BusiCare
|
|
343 |
}
|
344 |
|
345 |
// Spice Software
|
346 |
-
if ( 'Spice Software' == $theme->name || 'Spice Software Child' == $theme->name){
|
347 |
register_activation_hook( __FILE__, 'spiceb_spice_software_install_function');
|
348 |
function spiceb_spice_software_install_function(){
|
349 |
$item_details_page = get_option('item_details_page');
|
@@ -414,7 +414,7 @@ endif;
|
|
414 |
|
415 |
|
416 |
|
417 |
-
if ('SpicePress' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name || 'Chilly' == $theme->name)
|
418 |
{
|
419 |
add_action( 'switch_theme', 'spicepresstheme_deactivate_message' );
|
420 |
function spicepresstheme_deactivate_message()
|
2 |
/*
|
3 |
Plugin Name: SpiceBox
|
4 |
Description: Enhances SpiceThemes with extra functionality.
|
5 |
+
Version: 1.8
|
6 |
Author: Spicethemes
|
7 |
Author URI: https://spicethemes.com
|
8 |
Text Domain: spicebox
|
12 |
error_reporting(0);
|
13 |
function spiceb_activate() {
|
14 |
$theme = wp_get_theme(); // gets the current theme
|
15 |
+
if ( 'SpicePress' == $theme->name || 'SpicePress Dark' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name){
|
16 |
|
17 |
//Alpha Color Control
|
18 |
require_once('inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php');
|
199 |
}
|
200 |
|
201 |
//Spice Software
|
202 |
+
if ( 'Spice Software' == $theme->name || 'Spice Software Dark' == $theme->name || 'Spice Software Child' == $theme->name){
|
203 |
|
204 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
205 |
+
require_once('inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php');
|
206 |
if ( ! is_plugin_active( 'spice-software-plus/spice-software-plus.php' ) ):
|
207 |
|
208 |
require_once('inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php');
|
249 |
|
250 |
|
251 |
$theme = wp_get_theme();
|
252 |
+
if ( 'SpicePress' == $theme->name || 'SpicePress Dark' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'Chilly' == $theme->name || 'SpiceBlue' == $theme->name || 'SpicePress Child' == $theme->name){
|
253 |
|
254 |
|
255 |
register_activation_hook( __FILE__, 'spiceb_install_function');
|
343 |
}
|
344 |
|
345 |
// Spice Software
|
346 |
+
if ( 'Spice Software' == $theme->name || 'Spice Software Dark' == $theme->name || 'Spice Software Child' == $theme->name){
|
347 |
register_activation_hook( __FILE__, 'spiceb_spice_software_install_function');
|
348 |
function spiceb_spice_software_install_function(){
|
349 |
$item_details_page = get_option('item_details_page');
|
414 |
|
415 |
|
416 |
|
417 |
+
if ('SpicePress' == $theme->name || 'SpicePress Dark' == $theme->name || 'Rockers' == $theme->name || 'Content' == $theme->name || 'Certify' == $theme->name || 'Stacy' == $theme->name || 'SpicePress Child Theme' == $theme->name || 'SpicePress Child' == $theme->name || 'Chilly' == $theme->name)
|
418 |
{
|
419 |
add_action( 'switch_theme', 'spicepresstheme_deactivate_message' );
|
420 |
function spicepresstheme_deactivate_message()
|