Spice Box - Version 1.3.2

Version Description

Download this release

Release Info

Developer spicethemes
Plugin Icon wp plugin Spice Box
Version 1.3.2
Comparing to
See all releases

Code changes from version 1.3.1 to 1.3.2

inc/controls/customizer-repeater/js/customizer_repeater.js CHANGED
@@ -341,6 +341,13 @@ jQuery(document).ready(function () {
341
  return false;
342
  });
343
 
 
 
 
 
 
 
 
344
 
345
  theme_conrols.on('keyup', '.customizer-repeater-title-control', function () {
346
  customizer_repeater_refresh_general_control_values();
341
  return false;
342
  });
343
 
344
+ theme_conrols.on('click', '.customizer-repeater-checkbox', function (event) {
345
+ if (this.checked) {
346
+ this.setAttribute("checked", "checked");
347
+ } else {
348
+ this.removeAttribute("checked");
349
+ }
350
+ });
351
 
352
  theme_conrols.on('keyup', '.customizer-repeater-title-control', function () {
353
  customizer_repeater_refresh_general_control_values();
inc/honeypress/default-pages/upload-media.php CHANGED
@@ -18,6 +18,10 @@ if ($theme->name == 'HoneyWaves') {
18
  $images = array(
19
  $ImagePath . '/tromas-logo.png',
20
  );
 
 
 
 
21
  } else {
22
  $images = array(
23
  $ImagePath . '/logo.png',
18
  $images = array(
19
  $ImagePath . '/tromas-logo.png',
20
  );
21
+ } elseif ($theme->name == 'HoneyBee') {
22
+ $images = array(
23
+ $ImagePath . '/honeybee-logo.png',
24
+ );
25
  } else {
26
  $images = array(
27
  $ImagePath . '/logo.png',
inc/honeypress/features/feature-slider-section.php CHANGED
@@ -42,6 +42,9 @@ if (!function_exists('spiceb_honeypress_slider_customize_register')) :
42
  }elseif ($theme->name == 'HoneyWaves') {
43
  $wp_customize->add_setting('home_slider_image', array('default' => SPICEB_PLUGIN_URL . 'inc/honeypress/images/slider/honeywaves-slider.jpg',
44
  'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
 
 
 
45
  } else {
46
  $wp_customize->add_setting('home_slider_image', array('default' => SPICEB_PLUGIN_URL . 'inc/honeypress/images/slider/slider.jpg',
47
  'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
42
  }elseif ($theme->name == 'HoneyWaves') {
43
  $wp_customize->add_setting('home_slider_image', array('default' => SPICEB_PLUGIN_URL . 'inc/honeypress/images/slider/honeywaves-slider.jpg',
44
  'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
45
+ }elseif ($theme->name == 'HoneyBee') {
46
+ $wp_customize->add_setting('home_slider_image', array('default' => SPICEB_PLUGIN_URL . 'inc/honeypress/images/slider/honeybee-slider.jpg',
47
+ 'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
48
  } else {
49
  $wp_customize->add_setting('home_slider_image', array('default' => SPICEB_PLUGIN_URL . 'inc/honeypress/images/slider/slider.jpg',
50
  'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
inc/honeypress/features/feature-testimonial-section.php CHANGED
@@ -54,6 +54,12 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
54
  'default' => 'rgba(0, 0, 0, 0.9)',
55
  ) );
56
  }
 
 
 
 
 
 
57
  else{
58
  $wp_customize->add_setting( 'testimonial_overlay_section_color', array(
59
  'sanitize_callback' => 'sanitize_text_field',
@@ -94,9 +100,23 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
94
  ));
95
 
96
  //testimonial one image
97
- $wp_customize->add_setting( 'home_testimonial_thumb',array('default' => SPICEB_PLUGIN_URL .'inc/honeypress/images/testimonial/testi1.jpg',
98
- 'sanitize_callback' => 'esc_url_raw', 'transport' => $selective_refresh,));
99
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  $wp_customize->add_control(
101
  new WP_Customize_Image_Control(
102
  $wp_customize,
54
  'default' => 'rgba(0, 0, 0, 0.9)',
55
  ) );
56
  }
57
+ elseif( $theme->name=='HoneyBee'){
58
+ $wp_customize->add_setting( 'testimonial_overlay_section_color', array(
59
+ 'sanitize_callback' => 'sanitize_text_field',
60
+ 'default' => 'rgba(248, 145, 8, 0.9)',
61
+ ) );
62
+ }
63
  else{
64
  $wp_customize->add_setting( 'testimonial_overlay_section_color', array(
65
  'sanitize_callback' => 'sanitize_text_field',
100
  ));
101
 
102
  //testimonial one image
103
+ $theme = wp_get_theme();
104
+ if ($theme->name == 'HoneyBee') {
105
+ $wp_customize->add_setting( 'home_testimonial_thumb',
106
+ array(
107
+ 'default' => SPICEB_PLUGIN_URL .'inc/honeypress/images/testimonial/user1.jpg',
108
+ 'sanitize_callback' => 'esc_url_raw',
109
+ 'transport' => $selective_refresh,
110
+ ));
111
+ } else{
112
+ $wp_customize->add_setting( 'home_testimonial_thumb',
113
+ array(
114
+ 'default' => SPICEB_PLUGIN_URL .'inc/honeypress/images/testimonial/testi1.jpg',
115
+ 'sanitize_callback' => 'esc_url_raw',
116
+ 'transport' => $selective_refresh,
117
+ ));
118
+ }
119
+
120
  $wp_customize->add_control(
121
  new WP_Customize_Image_Control(
122
  $wp_customize,
inc/honeypress/images/honeybee-logo.png ADDED
Binary file
inc/honeypress/images/slider/honeybee-slider.jpg ADDED
Binary file
inc/honeypress/images/testimonial/user1.jpg ADDED
Binary file
inc/honeypress/sections/honeypress-service-section.php CHANGED
@@ -14,6 +14,8 @@ if (!function_exists('spiceb_honeypress_service')) :
14
  $service_variant_class = 'section-module services2 service_wrapper';
15
  } elseif ($theme->name == 'Tromas') {
16
  $service_variant_class = 'section-module services5 service_wrapper';
 
 
17
  } else {
18
  $service_variant_class = 'section-module services';
19
  }
14
  $service_variant_class = 'section-module services2 service_wrapper';
15
  } elseif ($theme->name == 'Tromas') {
16
  $service_variant_class = 'section-module services5 service_wrapper';
17
+ } elseif ($theme->name == 'HoneyBee') {
18
+ $service_variant_class = 'section-module services7';
19
  } else {
20
  $service_variant_class = 'section-module services';
21
  }
inc/honeypress/sections/honeypress-slider-section.php CHANGED
@@ -9,6 +9,8 @@ if ( ! function_exists( 'spiceb_honeypress_slider' ) ) :
9
  $theme = wp_get_theme();
10
  if( $theme->name=='HoneyWaves'){
11
  $home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/honeypress/images/slider/honeywaves-slider.jpg');
 
 
12
  }elseif( $theme->name=='Radix Multipurpose'){
13
  $home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/honeypress/images/slider/radix-multipurpose-slider.jpg');
14
  }elseif( $theme->name=='Bizhunt'){
9
  $theme = wp_get_theme();
10
  if( $theme->name=='HoneyWaves'){
11
  $home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/honeypress/images/slider/honeywaves-slider.jpg');
12
+ }elseif( $theme->name=='HoneyBee'){
13
+ $home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/honeypress/images/slider/honeybee-slider.jpg');
14
  }elseif( $theme->name=='Radix Multipurpose'){
15
  $home_slider_image = get_theme_mod('home_slider_image',SPICEB_PLUGIN_URL .'inc/honeypress/images/slider/radix-multipurpose-slider.jpg');
16
  }elseif( $theme->name=='Bizhunt'){
inc/honeypress/sections/honeypress-testimonail-section.php CHANGED
@@ -11,19 +11,27 @@ if (!function_exists('spiceb_honeypress_testimonial')) :
11
  $theme = wp_get_theme();
12
  if ($theme->name == 'HoneyPress') {
13
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 76, 236, 0.9)');
 
14
  } elseif ($theme->name == 'Radix Multipurpose') {
15
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(130, 180, 64, 0.9)');
 
16
  } elseif ($theme->name == 'Bizhunt') {
17
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(105,116,234,0.9)');
 
18
  } elseif ($theme->name == 'Tromas') {
19
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(206, 27, 40,0.9)');
 
20
  }elseif ($theme->name == 'HoneyWaves') {
21
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 0, 0, 0.9)');
 
 
 
 
22
  } else {
23
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 76, 236, 0.9)');
24
- }
25
- ?>
26
- <section class="section-module testimonial" style="background-color:<?php echo $testimonial_overlay_section_color; ?>">
27
  <div class="container">
28
  <?php
29
  $home_testimonial_section_title = get_theme_mod('home_testimonial_section_title', __('Proin Egestas', 'spicebox'));
@@ -72,10 +80,14 @@ if (!function_exists('honeypress_testimonial_variant')) :
72
  function honeypress_testimonial_variant() {
73
  $home_testimonial_title = get_theme_mod('home_testimonial_title', __('Cras Vitae', 'spicebox'));
74
  $home_testimonial_designation = get_theme_mod('home_testimonial_designation', __('Eu Suscipit', 'spicebox'));
75
- $home_testimonial_thumb = get_theme_mod('home_testimonial_thumb', SPICEB_PLUGIN_URL . 'inc/honeypress/images/testimonial/testi1.jpg');
76
- $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'));
77
-
78
  $theme = wp_get_theme();
 
 
 
 
 
 
 
79
  if ($theme->name == 'HoneyWaves') {
80
  ?>
81
  <div id="testimonial-carousel2" >
@@ -96,6 +108,29 @@ if (!function_exists('honeypress_testimonial_variant')) :
96
  </article>
97
  </div>
98
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  <?php } elseif ($theme->name == 'HoneyPress') {
100
  ?>
101
  <div class="col-md-12">
11
  $theme = wp_get_theme();
12
  if ($theme->name == 'HoneyPress') {
13
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 76, 236, 0.9)');
14
+ $testimonial_section_class="section-module testimonial";
15
  } elseif ($theme->name == 'Radix Multipurpose') {
16
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(130, 180, 64, 0.9)');
17
+ $testimonial_section_class="section-module testimonial";
18
  } elseif ($theme->name == 'Bizhunt') {
19
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(105,116,234,0.9)');
20
+ $testimonial_section_class="section-module testimonial";
21
  } elseif ($theme->name == 'Tromas') {
22
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(206, 27, 40,0.9)');
23
+ $testimonial_section_class="section-module testimonial";
24
  }elseif ($theme->name == 'HoneyWaves') {
25
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 0, 0, 0.9)');
26
+ $testimonial_section_class="section-module testimonial";
27
+ } elseif ($theme->name == 'HoneyBee') {
28
+ $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(248, 145, 8, 0.9)');
29
+ $testimonial_section_class="section-module testimonial7";
30
  } else {
31
  $testimonial_overlay_section_color = get_theme_mod('testimonial_overlay_section_color', 'rgba(0, 76, 236, 0.9)');
32
+ $testimonial_section_class="section-module testimonial";
33
+ }?>
34
+ <section class="<?php echo esc_attr($testimonial_section_class);?>" style="background-color:<?php echo $testimonial_overlay_section_color; ?>;">
35
  <div class="container">
36
  <?php
37
  $home_testimonial_section_title = get_theme_mod('home_testimonial_section_title', __('Proin Egestas', 'spicebox'));
80
  function honeypress_testimonial_variant() {
81
  $home_testimonial_title = get_theme_mod('home_testimonial_title', __('Cras Vitae', 'spicebox'));
82
  $home_testimonial_designation = get_theme_mod('home_testimonial_designation', __('Eu Suscipit', 'spicebox'));
 
 
 
83
  $theme = wp_get_theme();
84
+ if ($theme->name == 'HoneyBee') {
85
+ $home_testimonial_thumb = get_theme_mod('home_testimonial_thumb', SPICEB_PLUGIN_URL . 'inc/honeypress/images/testimonial/user1.jpg');
86
+ } else{
87
+ $home_testimonial_thumb = get_theme_mod('home_testimonial_thumb', SPICEB_PLUGIN_URL . 'inc/honeypress/images/testimonial/testi1.jpg');
88
+ }
89
+ $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'));
90
+
91
  if ($theme->name == 'HoneyWaves') {
92
  ?>
93
  <div id="testimonial-carousel2" >
108
  </article>
109
  </div>
110
  </div>
111
+ <?php }elseif ($theme->name == 'HoneyBee') {?>
112
+ <div class="col-lg-12 col-md-12 col-sm-12">
113
+ <article class="testmonial-block">
114
+ <div class="col-lg-4 col-md-4 col-sm-12">
115
+ <?php if ($home_testimonial_thumb != '') { ?>
116
+ <figure class="avatar">
117
+ <img src="<?php echo $home_testimonial_thumb; ?>" class="img-fluid" alt="img">
118
+ </figure>
119
+ <?php } ?>
120
+ </div>
121
+ <div class="col-lg-8 col-md-8 col-sm-12 testimonial-text">
122
+ <div class="testmonial-content">
123
+ <div class="entry-content">
124
+ <p class="text-white"><?php echo $home_testimonial_desc; ?></p>
125
+ </div>
126
+ <figcaption>
127
+ <cite class="name"><?php echo $home_testimonial_title; ?></cite>
128
+ <span class="designation"><?php echo $home_testimonial_designation; ?></span>
129
+ </figcaption>
130
+ </div>
131
+ </div>
132
+ </article>
133
+ </div>
134
  <?php } elseif ($theme->name == 'HoneyPress') {
135
  ?>
136
  <div class="col-md-12">
languages/spicebox.pot CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Project-Id-Version: "
5
  "Spiceboxv1.0.0\n"
6
  "POT-Creation-Date: "
7
- "2020-10-12 11:57+0530\n"
8
  "PO-Revision-Date: \n"
9
  "Last-Translator: Your "
10
  "Name <you@example.com>\n"
@@ -137,9 +137,9 @@ msgstr ""
137
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:253
138
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:402
139
  #: inc/honeypress/features/feature-service-section.php:33
140
- #: inc/honeypress/features/feature-slider-section.php:96
141
- #: inc/honeypress/features/feature-testimonial-section.php:78
142
- #: inc/honeypress/features/feature-testimonial-section.php:135
143
  #: inc/innofit/customizer/callout-section.php:29
144
  #: inc/innofit/customizer/news-section.php:30
145
  #: inc/innofit/customizer/services-section.php:31
@@ -185,8 +185,8 @@ msgstr ""
185
  #: inc/cloudpress/features/feature-cta-section.php:65
186
  #: inc/cloudpress/features/feature-slider-section.php:109
187
  #: inc/cloudpress/features/feature-slider-section.php:146
188
- #: inc/honeypress/features/feature-slider-section.php:128
189
- #: inc/honeypress/features/feature-slider-section.php:165
190
  #: inc/innofit/customizer/callout-section.php:68
191
  #: inc/innofit/customizer/slider-section.php:105
192
  #: inc/spicepress/features/feature-slider-section.php:108
@@ -195,7 +195,7 @@ msgstr ""
195
 
196
  #: inc/cloudpress/features/feature-cta-section.php:70
197
  #: inc/cloudpress/features/feature-slider-section.php:114
198
- #: inc/honeypress/features/feature-slider-section.php:133
199
  #: inc/innofit/customizer/callout-section.php:74
200
  #: inc/innofit/customizer/slider-section.php:110
201
  #: inc/spicepress/features/feature-slider-section.php:113
@@ -269,9 +269,9 @@ msgstr ""
269
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:267
270
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:416
271
  #: inc/honeypress/features/feature-service-section.php:46
272
- #: inc/honeypress/features/feature-slider-section.php:108
273
- #: inc/honeypress/features/feature-testimonial-section.php:91
274
- #: inc/honeypress/features/feature-testimonial-section.php:122
275
  #: inc/innofit/customizer/callout-section.php:41
276
  #: inc/innofit/customizer/news-section.php:42
277
  #: inc/innofit/customizer/services-section.php:46
@@ -334,8 +334,8 @@ msgstr ""
334
  #: inc/cloudpress/features/feature-slider-section.php:35
335
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:554
336
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:600
337
- #: inc/honeypress/features/feature-slider-section.php:55
338
- #: inc/honeypress/features/feature-testimonial-section.php:105
339
  #: inc/innofit/customizer/about-section.php:73
340
  #: inc/innofit/customizer/slider-section.php:32
341
  #: inc/spicepress/features/feature-portfolio-section.php:59
@@ -347,7 +347,7 @@ msgid "Image"
347
  msgstr ""
348
 
349
  #: inc/cloudpress/features/feature-slider-section.php:50
350
- #: inc/honeypress/features/feature-slider-section.php:69
351
  #: inc/innofit/customizer/slider-section.php:47
352
  #: inc/spicepress/features/feature-slider-section.php:50
353
  msgid ""
@@ -356,7 +356,7 @@ msgid ""
356
  msgstr ""
357
 
358
  #: inc/cloudpress/features/feature-slider-section.php:63
359
- #: inc/honeypress/features/feature-slider-section.php:82
360
  #: inc/innofit/customizer/slider-section.php:60
361
  #: inc/spicepress/features/feature-slider-section.php:63
362
  msgid ""
@@ -372,7 +372,7 @@ msgid ""
372
  msgstr ""
373
 
374
  #: inc/cloudpress/features/feature-slider-section.php:84
375
- #: inc/honeypress/features/feature-slider-section.php:103
376
  msgid ""
377
  "Sea summo mazim ex, ea "
378
  "errem eleifend "
@@ -391,7 +391,7 @@ msgstr ""
391
  #: inc/cloudpress/features/feature-slider-section.php:102
392
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:276
393
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:424
394
- #: inc/honeypress/features/feature-slider-section.php:121
395
  #: inc/innofit/customizer/callout-section.php:60
396
  #: inc/innofit/customizer/slider-section.php:98
397
  #: inc/spicepress/features/feature-slider-section.php:101
@@ -400,8 +400,8 @@ msgstr ""
400
 
401
  #: inc/cloudpress/features/feature-slider-section.php:127
402
  #: inc/cloudpress/features/feature-slider-section.php:164
403
- #: inc/honeypress/features/feature-slider-section.php:146
404
- #: inc/honeypress/features/feature-slider-section.php:183
405
  #: inc/innofit/customizer/callout-section.php:90
406
  #: inc/innofit/customizer/slider-section.php:123
407
  #: inc/spicepress/features/feature-slider-section.php:126
@@ -415,12 +415,12 @@ msgid "About Us"
415
  msgstr ""
416
 
417
  #: inc/cloudpress/features/feature-slider-section.php:139
418
- #: inc/honeypress/features/feature-slider-section.php:158
419
  msgid "Button 2 Text"
420
  msgstr ""
421
 
422
  #: inc/cloudpress/features/feature-slider-section.php:151
423
- #: inc/honeypress/features/feature-slider-section.php:170
424
  msgid "Button 2 Link"
425
  msgstr ""
426
 
@@ -467,7 +467,7 @@ msgid "Powerful Options"
467
  msgstr ""
468
 
469
  #: inc/cloudpress/sections/cloudpress-slider-section.php:12
470
- #: inc/honeypress/sections/honeypress-slider-section.php:23
471
  msgid ""
472
  "Sea summo mazim ex, ea "
473
  "errem eleifend "
@@ -514,7 +514,7 @@ msgstr ""
514
 
515
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:348
516
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:472
517
- #: inc/honeypress/features/feature-testimonial-section.php:147
518
  #: inc/spicepress/features/feature-testimonial-section.php:141
519
  msgid "Designation"
520
  msgstr ""
@@ -667,32 +667,32 @@ msgid ""
667
  msgstr ""
668
 
669
  #: inc/honeypress/features/feature-service-section.php:28
670
- #: inc/honeypress/sections/honeypress-service-section.php:21
671
  msgid "Etiam et Urna?"
672
  msgstr ""
673
 
674
  #: inc/honeypress/features/feature-service-section.php:41
675
- #: inc/honeypress/sections/honeypress-service-section.php:22
676
  msgid "Fusce Sed Massa"
677
  msgstr ""
678
 
679
- #: inc/honeypress/features/feature-slider-section.php:90
680
- #: inc/honeypress/sections/honeypress-slider-section.php:21
681
  msgid ""
682
  "Nulla nec dolor sit amet "
683
  "lacus molestie"
684
  msgstr ""
685
 
686
- #: inc/honeypress/features/feature-slider-section.php:116
687
- #: inc/honeypress/sections/honeypress-slider-section.php:24
688
  msgid "Nec Sem"
689
  msgstr ""
690
 
691
- #: inc/honeypress/features/feature-slider-section.php:153
692
- #: inc/honeypress/features/feature-testimonial-section.php:130
693
- #: inc/honeypress/sections/honeypress-slider-section.php:28
694
- #: inc/honeypress/sections/honeypress-testimonail-section.php:31
695
- #: inc/honeypress/sections/honeypress-testimonail-section.php:73
696
  msgid "Cras Vitae"
697
  msgstr ""
698
 
@@ -710,25 +710,25 @@ msgid ""
710
  "section"
711
  msgstr ""
712
 
713
- #: inc/honeypress/features/feature-testimonial-section.php:65
714
  msgid "Background Color"
715
  msgstr ""
716
 
717
- #: inc/honeypress/features/feature-testimonial-section.php:73
718
- #: inc/honeypress/sections/honeypress-testimonail-section.php:29
719
  msgid "Proin Egestas"
720
  msgstr ""
721
 
722
- #: inc/honeypress/features/feature-testimonial-section.php:86
723
- #: inc/honeypress/sections/honeypress-testimonail-section.php:30
724
  msgid ""
725
  "Nam Viverra Iaculis "
726
  "Finibus"
727
  msgstr ""
728
 
729
- #: inc/honeypress/features/feature-testimonial-section.php:117
730
- #: inc/honeypress/sections/honeypress-testimonail-section.php:34
731
- #: inc/honeypress/sections/honeypress-testimonail-section.php:76
732
  #: inc/spicepress/features/feature-testimonial-section.php:109
733
  #: inc/spicepress/sections/spicepress-testimonail-section.php:46
734
  #: inc/spicepress/sections/spicepress-testimonail-section.php:123
@@ -750,22 +750,22 @@ msgid ""
750
  "pariatur."
751
  msgstr ""
752
 
753
- #: inc/honeypress/features/feature-testimonial-section.php:142
754
- #: inc/honeypress/sections/honeypress-testimonail-section.php:32
755
- #: inc/honeypress/sections/honeypress-testimonail-section.php:74
756
  msgid "Eu Suscipit"
757
  msgstr ""
758
 
759
- #: inc/honeypress/sections/honeypress-service-section.php:193
760
  msgid ""
761
  "Suspendisse Tristique"
762
  msgstr ""
763
 
764
- #: inc/honeypress/sections/honeypress-service-section.php:201
765
  msgid "Blandit-Gravida"
766
  msgstr ""
767
 
768
- #: inc/honeypress/sections/honeypress-service-section.php:209
769
  msgid "Justo Bibendum"
770
  msgstr ""
771
 
4
  "Project-Id-Version: "
5
  "Spiceboxv1.0.0\n"
6
  "POT-Creation-Date: "
7
+ "2020-11-07 18:11+0530\n"
8
  "PO-Revision-Date: \n"
9
  "Last-Translator: Your "
10
  "Name <you@example.com>\n"
137
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:253
138
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:402
139
  #: inc/honeypress/features/feature-service-section.php:33
140
+ #: inc/honeypress/features/feature-slider-section.php:99
141
+ #: inc/honeypress/features/feature-testimonial-section.php:84
142
+ #: inc/honeypress/features/feature-testimonial-section.php:155
143
  #: inc/innofit/customizer/callout-section.php:29
144
  #: inc/innofit/customizer/news-section.php:30
145
  #: inc/innofit/customizer/services-section.php:31
185
  #: inc/cloudpress/features/feature-cta-section.php:65
186
  #: inc/cloudpress/features/feature-slider-section.php:109
187
  #: inc/cloudpress/features/feature-slider-section.php:146
188
+ #: inc/honeypress/features/feature-slider-section.php:131
189
+ #: inc/honeypress/features/feature-slider-section.php:168
190
  #: inc/innofit/customizer/callout-section.php:68
191
  #: inc/innofit/customizer/slider-section.php:105
192
  #: inc/spicepress/features/feature-slider-section.php:108
195
 
196
  #: inc/cloudpress/features/feature-cta-section.php:70
197
  #: inc/cloudpress/features/feature-slider-section.php:114
198
+ #: inc/honeypress/features/feature-slider-section.php:136
199
  #: inc/innofit/customizer/callout-section.php:74
200
  #: inc/innofit/customizer/slider-section.php:110
201
  #: inc/spicepress/features/feature-slider-section.php:113
269
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:267
270
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:416
271
  #: inc/honeypress/features/feature-service-section.php:46
272
+ #: inc/honeypress/features/feature-slider-section.php:111
273
+ #: inc/honeypress/features/feature-testimonial-section.php:97
274
+ #: inc/honeypress/features/feature-testimonial-section.php:142
275
  #: inc/innofit/customizer/callout-section.php:41
276
  #: inc/innofit/customizer/news-section.php:42
277
  #: inc/innofit/customizer/services-section.php:46
334
  #: inc/cloudpress/features/feature-slider-section.php:35
335
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:554
336
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:600
337
+ #: inc/honeypress/features/feature-slider-section.php:58
338
+ #: inc/honeypress/features/feature-testimonial-section.php:125
339
  #: inc/innofit/customizer/about-section.php:73
340
  #: inc/innofit/customizer/slider-section.php:32
341
  #: inc/spicepress/features/feature-portfolio-section.php:59
347
  msgstr ""
348
 
349
  #: inc/cloudpress/features/feature-slider-section.php:50
350
+ #: inc/honeypress/features/feature-slider-section.php:72
351
  #: inc/innofit/customizer/slider-section.php:47
352
  #: inc/spicepress/features/feature-slider-section.php:50
353
  msgid ""
356
  msgstr ""
357
 
358
  #: inc/cloudpress/features/feature-slider-section.php:63
359
+ #: inc/honeypress/features/feature-slider-section.php:85
360
  #: inc/innofit/customizer/slider-section.php:60
361
  #: inc/spicepress/features/feature-slider-section.php:63
362
  msgid ""
372
  msgstr ""
373
 
374
  #: inc/cloudpress/features/feature-slider-section.php:84
375
+ #: inc/honeypress/features/feature-slider-section.php:106
376
  msgid ""
377
  "Sea summo mazim ex, ea "
378
  "errem eleifend "
391
  #: inc/cloudpress/features/feature-slider-section.php:102
392
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:276
393
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:424
394
+ #: inc/honeypress/features/feature-slider-section.php:124
395
  #: inc/innofit/customizer/callout-section.php:60
396
  #: inc/innofit/customizer/slider-section.php:98
397
  #: inc/spicepress/features/feature-slider-section.php:101
400
 
401
  #: inc/cloudpress/features/feature-slider-section.php:127
402
  #: inc/cloudpress/features/feature-slider-section.php:164
403
+ #: inc/honeypress/features/feature-slider-section.php:149
404
+ #: inc/honeypress/features/feature-slider-section.php:186
405
  #: inc/innofit/customizer/callout-section.php:90
406
  #: inc/innofit/customizer/slider-section.php:123
407
  #: inc/spicepress/features/feature-slider-section.php:126
415
  msgstr ""
416
 
417
  #: inc/cloudpress/features/feature-slider-section.php:139
418
+ #: inc/honeypress/features/feature-slider-section.php:161
419
  msgid "Button 2 Text"
420
  msgstr ""
421
 
422
  #: inc/cloudpress/features/feature-slider-section.php:151
423
+ #: inc/honeypress/features/feature-slider-section.php:173
424
  msgid "Button 2 Link"
425
  msgstr ""
426
 
467
  msgstr ""
468
 
469
  #: inc/cloudpress/sections/cloudpress-slider-section.php:12
470
+ #: inc/honeypress/sections/honeypress-slider-section.php:25
471
  msgid ""
472
  "Sea summo mazim ex, ea "
473
  "errem eleifend "
514
 
515
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:348
516
  #: inc/controls/customizer-repeater/class/customizer-repeater-control.php:472
517
+ #: inc/honeypress/features/feature-testimonial-section.php:167
518
  #: inc/spicepress/features/feature-testimonial-section.php:141
519
  msgid "Designation"
520
  msgstr ""
667
  msgstr ""
668
 
669
  #: inc/honeypress/features/feature-service-section.php:28
670
+ #: inc/honeypress/sections/honeypress-service-section.php:23
671
  msgid "Etiam et Urna?"
672
  msgstr ""
673
 
674
  #: inc/honeypress/features/feature-service-section.php:41
675
+ #: inc/honeypress/sections/honeypress-service-section.php:24
676
  msgid "Fusce Sed Massa"
677
  msgstr ""
678
 
679
+ #: inc/honeypress/features/feature-slider-section.php:93
680
+ #: inc/honeypress/sections/honeypress-slider-section.php:23
681
  msgid ""
682
  "Nulla nec dolor sit amet "
683
  "lacus molestie"
684
  msgstr ""
685
 
686
+ #: inc/honeypress/features/feature-slider-section.php:119
687
+ #: inc/honeypress/sections/honeypress-slider-section.php:26
688
  msgid "Nec Sem"
689
  msgstr ""
690
 
691
+ #: inc/honeypress/features/feature-slider-section.php:156
692
+ #: inc/honeypress/features/feature-testimonial-section.php:150
693
+ #: inc/honeypress/sections/honeypress-slider-section.php:30
694
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:39
695
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:81
696
  msgid "Cras Vitae"
697
  msgstr ""
698
 
710
  "section"
711
  msgstr ""
712
 
713
+ #: inc/honeypress/features/feature-testimonial-section.php:71
714
  msgid "Background Color"
715
  msgstr ""
716
 
717
+ #: inc/honeypress/features/feature-testimonial-section.php:79
718
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:37
719
  msgid "Proin Egestas"
720
  msgstr ""
721
 
722
+ #: inc/honeypress/features/feature-testimonial-section.php:92
723
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:38
724
  msgid ""
725
  "Nam Viverra Iaculis "
726
  "Finibus"
727
  msgstr ""
728
 
729
+ #: inc/honeypress/features/feature-testimonial-section.php:137
730
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:42
731
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:89
732
  #: inc/spicepress/features/feature-testimonial-section.php:109
733
  #: inc/spicepress/sections/spicepress-testimonail-section.php:46
734
  #: inc/spicepress/sections/spicepress-testimonail-section.php:123
750
  "pariatur."
751
  msgstr ""
752
 
753
+ #: inc/honeypress/features/feature-testimonial-section.php:162
754
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:40
755
+ #: inc/honeypress/sections/honeypress-testimonail-section.php:82
756
  msgid "Eu Suscipit"
757
  msgstr ""
758
 
759
+ #: inc/honeypress/sections/honeypress-service-section.php:195
760
  msgid ""
761
  "Suspendisse Tristique"
762
  msgstr ""
763
 
764
+ #: inc/honeypress/sections/honeypress-service-section.php:203
765
  msgid "Blandit-Gravida"
766
  msgstr ""
767
 
768
+ #: inc/honeypress/sections/honeypress-service-section.php:211
769
  msgid "Justo Bibendum"
770
  msgstr ""
771
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: spicethemes
3
  Tags: widget, admin, widgets
4
  Requires at least: 3.3+
5
- Tested up to: 5.5.1
6
- Stable tag: 1.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -208,6 +208,10 @@ Fixed minor issues of HoneyPress child themes.
208
  1. Added variations ( testimonial & service ) for Stacy Child theme.
209
  2. Dummy content updated for spicepress theme.
210
 
 
 
 
 
211
  =======External resources=======
212
 
213
  Alpha color picker Control:
@@ -220,9 +224,9 @@ Copyright: (c) 2016 Codeinwp cristian-ungureanu
220
  License: MIT license
221
  Source: https://github.com/Codeinwp/customizer-controls/tree/master/customizer-repeater
222
 
 
223
 
224
  == HoneyWaves Images ==
225
-
226
  * Image used in Slider
227
  License CC0 Public Domain
228
  https://pxhere.com/en/photo/871986
@@ -240,4 +244,9 @@ https://pxhere.com/en/photo/759001
240
  ==Tromas Images==
241
  * Image used in Slider
242
  License CC0 Public Domain
243
- https://pxhere.com/en/photo/1434201
 
 
 
 
 
2
  Contributors: spicethemes
3
  Tags: widget, admin, widgets
4
  Requires at least: 3.3+
5
+ Tested up to: 5.5
6
+ Stable tag: 1.3.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
208
  1. Added variations ( testimonial & service ) for Stacy Child theme.
209
  2. Dummy content updated for spicepress theme.
210
 
211
+ =1.3.2=
212
+ 1. Added variations for HoneyBee child theme.
213
+ 2. Fixed repeater checkbox issue.
214
+
215
  =======External resources=======
216
 
217
  Alpha color picker Control:
224
  License: MIT license
225
  Source: https://github.com/Codeinwp/customizer-controls/tree/master/customizer-repeater
226
 
227
+ =========== Images ============
228
 
229
  == HoneyWaves Images ==
 
230
  * Image used in Slider
231
  License CC0 Public Domain
232
  https://pxhere.com/en/photo/871986
244
  ==Tromas Images==
245
  * Image used in Slider
246
  License CC0 Public Domain
247
+ https://pxhere.com/en/photo/1434201
248
+
249
+ == HoneyBee Images ==
250
+ * Image used in Slider
251
+ License CC0 Public Domain
252
+ https://stocksnap.io/photo/woman-mobile-Q93BUD2Z3Z
spicebox.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SpiceBox
4
  Plugin URI:
5
  Description: Enhances SpiceThemes with extra functionality.
6
- Version: 1.3.1
7
  Author: Spicethemes
8
  Author URI: https://spicethemes.com
9
  Text Domain: spicebox
@@ -30,7 +30,7 @@ function spiceb_activate() {
30
 
31
  }
32
 
33
- if ( 'HoneyPress' == $theme->name || 'HoneyPress Child' == $theme->name || 'Radix Multipurpose' == $theme->name || 'HoneyWaves' == $theme->name || 'Bizhunt' == $theme->name || 'Tromas' == $theme->name){
34
  require_once('inc/honeypress/features/feature-slider-section.php');
35
  require_once('inc/honeypress/features/feature-service-section.php');
36
  require_once('inc/honeypress/features/feature-testimonial-section.php');
@@ -170,7 +170,7 @@ $item_details_page = get_option('item_details_page');
170
 
171
 
172
  //Honeypress
173
- if ( 'HoneyPress' == $theme->name || 'HoneyPress Child' == $theme->name || 'Radix Multipurpose' == $theme->name || 'HoneyWaves' == $theme->name || 'Bizhunt' == $theme->name || 'Tromas' == $theme->name){
174
  register_activation_hook( __FILE__, 'spiceb_install_function');
175
  function spiceb_install_function()
176
  {
3
  Plugin Name: SpiceBox
4
  Plugin URI:
5
  Description: Enhances SpiceThemes with extra functionality.
6
+ Version: 1.3.2
7
  Author: Spicethemes
8
  Author URI: https://spicethemes.com
9
  Text Domain: spicebox
30
 
31
  }
32
 
33
+ if ( 'HoneyPress' == $theme->name || 'HoneyPress Child' == $theme->name || 'Radix Multipurpose' == $theme->name || 'HoneyWaves' == $theme->name || 'Bizhunt' == $theme->name || 'Tromas' == $theme->name || 'HoneyBee' == $theme->name ){
34
  require_once('inc/honeypress/features/feature-slider-section.php');
35
  require_once('inc/honeypress/features/feature-service-section.php');
36
  require_once('inc/honeypress/features/feature-testimonial-section.php');
170
 
171
 
172
  //Honeypress
173
+ if ( 'HoneyPress' == $theme->name || 'HoneyPress Child' == $theme->name || 'Radix Multipurpose' == $theme->name || 'HoneyWaves' == $theme->name || 'Bizhunt' == $theme->name || 'Tromas' == $theme->name || 'HoneyBee' == $theme->name ){
174
  register_activation_hook( __FILE__, 'spiceb_install_function');
175
  function spiceb_install_function()
176
  {