Woocommerce Products Slider - Version 1.12.19

Version Description

  • 12/01/2017 add - WooCommerce 3.0+ compatibility.
    • 12/01/2017 update - Ribbon option update.
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Woocommerce Products Slider
Version 1.12.19
Comparing to
See all releases

Code changes from version 1.12.18 to 1.12.19

assets/admin/css/style.css CHANGED
@@ -154,4 +154,31 @@
154
  }
155
  #wcps_metabox .item.active .expand .fa-expand {
156
  display: none;
157
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  }
155
  #wcps_metabox .item.active .expand .fa-expand {
156
  display: none;
157
+ }
158
+
159
+ .wcps-notice{}
160
+ .wcps-notice span {
161
+ padding: 8px 13px;
162
+ display: block;
163
+ background: #ffc245;
164
+ color: #605d5d;
165
+ }
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
assets/admin/js/scripts.js CHANGED
@@ -50,10 +50,10 @@ jQuery(document).ready(function($)
50
 
51
 
52
 
53
- $(document).on('change', '#wcps_ribbon_name', function()
54
  {
55
  value = $(this).val();
56
-
57
  if(value=='custom'){
58
 
59
  $('#wcps_ribbon_custom').css('display','block');
50
 
51
 
52
 
53
+ $(document).on('change', '.wcps_ribbon_name', function()
54
  {
55
  value = $(this).val();
56
+
57
  if(value=='custom'){
58
 
59
  $('#wcps_ribbon_custom').css('display','block');
assets/front/images/ribbons/custom.png ADDED
Binary file
assets/front/images/ribbons/none.png CHANGED
Binary file
includes/class-functions.php CHANGED
@@ -13,8 +13,151 @@ class class_wcps_functions {
13
  public function __construct(){
14
 
15
  }
16
-
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  public function skins(){
20
 
13
  public function __construct(){
14
 
15
  }
16
+
17
+
18
+ public function ribbons(){
19
+
20
+ $ribbons[] = array(
21
+ 'name'=>'None',
22
+ 'id'=>'none',
23
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/none.png',
24
+ );
25
+
26
+ $ribbons[] = array(
27
+ 'name'=>'Custom',
28
+ 'id'=>'custom',
29
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/custom.png',
30
+ );
31
+
32
+
33
+ $ribbons[] = array(
34
+ 'name'=>'Free',
35
+ 'id'=>'free',
36
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/free.png',
37
+ );
38
+
39
+ $ribbons[] = array(
40
+ 'name'=>'Save',
41
+ 'id'=>'save',
42
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/save.png',
43
+ );
44
+
45
+ $ribbons[] = array(
46
+ 'name'=>'Hot',
47
+ 'id'=>'hot',
48
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/hot.png',
49
+ );
50
+
51
+ $ribbons[] = array(
52
+ 'name'=>'Pro',
53
+ 'id'=>'pro',
54
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/pro.png',
55
+ );
56
+
57
+ $ribbons[] = array(
58
+ 'name'=>'Best',
59
+ 'id'=>'best',
60
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/best.png',
61
+ );
62
+
63
+ $ribbons[] = array(
64
+ 'name'=>'Gift',
65
+ 'id'=>'gift',
66
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/gift.png',
67
+ );
68
+
69
+ $ribbons[] = array(
70
+ 'name'=>'Sale',
71
+ 'id'=>'sale',
72
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/sale.png',
73
+ );
74
+
75
+ $ribbons[] = array(
76
+ 'name'=>'New',
77
+ 'id'=>'new',
78
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/new.png',
79
+ );
80
+
81
+ $ribbons[] = array(
82
+ 'name'=>'Top',
83
+ 'id'=>'top',
84
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/top.png',
85
+ );
86
+
87
+ $ribbons[] = array(
88
+ 'name'=>'Fresh',
89
+ 'id'=>'fresh',
90
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/fresh.png',
91
+ );
92
+
93
+
94
+ $ribbons[] = array(
95
+ 'name'=>'-10%',
96
+ 'id'=>'dis-10',
97
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-10.png',
98
+ );
99
+
100
+ $ribbons[] = array(
101
+ 'name'=>'-20%',
102
+ 'id'=>'dis-20',
103
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-20.png',
104
+ );
105
+
106
+ $ribbons[] = array(
107
+ 'name'=>'-30%',
108
+ 'id'=>'dis-30',
109
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-30.png',
110
+ );
111
+
112
+ $ribbons[] = array(
113
+ 'name'=>'-40%',
114
+ 'id'=>'dis-40',
115
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-40.png',
116
+ );
117
+
118
+ $ribbons[] = array(
119
+ 'name'=>'-50%',
120
+ 'id'=>'dis-50',
121
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-50.png',
122
+ );
123
+
124
+ $ribbons[] = array(
125
+ 'name'=>'-60%',
126
+ 'id'=>'dis-60',
127
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-60.png',
128
+ );
129
+
130
+ $ribbons[] = array(
131
+ 'name'=>'-70%',
132
+ 'id'=>'dis-70',
133
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-70.png',
134
+ );
135
+
136
+ $ribbons[] = array(
137
+ 'name'=>'-80%',
138
+ 'id'=>'dis-80',
139
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-80.png',
140
+ );
141
+
142
+ $ribbons[] = array(
143
+ 'name'=>'-90%',
144
+ 'id'=>'dis-90',
145
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-90.png',
146
+ );
147
+
148
+ $ribbons[] = array(
149
+ 'name'=>'-100%',
150
+ 'id'=>'dis-100',
151
+ 'src'=>wcps_plugin_url.'assets/front/images/ribbons/dis-100.png',
152
+ );
153
+
154
+ $ribbons_list = apply_filters('wcps_ribbons', $ribbons);
155
+
156
+ return $ribbons_list;
157
+
158
+ }
159
+
160
+
161
 
162
  public function skins(){
163
 
includes/class-settings.php CHANGED
@@ -18,7 +18,7 @@ class class_wcps_settings{
18
 
19
  public function admin_menu() {
20
 
21
- add_submenu_page('edit.php?post_type=wcps', __('Settings','woocommerce-products-slider'), __('Settings','woocommerce-products-slider'), 'manage_options', 'wcps_menu_settings', array( $this, 'settings_page' ));
22
 
23
 
24
  }
18
 
19
  public function admin_menu() {
20
 
21
+ add_submenu_page('edit.php?post_type=wcps', __('Help','woocommerce-products-slider'), __('Help','woocommerce-products-slider'), 'manage_options', 'wcps_menu_settings', array( $this, 'settings_page' ));
22
 
23
 
24
  }
includes/menu/settings.php CHANGED
@@ -64,32 +64,15 @@ if ( ! defined('ABSPATH')) exit; // if direct access
64
 
65
  <div class="para-settings">
66
  <ul class="tab-nav">
67
- <li nav="1" class="nav1 active"><i class="fa fa-cogs"></i> <?php _e('Options','woocommerce-products-slider'); ?></li>
68
- <li nav="2" class="nav2"><i class="fa fa-hand-o-right"></i> <?php _e('Help','woocommerce-products-slider'); ?></li>
69
  </ul> <!-- tab-nav end -->
70
 
71
  <ul class="box">
72
 
73
 
74
- <li style="display: block;" class="box1 tab-box active">
75
-
76
- <div class="option-box">
77
- <p class="option-title"><?php _e('Track product View','woocommerce-products-slider'); ?></p>
78
- <p class="option-info"></p>
79
 
80
- <select name="wcps_track_product_view" >
81
- <option value="no" <?php if($wcps_track_product_view=="no")echo "selected"; ?>><?php _e('No','woocommerce-products-slider'); ?></option>
82
- <option value="yes" <?php if($wcps_track_product_view=="yes")echo "selected"; ?>><?php _e('Yes','woocommerce-products-slider'); ?></option>
83
-
84
-
85
- </select>
86
-
87
- </div>
88
-
89
-
90
- </li>
91
 
92
- <li style="display: none;" class="box2 tab-box">
93
 
94
  <div class="option-box">
95
  <p class="option-title"><?php _e('Need Help ?','woocommerce-products-slider'); ?></p>
@@ -128,8 +111,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
128
  <?php _e('We are working hard to build some awesome plugins for you and spend thousand hour for plugins. we wish your three(3) minute by submitting five star reviews at wordpress.org. if you have any issue please submit at forum','woocommerce-products-slider'); ?>
129
  .</p>
130
  <img src="<?php echo wcps_plugin_url."assets/admin/images/five-star.png";?>" /><br />
131
- <a target="_blank" href="<?php echo wcps_wp_reviews; ?>">
132
- <?php echo wcps_wp_reviews; ?>
133
  </a>
134
 
135
 
64
 
65
  <div class="para-settings">
66
  <ul class="tab-nav">
67
+ <li nav="2" class="nav2 active"><i class="fa fa-hand-o-right"></i> <?php _e('Help','woocommerce-products-slider'); ?></li>
 
68
  </ul> <!-- tab-nav end -->
69
 
70
  <ul class="box">
71
 
72
 
 
 
 
 
 
73
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
+ <li style="display: block;" class="box2 tab-box active">
76
 
77
  <div class="option-box">
78
  <p class="option-title"><?php _e('Need Help ?','woocommerce-products-slider'); ?></p>
111
  <?php _e('We are working hard to build some awesome plugins for you and spend thousand hour for plugins. we wish your three(3) minute by submitting five star reviews at wordpress.org. if you have any issue please submit at forum','woocommerce-products-slider'); ?>
112
  .</p>
113
  <img src="<?php echo wcps_plugin_url."assets/admin/images/five-star.png";?>" /><br />
114
+ <a target="_blank" href="https://wordpress.org/support/plugin/woocommerce-products-slider/reviews/?filter=5">https://wordpress.org/support/plugin/woocommerce-products-slider/reviews/
 
115
  </a>
116
 
117
 
includes/meta.php CHANGED
@@ -135,6 +135,8 @@ function meta_boxes_wcps_input( $post ) {
135
  if(empty($wcps_themes)){ $wcps_themes = 'flat'; }
136
 
137
  $wcps_ribbon_name = get_post_meta( $post->ID, 'wcps_ribbon_name', true );
 
 
138
  $wcps_ribbon_custom = get_post_meta( $post->ID, 'wcps_ribbon_custom', true );
139
 
140
  $wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
@@ -152,14 +154,19 @@ function meta_boxes_wcps_input( $post ) {
152
  if(empty($wcps_items_padding)){ $wcps_items_padding = ''; }
153
 
154
  $wcps_total_items = get_post_meta( $post->ID, 'wcps_total_items', true );
155
- if(empty($wcps_total_items)){ $wcps_total_items = -1;}
156
 
157
  $wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
 
 
158
  $wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
159
- $wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
160
-
 
 
 
161
  $wcps_product_featured = get_post_meta( $post->ID, 'wcps_product_featured', true );
162
- if(empty($wcps_product_featured)){ $wcps_product_featured = 'no'; }
163
 
164
  $wcps_product_on_sale = get_post_meta( $post->ID, 'wcps_product_on_sale', true );
165
  if(empty($wcps_product_on_sale)){ $wcps_product_on_sale = 'no'; }
@@ -239,6 +246,17 @@ function meta_boxes_wcps_input( $post ) {
239
 
240
 
241
  $wcps_id = $post->ID;
 
 
 
 
 
 
 
 
 
 
 
242
  ?>
243
 
244
 
@@ -509,56 +527,34 @@ function meta_boxes_wcps_input( $post ) {
509
  <p class="option-info"></p>
510
  <?php
511
 
512
- echo '<select id="wcps_ribbon_name" name="wcps_ribbon_name" >';
513
-
514
- if(empty($wcps_ribbon_name))
515
- {
516
- $wcps_ribbon_name = "";
517
- }
518
- echo '<option value="none" '.(($wcps_ribbon_name=="none" ) ? "selected" : "").' >None</option>';
519
- echo '<option value="custom" '.(($wcps_ribbon_name=="custom" ) ? "selected" : "").' >Custom</option>';
520
- echo '<option value="free" '.(($wcps_ribbon_name=="free" ) ? "selected" : "").' >Free</option>';
521
- echo '<option value="save" '.(($wcps_ribbon_name=="save" ) ? "selected" : "").' >Save</option>';
522
- echo '<option value="hot" '.(($wcps_ribbon_name=="hot" ) ? "selected" : "").' >Hot</option>';
523
- echo '<option value="pro" '.(($wcps_ribbon_name=="pro" ) ? "selected" : "").' >Pro</option>';
524
- echo '<option value="best" '.(($wcps_ribbon_name=="best" ) ? "selected" : "").' >Best</option>';
525
- echo '<option value="gift" '.(($wcps_ribbon_name=="gift" ) ? "selected" : "").' >Gift</option>';
526
- echo '<option value="sale" '.(($wcps_ribbon_name=="sale" ) ? "selected" : "").' >Sale</option>';
527
- echo '<option value="new" '.(($wcps_ribbon_name=="new" ) ? "selected" : "").' >New</option>';
528
- echo '<option value="top" '.(($wcps_ribbon_name=="top" ) ? "selected" : "").' >Top</option>';
529
- echo '<option value="fresh" '.(($wcps_ribbon_name=="fresh" ) ? "selected" : "").' >Fresh</option>';
530
-
531
- echo '<option value="dis-10" '.(($wcps_ribbon_name=="dis-10" ) ? "selected" : "").' >-10%</option>';
532
- echo '<option value="dis-20" '.(($wcps_ribbon_name=="dis-20" ) ? "selected" : "").' >-20%</option>';
533
- echo '<option value="dis-30" '.(($wcps_ribbon_name=="dis-30" ) ? "selected" : "").' >-30%</option>';
534
- echo '<option value="dis-40" '.(($wcps_ribbon_name=="dis-40" ) ? "selected" : "").' >-40%</option>';
535
-
536
- echo '<option value="dis-50" '.(($wcps_ribbon_name=="dis-50" ) ? "selected" : "").' >-50%</option>';
537
-
538
- echo '<option value="dis-60" '.(($wcps_ribbon_name=="dis-60" ) ? "selected" : "").' >-60%</option>';
539
-
540
- echo '<option value="dis-70" '.(($wcps_ribbon_name=="dis-70" ) ? "selected" : "").' >-70%</option>';
541
-
542
- echo '<option value="dis-80" '.(($wcps_ribbon_name=="dis-80" ) ? "selected" : "").' >-80%</option>';
543
-
544
- echo '<option value="dis-90" '.(($wcps_ribbon_name=="dis-90" ) ? "selected" : "").' >-90%</option>';
545
-
546
- echo '<option value="dis-100" '.(($wcps_ribbon_name=="dis-100" ) ? "selected" : "").' >-100%</option>';
547
-
548
-
549
- echo '</select><br />';
550
-
551
-
552
-
553
  ?>
554
-
555
- <input type="text" id="wcps_ribbon_custom" name="wcps_ribbon_custom" placeholder="Custom url for ribbons." id="wcps_ribbon_custom" value="<?php echo $wcps_ribbon_custom; ?>" />
556
 
557
  <?php
558
 
559
  if($wcps_ribbon_name=='custom'){
560
  echo '<style type="text/css">';
561
- echo '#wcps_metabox #wcps_ribbon_custom{display:block }';
 
562
  echo '</style>';
563
  }
564
 
135
  if(empty($wcps_themes)){ $wcps_themes = 'flat'; }
136
 
137
  $wcps_ribbon_name = get_post_meta( $post->ID, 'wcps_ribbon_name', true );
138
+ if(empty($wcps_ribbon_name)){$wcps_ribbon_name = 'none'; }
139
+
140
  $wcps_ribbon_custom = get_post_meta( $post->ID, 'wcps_ribbon_custom', true );
141
 
142
  $wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
154
  if(empty($wcps_items_padding)){ $wcps_items_padding = ''; }
155
 
156
  $wcps_total_items = get_post_meta( $post->ID, 'wcps_total_items', true );
157
+ if(empty($wcps_total_items)){ $wcps_total_items = 20;}
158
 
159
  $wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
160
+ if(empty($wcps_query_order)){ $wcps_query_order = 'DESC'; }
161
+
162
  $wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
163
+ if(empty($wcps_query_orderby)){ $wcps_query_orderby = 'date'; }
164
+
165
+ $wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
166
+ if(empty($wcps_hide_out_of_stock)){ $wcps_hide_out_of_stock = 'no_check'; }
167
+
168
  $wcps_product_featured = get_post_meta( $post->ID, 'wcps_product_featured', true );
169
+ if(empty($wcps_product_featured)){ $wcps_product_featured = 'no_check'; }
170
 
171
  $wcps_product_on_sale = get_post_meta( $post->ID, 'wcps_product_on_sale', true );
172
  if(empty($wcps_product_on_sale)){ $wcps_product_on_sale = 'no'; }
246
 
247
 
248
  $wcps_id = $post->ID;
249
+
250
+ if ( class_exists( 'WooCommerce' ) ) {
251
+ global $woocommerce;
252
+ if ( version_compare( $woocommerce->version, '3.0', "<=" ) ) {
253
+ ?>
254
+ <div class="wcps-notice"><span><i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Please use latest version of WooCommerce, <b>WooCommerce Products Slider</b> no longer support older version(older than 3.0.0) of WooCommerce</span></div>
255
+ <?php
256
+
257
+ }
258
+
259
+ }
260
  ?>
261
 
262
 
527
  <p class="option-info"></p>
528
  <?php
529
 
530
+ //echo '<select id="wcps_ribbon_name" name="wcps_ribbon_name" >';
531
+
532
+ $class_wcps_functions = new class_wcps_functions();
533
+
534
+ $ribbons = $class_wcps_functions->ribbons();
535
+
536
+ foreach ($ribbons as $ribbon){
537
+
538
+ $ribbon_name = $ribbon['name'];
539
+ $ribbon_id = $ribbon['id'];
540
+ $ribbon_src = $ribbon['src'];
541
+ ?>
542
+ <label><input class="wcps_ribbon_name" type="radio" <?php if($wcps_ribbon_name == $ribbon_id ) echo 'checked'; ?> name="wcps_ribbon_name" value="<?php echo $ribbon_id; ?>"><img src="<?php echo $ribbon_src; ?>"> </label>
543
+
544
+ <?php
545
+
546
+ }
547
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  ?>
549
+ <p class="option-info"></p>
550
+ <input type="text" id="wcps_ribbon_custom" name="wcps_ribbon_custom" placeholder="Ribbon src url." id="wcps_ribbon_custom" value="<?php echo $wcps_ribbon_custom; ?>" />
551
 
552
  <?php
553
 
554
  if($wcps_ribbon_name=='custom'){
555
  echo '<style type="text/css">';
556
+ echo '#wcps_metabox #wcps_ribbon_custom{display:block; width:90% }';
557
+
558
  echo '</style>';
559
  }
560
 
languages/woocommerce-products-slider-bn_BD.mo CHANGED
Binary file
languages/woocommerce-products-slider-bn_BD.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
- "POT-Creation-Date: 2017-03-09 11:18+0600\n"
5
- "PO-Revision-Date: 2017-03-09 11:19+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: bn_BD\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.12\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,51 +17,59 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:625
25
  msgid "Title"
26
  msgstr ""
27
 
28
- #: includes/class-functions.php:64
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
36
- #: includes/class-functions.php:66
 
 
 
 
37
  msgid "Price"
38
  msgstr ""
39
 
40
- #: includes/class-functions.php:67
41
  msgid "Rating"
42
  msgstr ""
43
 
44
- #: includes/class-functions.php:68
45
  msgid "Cart"
46
  msgstr ""
47
 
48
- #: includes/class-functions.php:69
49
  msgid "Sale"
50
  msgstr ""
51
 
52
- #: includes/class-functions.php:70
53
  msgid "Featured"
54
  msgstr ""
55
 
56
- #: includes/class-settings.php:21
57
- msgid "Settings"
 
 
 
 
58
  msgstr ""
59
 
60
- #: includes/class-shortcodes.php:137
61
  msgid "No Product to Slide"
62
  msgstr ""
63
 
64
- #: includes/functions.php:84 includes/meta.php:220 includes/meta.php:232
65
  msgid "Shortcode"
66
  msgstr ""
67
 
@@ -77,68 +85,40 @@ msgstr ""
77
  msgid " Settings"
78
  msgstr ""
79
 
80
- #: includes/menu/settings.php:67 includes/meta.php:221
81
- msgid "Options"
82
- msgstr ""
83
-
84
- #: includes/menu/settings.php:68
85
- msgid "Help"
86
- msgstr ""
87
-
88
- #: includes/menu/settings.php:77
89
- msgid "Track product View"
90
- msgstr ""
91
-
92
- #: includes/menu/settings.php:81 includes/meta.php:815
93
- msgid "No"
94
- msgstr ""
95
-
96
- #: includes/menu/settings.php:82 includes/meta.php:816
97
- msgid "Yes"
98
- msgstr ""
99
-
100
- #: includes/menu/settings.php:95
101
  msgid "Need Help ?"
102
  msgstr ""
103
 
104
- #: includes/menu/settings.php:97
105
  msgid ""
106
  "Feel free to contact with any issue for this plugin, Ask any question via "
107
  "forum"
108
  msgstr ""
109
 
110
- #: includes/menu/settings.php:97
111
  msgid "(free)"
112
  msgstr ""
113
 
114
- #: includes/menu/settings.php:126
115
  msgid "Submit Reviews."
116
  msgstr ""
117
 
118
- #: includes/menu/settings.php:128
119
  msgid ""
120
  "We are working hard to build some awesome plugins for you and spend thousand "
121
  "hour for plugins. we wish your three(3) minute by submitting five star "
122
  "reviews at wordpress.org. if you have any issue please submit at forum"
123
  msgstr ""
124
 
125
- #: includes/menu/settings.php:139
126
  msgid "Please Share"
127
  msgstr ""
128
 
129
- #: includes/menu/settings.php:140
130
  msgid "If you like this plugin please share with your social share network."
131
  msgstr ""
132
 
133
- #: includes/menu/settings.php:147
134
- msgid "Video Tutorial"
135
- msgstr ""
136
-
137
- #: includes/menu/settings.php:148
138
- msgid "Please watch this video tutorial."
139
- msgstr ""
140
-
141
- #: includes/menu/settings.php:165
142
  msgid "Save Changes"
143
  msgstr ""
144
 
@@ -174,502 +154,557 @@ msgstr ""
174
  msgid "Woocommerce Products Slider Options"
175
  msgstr ""
176
 
177
- #: includes/meta.php:178
178
  msgid "View product."
179
  msgstr ""
180
 
181
- #: includes/meta.php:222
 
 
 
 
182
  msgid "Style"
183
  msgstr ""
184
 
185
- #: includes/meta.php:223
186
  msgid "Query Product"
187
  msgstr ""
188
 
189
- #: includes/meta.php:224
190
  msgid "Elements"
191
  msgstr ""
192
 
193
- #: includes/meta.php:225
194
  msgid "Custom CSS"
195
  msgstr ""
196
 
197
- #: includes/meta.php:234
198
  msgid ""
199
  "Copy this shortcode and paste on page or post where you want to display "
200
  "slider."
201
  msgstr ""
202
 
203
- #: includes/meta.php:236
204
  msgid "Use PHP code to your themes file to display slider."
205
  msgstr ""
206
 
207
- #: includes/meta.php:251
208
  msgid "Slider column number"
209
  msgstr ""
210
 
211
- #: includes/meta.php:253
212
  msgid "In Destop: (min:1000px and max)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:256
216
  msgid "In Tablet & Small Desktop: (900px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:259
220
  msgid "In Mobile: (479px max width)"
221
  msgstr ""
222
 
223
- #: includes/meta.php:267
224
  msgid "Slider Auto Play"
225
  msgstr ""
226
 
227
- #: includes/meta.php:271 includes/meta.php:277 includes/meta.php:283
228
- #: includes/meta.php:289 includes/meta.php:297 includes/meta.php:361
229
- #: includes/meta.php:368 includes/meta.php:388 includes/meta.php:403
230
- #: includes/meta.php:416 includes/meta.php:424
231
  msgid "True"
232
  msgstr ""
233
 
234
- #: includes/meta.php:272 includes/meta.php:278 includes/meta.php:284
235
- #: includes/meta.php:290 includes/meta.php:296 includes/meta.php:362
236
- #: includes/meta.php:369 includes/meta.php:389 includes/meta.php:402
237
- #: includes/meta.php:417 includes/meta.php:425
238
  msgid "False"
239
  msgstr ""
240
 
241
- #: includes/meta.php:275
 
 
 
 
 
 
 
 
242
  msgid "Slider rewind"
243
  msgstr ""
244
 
245
- #: includes/meta.php:281
246
  msgid "Slider loop"
247
  msgstr ""
248
 
249
- #: includes/meta.php:287
250
  msgid "Slider center"
251
  msgstr ""
252
 
253
- #: includes/meta.php:293
254
  msgid "RTL Enabled"
255
  msgstr ""
256
 
257
- #: includes/meta.php:303
258
  msgid "Animate Out"
259
  msgstr ""
260
 
261
- #: includes/meta.php:306 includes/meta.php:337
262
  msgid "fadeOut"
263
  msgstr ""
264
 
265
- #: includes/meta.php:307 includes/meta.php:338
266
  msgid "bounce"
267
  msgstr ""
268
 
269
- #: includes/meta.php:308 includes/meta.php:339
270
  msgid "flash"
271
  msgstr ""
272
 
273
- #: includes/meta.php:309 includes/meta.php:340
274
  msgid "pulse"
275
  msgstr ""
276
 
277
- #: includes/meta.php:312 includes/meta.php:342
278
  msgid "Shake"
279
  msgstr ""
280
 
281
- #: includes/meta.php:313 includes/meta.php:343
282
  msgid "Swing"
283
  msgstr ""
284
 
285
- #: includes/meta.php:314 includes/meta.php:344
286
  msgid "Tada"
287
  msgstr ""
288
 
289
- #: includes/meta.php:315 includes/meta.php:345
290
  msgid "Wobble"
291
  msgstr ""
292
 
293
- #: includes/meta.php:316 includes/meta.php:346
294
  msgid "flip"
295
  msgstr ""
296
 
297
- #: includes/meta.php:317 includes/meta.php:347
298
  msgid "flipInX"
299
  msgstr ""
300
 
301
- #: includes/meta.php:318 includes/meta.php:348
302
  msgid "flipInY"
303
  msgstr ""
304
 
305
- #: includes/meta.php:319 includes/meta.php:349
306
  msgid "fadeIn"
307
  msgstr ""
308
 
309
- #: includes/meta.php:320 includes/meta.php:350
310
  msgid "fadeInDown"
311
  msgstr ""
312
 
313
- #: includes/meta.php:321 includes/meta.php:351
314
  msgid "fadeInUp"
315
  msgstr ""
316
 
317
- #: includes/meta.php:322 includes/meta.php:352
318
  msgid "bounceIn"
319
  msgstr ""
320
 
321
- #: includes/meta.php:323 includes/meta.php:353
322
  msgid "bounceInDown"
323
  msgstr ""
324
 
325
- #: includes/meta.php:324 includes/meta.php:354
326
  msgid "bounceInUp"
327
  msgstr ""
328
 
329
- #: includes/meta.php:334
330
  msgid "Animate In"
331
  msgstr ""
332
 
333
- #: includes/meta.php:358
334
  msgid "Slider Stop on Hover"
335
  msgstr ""
336
 
337
- #: includes/meta.php:365
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:373
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:375
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:376
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:377
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:381
358
  msgid "Slide Speed"
359
  msgstr ""
360
 
361
- #: includes/meta.php:385
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:394
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:397
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:400
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:409
378
  msgid "Pagination Slide Speed"
379
  msgstr ""
380
 
381
- #: includes/meta.php:412
382
  msgid "Slider Touch Drag Enabled"
383
  msgstr ""
384
 
385
- #: includes/meta.php:421
386
  msgid "Slider Mouse Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:448
390
  msgid "Themes for slider"
391
  msgstr ""
392
 
393
- #: includes/meta.php:471
394
  msgid "Slider ribbon"
395
  msgstr ""
396
 
397
- #: includes/meta.php:542
398
  msgid "Container options"
399
  msgstr ""
400
 
401
- #: includes/meta.php:543
402
  msgid "Padding: (ex: 10px)"
403
  msgstr ""
404
 
405
- #: includes/meta.php:546
406
  msgid "Background color:"
407
  msgstr ""
408
 
409
- #: includes/meta.php:549
410
  msgid "Background image:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:554
414
  msgid "Clear"
415
  msgstr ""
416
 
417
- #: includes/meta.php:579
418
  msgid "Items Options"
419
  msgstr ""
420
 
421
- #: includes/meta.php:580
422
  msgid "Items background color"
423
  msgstr ""
424
 
425
- #: includes/meta.php:583
426
  msgid "Items padding"
427
  msgstr ""
428
 
429
- #: includes/meta.php:595
430
  msgid "Total Number of Product"
431
  msgstr ""
432
 
433
- #: includes/meta.php:596
434
  msgid "ex: 10, to display all product please use -1"
435
  msgstr ""
436
 
437
- #: includes/meta.php:601
438
  msgid "Query order"
439
  msgstr ""
440
 
441
- #: includes/meta.php:604
442
  msgid "Descending"
443
  msgstr ""
444
 
445
- #: includes/meta.php:605
446
  msgid "Ascending "
447
  msgstr ""
448
 
449
- #: includes/meta.php:616
450
  msgid "Query orderBy"
451
  msgstr ""
452
 
453
- #: includes/meta.php:619
454
  msgid "None"
455
  msgstr ""
456
 
457
- #: includes/meta.php:620
458
  msgid "ID"
459
  msgstr ""
460
 
461
- #: includes/meta.php:621
462
  msgid "Date"
463
  msgstr ""
464
 
465
- #: includes/meta.php:622
466
  msgid "Rand"
467
  msgstr ""
468
 
469
- #: includes/meta.php:623
470
  msgid "Comment Count"
471
  msgstr ""
472
 
473
- #: includes/meta.php:624
474
  msgid "Author"
475
  msgstr ""
476
 
477
- #: includes/meta.php:626
478
  msgid "Name"
479
  msgstr ""
480
 
481
- #: includes/meta.php:627
482
  msgid "Type"
483
  msgstr ""
484
 
485
- #: includes/meta.php:636
 
 
 
 
486
  msgid "Hide out of stock items"
487
  msgstr ""
488
 
489
- #: includes/meta.php:640
490
  msgid "Featured Product display"
491
  msgstr ""
492
 
493
- #: includes/meta.php:644
494
  msgid "On Sale Product display"
495
  msgstr ""
496
 
497
- #: includes/meta.php:670
 
 
 
 
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
- #: includes/meta.php:672
502
- msgid "Reset"
503
  msgstr ""
504
 
505
- #: includes/meta.php:731
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
- #: includes/meta.php:794
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
- #: includes/meta.php:797
514
  msgid "Product"
515
  msgstr ""
516
 
517
- #: includes/meta.php:806
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
- #: includes/meta.php:812
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
- #: includes/meta.php:823
 
 
 
 
 
 
 
 
526
  msgid "Empty Thumbnail"
527
  msgstr ""
528
 
529
- #: includes/meta.php:824
530
  msgid "Custom thumbnail image url"
531
  msgstr ""
532
 
533
- #: includes/meta.php:900
534
  msgid "Items add to cart button Style"
535
  msgstr ""
536
 
537
- #: includes/meta.php:901
538
  msgid "You can hide items add to cart button on slider."
539
  msgstr ""
540
 
541
- #: includes/meta.php:903
542
  msgid "Default"
543
  msgstr ""
544
 
545
- #: includes/meta.php:904
546
  msgid "Custom"
547
  msgstr ""
548
 
549
- #: includes/meta.php:909
550
  msgid "Add to cart background color"
551
  msgstr ""
552
 
553
- #: includes/meta.php:915
554
  msgid "Add to cart text color"
555
  msgstr ""
556
 
557
- #: includes/meta.php:921
558
  msgid "Items cart text align"
559
  msgstr ""
560
 
561
- #: includes/meta.php:925 includes/meta.php:978 includes/meta.php:1037
562
- #: includes/meta.php:1062 includes/meta.php:1118 includes/meta.php:1159
 
563
  msgid "Left"
564
  msgstr ""
565
 
566
- #: includes/meta.php:926 includes/meta.php:979 includes/meta.php:1038
567
- #: includes/meta.php:1063 includes/meta.php:1119 includes/meta.php:1160
 
568
  msgid "Right"
569
  msgstr ""
570
 
571
- #: includes/meta.php:927 includes/meta.php:980 includes/meta.php:1039
572
- #: includes/meta.php:1064 includes/meta.php:1120 includes/meta.php:1161
 
573
  msgid "Center"
574
  msgstr ""
575
 
576
- #: includes/meta.php:943
577
  msgid "Sale marker icon url"
578
  msgstr ""
579
 
580
- #: includes/meta.php:962
581
  msgid "Items Title Color"
582
  msgstr ""
583
 
584
- #: includes/meta.php:967
585
  msgid "Items Title Font Size"
586
  msgstr ""
587
 
588
- #: includes/meta.php:974
589
  msgid "Items Title Text Align"
590
  msgstr ""
591
 
592
- #: includes/meta.php:993
593
  msgid "Featured marker icon url"
594
  msgstr ""
595
 
596
- #: includes/meta.php:1005
597
  msgid "Price format on slider"
598
  msgstr ""
599
 
600
- #: includes/meta.php:1008
601
  msgid "Full Format"
602
  msgstr ""
603
 
604
- #: includes/meta.php:1009
605
  msgid "Sale price"
606
  msgstr ""
607
 
608
- #: includes/meta.php:1010
609
  msgid "Regular price"
610
  msgstr ""
611
 
612
- #: includes/meta.php:1019
613
  msgid "Items price Color"
614
  msgstr ""
615
 
616
- #: includes/meta.php:1025
617
  msgid "Items price font size"
618
  msgstr ""
619
 
620
- #: includes/meta.php:1033
621
  msgid "Price text align"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1058
625
  msgid "Items rating text align"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1071
629
  msgid "Items ratings font size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1078
633
  msgid "Items ratings color"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1095
637
  msgid "Excerpt word count"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1101
641
  msgid "Excerpt read more text"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1107
645
  msgid "Items excerpt font size"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1114
649
  msgid "Excerpt text align"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1126
653
  msgid "Items excerpt font color"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1148
657
  msgid "Items category font size"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1155
661
  msgid "Category text align"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1170
665
  msgid "Items category font color"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  msgid "Custom CSS for this slider."
670
  msgstr ""
671
 
672
- #: includes/meta.php:1222
673
  msgid ""
674
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
675
  "sometime you need use \"!important\" to overrid."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
+ "POT-Creation-Date: 2018-01-12 21:13+0600\n"
5
+ "PO-Revision-Date: 2018-01-12 21:13+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: bn_BD\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
+ #: includes/class-functions.php:205
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
+ #: includes/class-functions.php:206 includes/meta.php:696
25
  msgid "Title"
26
  msgstr ""
27
 
28
+ #: includes/class-functions.php:207
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:208 includes/meta.php:876
33
  msgid "Category"
34
  msgstr ""
35
 
36
+ #: includes/class-functions.php:209
37
+ msgid "Tags"
38
+ msgstr ""
39
+
40
+ #: includes/class-functions.php:210
41
  msgid "Price"
42
  msgstr ""
43
 
44
+ #: includes/class-functions.php:211
45
  msgid "Rating"
46
  msgstr ""
47
 
48
+ #: includes/class-functions.php:212
49
  msgid "Cart"
50
  msgstr ""
51
 
52
+ #: includes/class-functions.php:213
53
  msgid "Sale"
54
  msgstr ""
55
 
56
+ #: includes/class-functions.php:214
57
  msgid "Featured"
58
  msgstr ""
59
 
60
+ #: includes/class-functions.php:215
61
+ msgid "SKU"
62
+ msgstr ""
63
+
64
+ #: includes/class-settings.php:21 includes/menu/settings.php:67
65
+ msgid "Help"
66
  msgstr ""
67
 
68
+ #: includes/class-shortcodes.php:170
69
  msgid "No Product to Slide"
70
  msgstr ""
71
 
72
+ #: includes/functions.php:84 includes/meta.php:264 includes/meta.php:276
73
  msgid "Shortcode"
74
  msgstr ""
75
 
85
  msgid " Settings"
86
  msgstr ""
87
 
88
+ #: includes/menu/settings.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Need Help ?"
90
  msgstr ""
91
 
92
+ #: includes/menu/settings.php:80
93
  msgid ""
94
  "Feel free to contact with any issue for this plugin, Ask any question via "
95
  "forum"
96
  msgstr ""
97
 
98
+ #: includes/menu/settings.php:80
99
  msgid "(free)"
100
  msgstr ""
101
 
102
+ #: includes/menu/settings.php:109
103
  msgid "Submit Reviews."
104
  msgstr ""
105
 
106
+ #: includes/menu/settings.php:111
107
  msgid ""
108
  "We are working hard to build some awesome plugins for you and spend thousand "
109
  "hour for plugins. we wish your three(3) minute by submitting five star "
110
  "reviews at wordpress.org. if you have any issue please submit at forum"
111
  msgstr ""
112
 
113
+ #: includes/menu/settings.php:121
114
  msgid "Please Share"
115
  msgstr ""
116
 
117
+ #: includes/menu/settings.php:122
118
  msgid "If you like this plugin please share with your social share network."
119
  msgstr ""
120
 
121
+ #: includes/menu/settings.php:141
 
 
 
 
 
 
 
 
122
  msgid "Save Changes"
123
  msgstr ""
124
 
154
  msgid "Woocommerce Products Slider Options"
155
  msgstr ""
156
 
157
+ #: includes/meta.php:201
158
  msgid "View product."
159
  msgstr ""
160
 
161
+ #: includes/meta.php:265
162
+ msgid "Options"
163
+ msgstr ""
164
+
165
+ #: includes/meta.php:266
166
  msgid "Style"
167
  msgstr ""
168
 
169
+ #: includes/meta.php:267
170
  msgid "Query Product"
171
  msgstr ""
172
 
173
+ #: includes/meta.php:268
174
  msgid "Elements"
175
  msgstr ""
176
 
177
+ #: includes/meta.php:269
178
  msgid "Custom CSS"
179
  msgstr ""
180
 
181
+ #: includes/meta.php:278
182
  msgid ""
183
  "Copy this shortcode and paste on page or post where you want to display "
184
  "slider."
185
  msgstr ""
186
 
187
+ #: includes/meta.php:280
188
  msgid "Use PHP code to your themes file to display slider."
189
  msgstr ""
190
 
191
+ #: includes/meta.php:295
192
  msgid "Slider column number"
193
  msgstr ""
194
 
195
+ #: includes/meta.php:297
196
  msgid "In Destop: (min:1000px and max)"
197
  msgstr ""
198
 
199
+ #: includes/meta.php:300
200
  msgid "In Tablet & Small Desktop: (900px max width)"
201
  msgstr ""
202
 
203
+ #: includes/meta.php:303
204
  msgid "In Mobile: (479px max width)"
205
  msgstr ""
206
 
207
+ #: includes/meta.php:311
208
  msgid "Slider Auto Play"
209
  msgstr ""
210
 
211
+ #: includes/meta.php:315 includes/meta.php:330 includes/meta.php:336
212
+ #: includes/meta.php:342 includes/meta.php:350 includes/meta.php:414
213
+ #: includes/meta.php:421 includes/meta.php:441 includes/meta.php:456
214
+ #: includes/meta.php:469 includes/meta.php:477
215
  msgid "True"
216
  msgstr ""
217
 
218
+ #: includes/meta.php:316 includes/meta.php:331 includes/meta.php:337
219
+ #: includes/meta.php:343 includes/meta.php:349 includes/meta.php:415
220
+ #: includes/meta.php:422 includes/meta.php:442 includes/meta.php:455
221
+ #: includes/meta.php:470 includes/meta.php:478
222
  msgid "False"
223
  msgstr ""
224
 
225
+ #: includes/meta.php:320
226
+ msgid "Slider Auto Play Speed"
227
+ msgstr ""
228
+
229
+ #: includes/meta.php:323
230
+ msgid "Slider Auto Play Timeout"
231
+ msgstr ""
232
+
233
+ #: includes/meta.php:328
234
  msgid "Slider rewind"
235
  msgstr ""
236
 
237
+ #: includes/meta.php:334
238
  msgid "Slider loop"
239
  msgstr ""
240
 
241
+ #: includes/meta.php:340
242
  msgid "Slider center"
243
  msgstr ""
244
 
245
+ #: includes/meta.php:346
246
  msgid "RTL Enabled"
247
  msgstr ""
248
 
249
+ #: includes/meta.php:356
250
  msgid "Animate Out"
251
  msgstr ""
252
 
253
+ #: includes/meta.php:359 includes/meta.php:390
254
  msgid "fadeOut"
255
  msgstr ""
256
 
257
+ #: includes/meta.php:360 includes/meta.php:391
258
  msgid "bounce"
259
  msgstr ""
260
 
261
+ #: includes/meta.php:361 includes/meta.php:392
262
  msgid "flash"
263
  msgstr ""
264
 
265
+ #: includes/meta.php:362 includes/meta.php:393
266
  msgid "pulse"
267
  msgstr ""
268
 
269
+ #: includes/meta.php:365 includes/meta.php:395
270
  msgid "Shake"
271
  msgstr ""
272
 
273
+ #: includes/meta.php:366 includes/meta.php:396
274
  msgid "Swing"
275
  msgstr ""
276
 
277
+ #: includes/meta.php:367 includes/meta.php:397
278
  msgid "Tada"
279
  msgstr ""
280
 
281
+ #: includes/meta.php:368 includes/meta.php:398
282
  msgid "Wobble"
283
  msgstr ""
284
 
285
+ #: includes/meta.php:369 includes/meta.php:399
286
  msgid "flip"
287
  msgstr ""
288
 
289
+ #: includes/meta.php:370 includes/meta.php:400
290
  msgid "flipInX"
291
  msgstr ""
292
 
293
+ #: includes/meta.php:371 includes/meta.php:401
294
  msgid "flipInY"
295
  msgstr ""
296
 
297
+ #: includes/meta.php:372 includes/meta.php:402
298
  msgid "fadeIn"
299
  msgstr ""
300
 
301
+ #: includes/meta.php:373 includes/meta.php:403
302
  msgid "fadeInDown"
303
  msgstr ""
304
 
305
+ #: includes/meta.php:374 includes/meta.php:404
306
  msgid "fadeInUp"
307
  msgstr ""
308
 
309
+ #: includes/meta.php:375 includes/meta.php:405
310
  msgid "bounceIn"
311
  msgstr ""
312
 
313
+ #: includes/meta.php:376 includes/meta.php:406
314
  msgid "bounceInDown"
315
  msgstr ""
316
 
317
+ #: includes/meta.php:377 includes/meta.php:407
318
  msgid "bounceInUp"
319
  msgstr ""
320
 
321
+ #: includes/meta.php:387
322
  msgid "Animate In"
323
  msgstr ""
324
 
325
+ #: includes/meta.php:411
326
  msgid "Slider Stop on Hover"
327
  msgstr ""
328
 
329
+ #: includes/meta.php:418
330
  msgid "Slider Navigation at Top"
331
  msgstr ""
332
 
333
+ #: includes/meta.php:426
334
  msgid "Slider Navigation Position"
335
  msgstr ""
336
 
337
+ #: includes/meta.php:428
338
  msgid "Top Right"
339
  msgstr ""
340
 
341
+ #: includes/meta.php:429
342
  msgid "Middle"
343
  msgstr ""
344
 
345
+ #: includes/meta.php:430
346
  msgid "Middle fixed"
347
  msgstr ""
348
 
349
+ #: includes/meta.php:434
350
  msgid "Slide Speed"
351
  msgstr ""
352
 
353
+ #: includes/meta.php:438
354
  msgid "Slider Pagination at Bottom"
355
  msgstr ""
356
 
357
+ #: includes/meta.php:447
358
  msgid "Pagination Background Color"
359
  msgstr ""
360
 
361
+ #: includes/meta.php:450
362
  msgid "Pagination Text Color"
363
  msgstr ""
364
 
365
+ #: includes/meta.php:453
366
  msgid "Pagination Number Counting"
367
  msgstr ""
368
 
369
+ #: includes/meta.php:462
370
  msgid "Pagination Slide Speed"
371
  msgstr ""
372
 
373
+ #: includes/meta.php:465
374
  msgid "Slider Touch Drag Enabled"
375
  msgstr ""
376
 
377
+ #: includes/meta.php:474
378
  msgid "Slider Mouse Drag Enabled"
379
  msgstr ""
380
 
381
+ #: includes/meta.php:501
382
  msgid "Themes for slider"
383
  msgstr ""
384
 
385
+ #: includes/meta.php:524
386
  msgid "Slider ribbon"
387
  msgstr ""
388
 
389
+ #: includes/meta.php:613
390
  msgid "Container options"
391
  msgstr ""
392
 
393
+ #: includes/meta.php:614
394
  msgid "Padding: (ex: 10px)"
395
  msgstr ""
396
 
397
+ #: includes/meta.php:617
398
  msgid "Background color:"
399
  msgstr ""
400
 
401
+ #: includes/meta.php:620
402
  msgid "Background image:"
403
  msgstr ""
404
 
405
+ #: includes/meta.php:625
406
  msgid "Clear"
407
  msgstr ""
408
 
409
+ #: includes/meta.php:650
410
  msgid "Items Options"
411
  msgstr ""
412
 
413
+ #: includes/meta.php:651
414
  msgid "Items background color"
415
  msgstr ""
416
 
417
+ #: includes/meta.php:654
418
  msgid "Items padding"
419
  msgstr ""
420
 
421
+ #: includes/meta.php:666
422
  msgid "Total Number of Product"
423
  msgstr ""
424
 
425
+ #: includes/meta.php:667
426
  msgid "ex: 10, to display all product please use -1"
427
  msgstr ""
428
 
429
+ #: includes/meta.php:672
430
  msgid "Query order"
431
  msgstr ""
432
 
433
+ #: includes/meta.php:675
434
  msgid "Descending"
435
  msgstr ""
436
 
437
+ #: includes/meta.php:676
438
  msgid "Ascending "
439
  msgstr ""
440
 
441
+ #: includes/meta.php:687
442
  msgid "Query orderBy"
443
  msgstr ""
444
 
445
+ #: includes/meta.php:690
446
  msgid "None"
447
  msgstr ""
448
 
449
+ #: includes/meta.php:691
450
  msgid "ID"
451
  msgstr ""
452
 
453
+ #: includes/meta.php:692
454
  msgid "Date"
455
  msgstr ""
456
 
457
+ #: includes/meta.php:693
458
  msgid "Rand"
459
  msgstr ""
460
 
461
+ #: includes/meta.php:694
462
  msgid "Comment Count"
463
  msgstr ""
464
 
465
+ #: includes/meta.php:695
466
  msgid "Author"
467
  msgstr ""
468
 
469
+ #: includes/meta.php:697
470
  msgid "Name"
471
  msgstr ""
472
 
473
+ #: includes/meta.php:698
474
  msgid "Type"
475
  msgstr ""
476
 
477
+ #: includes/meta.php:699
478
+ msgid "Menu order"
479
+ msgstr ""
480
+
481
+ #: includes/meta.php:707
482
  msgid "Hide out of stock items"
483
  msgstr ""
484
 
485
+ #: includes/meta.php:712
486
  msgid "Featured Product display"
487
  msgstr ""
488
 
489
+ #: includes/meta.php:717
490
  msgid "On Sale Product display"
491
  msgstr ""
492
 
493
+ #: includes/meta.php:721
494
+ msgid "Catalog visibility"
495
+ msgstr ""
496
+
497
+ #: includes/meta.php:748
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
+ #: includes/meta.php:750
502
+ msgid "Reset order"
503
  msgstr ""
504
 
505
+ #: includes/meta.php:809
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
+ #: includes/meta.php:872
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
+ #: includes/meta.php:875
514
  msgid "Product"
515
  msgstr ""
516
 
517
+ #: includes/meta.php:884
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
+ #: includes/meta.php:890
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
+ #: includes/meta.php:893
526
+ msgid "No"
527
+ msgstr ""
528
+
529
+ #: includes/meta.php:894
530
+ msgid "Yes"
531
+ msgstr ""
532
+
533
+ #: includes/meta.php:901
534
  msgid "Empty Thumbnail"
535
  msgstr ""
536
 
537
+ #: includes/meta.php:902
538
  msgid "Custom thumbnail image url"
539
  msgstr ""
540
 
541
+ #: includes/meta.php:978
542
  msgid "Items add to cart button Style"
543
  msgstr ""
544
 
545
+ #: includes/meta.php:979
546
  msgid "You can hide items add to cart button on slider."
547
  msgstr ""
548
 
549
+ #: includes/meta.php:981
550
  msgid "Default"
551
  msgstr ""
552
 
553
+ #: includes/meta.php:982
554
  msgid "Custom"
555
  msgstr ""
556
 
557
+ #: includes/meta.php:987
558
  msgid "Add to cart background color"
559
  msgstr ""
560
 
561
+ #: includes/meta.php:993
562
  msgid "Add to cart text color"
563
  msgstr ""
564
 
565
+ #: includes/meta.php:999
566
  msgid "Items cart text align"
567
  msgstr ""
568
 
569
+ #: includes/meta.php:1003 includes/meta.php:1056 includes/meta.php:1115
570
+ #: includes/meta.php:1140 includes/meta.php:1196 includes/meta.php:1232
571
+ #: includes/meta.php:1258 includes/meta.php:1284
572
  msgid "Left"
573
  msgstr ""
574
 
575
+ #: includes/meta.php:1004 includes/meta.php:1057 includes/meta.php:1116
576
+ #: includes/meta.php:1141 includes/meta.php:1197 includes/meta.php:1233
577
+ #: includes/meta.php:1259 includes/meta.php:1285
578
  msgid "Right"
579
  msgstr ""
580
 
581
+ #: includes/meta.php:1005 includes/meta.php:1058 includes/meta.php:1117
582
+ #: includes/meta.php:1142 includes/meta.php:1198 includes/meta.php:1234
583
+ #: includes/meta.php:1260 includes/meta.php:1286
584
  msgid "Center"
585
  msgstr ""
586
 
587
+ #: includes/meta.php:1020
588
  msgid "Sale marker icon url"
589
  msgstr ""
590
 
591
+ #: includes/meta.php:1040
592
  msgid "Items Title Color"
593
  msgstr ""
594
 
595
+ #: includes/meta.php:1045
596
  msgid "Items Title Font Size"
597
  msgstr ""
598
 
599
+ #: includes/meta.php:1052
600
  msgid "Items Title Text Align"
601
  msgstr ""
602
 
603
+ #: includes/meta.php:1071
604
  msgid "Featured marker icon url"
605
  msgstr ""
606
 
607
+ #: includes/meta.php:1083
608
  msgid "Price format on slider"
609
  msgstr ""
610
 
611
+ #: includes/meta.php:1086
612
  msgid "Full Format"
613
  msgstr ""
614
 
615
+ #: includes/meta.php:1087
616
  msgid "Sale price"
617
  msgstr ""
618
 
619
+ #: includes/meta.php:1088
620
  msgid "Regular price"
621
  msgstr ""
622
 
623
+ #: includes/meta.php:1097
624
  msgid "Items price Color"
625
  msgstr ""
626
 
627
+ #: includes/meta.php:1103
628
  msgid "Items price font size"
629
  msgstr ""
630
 
631
+ #: includes/meta.php:1111
632
  msgid "Price text align"
633
  msgstr ""
634
 
635
+ #: includes/meta.php:1136
636
  msgid "Items rating text align"
637
  msgstr ""
638
 
639
+ #: includes/meta.php:1149
640
  msgid "Items ratings font size"
641
  msgstr ""
642
 
643
+ #: includes/meta.php:1156
644
  msgid "Items ratings color"
645
  msgstr ""
646
 
647
+ #: includes/meta.php:1173
648
  msgid "Excerpt word count"
649
  msgstr ""
650
 
651
+ #: includes/meta.php:1179
652
  msgid "Excerpt read more text"
653
  msgstr ""
654
 
655
+ #: includes/meta.php:1185
656
  msgid "Items excerpt font size"
657
  msgstr ""
658
 
659
+ #: includes/meta.php:1192
660
  msgid "Excerpt text align"
661
  msgstr ""
662
 
663
+ #: includes/meta.php:1204
664
  msgid "Items excerpt font color"
665
  msgstr ""
666
 
667
+ #: includes/meta.php:1224
668
  msgid "Items category font size"
669
  msgstr ""
670
 
671
+ #: includes/meta.php:1229
672
  msgid "Category text align"
673
  msgstr ""
674
 
675
+ #: includes/meta.php:1239
676
  msgid "Items category font color"
677
  msgstr ""
678
 
679
+ #: includes/meta.php:1250
680
+ msgid "Items tag font size"
681
+ msgstr ""
682
+
683
+ #: includes/meta.php:1255
684
+ msgid "Tag text align"
685
+ msgstr ""
686
+
687
+ #: includes/meta.php:1265
688
+ msgid "Items tag font color"
689
+ msgstr ""
690
+
691
+ #: includes/meta.php:1276
692
+ msgid "Items SKU font size"
693
+ msgstr ""
694
+
695
+ #: includes/meta.php:1281
696
+ msgid "SKU text align"
697
+ msgstr ""
698
+
699
+ #: includes/meta.php:1291
700
+ msgid "Items SKU font color"
701
+ msgstr ""
702
+
703
+ #: includes/meta.php:1339
704
  msgid "Custom CSS for this slider."
705
  msgstr ""
706
 
707
+ #: includes/meta.php:1340
708
  msgid ""
709
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
710
  "sometime you need use \"!important\" to overrid."
languages/woocommerce-products-slider-fi.mo CHANGED
Binary file
languages/woocommerce-products-slider-fi.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
- "POT-Creation-Date: 2017-03-09 11:19+0600\n"
5
- "PO-Revision-Date: 2017-03-09 11:19+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.12\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,51 +17,59 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:625
25
  msgid "Title"
26
  msgstr ""
27
 
28
- #: includes/class-functions.php:64
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
36
- #: includes/class-functions.php:66
 
 
 
 
37
  msgid "Price"
38
  msgstr ""
39
 
40
- #: includes/class-functions.php:67
41
  msgid "Rating"
42
  msgstr ""
43
 
44
- #: includes/class-functions.php:68
45
  msgid "Cart"
46
  msgstr ""
47
 
48
- #: includes/class-functions.php:69
49
  msgid "Sale"
50
  msgstr ""
51
 
52
- #: includes/class-functions.php:70
53
  msgid "Featured"
54
  msgstr ""
55
 
56
- #: includes/class-settings.php:21
57
- msgid "Settings"
 
 
 
 
58
  msgstr ""
59
 
60
- #: includes/class-shortcodes.php:137
61
  msgid "No Product to Slide"
62
  msgstr ""
63
 
64
- #: includes/functions.php:84 includes/meta.php:220 includes/meta.php:232
65
  msgid "Shortcode"
66
  msgstr ""
67
 
@@ -77,68 +85,40 @@ msgstr ""
77
  msgid " Settings"
78
  msgstr ""
79
 
80
- #: includes/menu/settings.php:67 includes/meta.php:221
81
- msgid "Options"
82
- msgstr ""
83
-
84
- #: includes/menu/settings.php:68
85
- msgid "Help"
86
- msgstr ""
87
-
88
- #: includes/menu/settings.php:77
89
- msgid "Track product View"
90
- msgstr ""
91
-
92
- #: includes/menu/settings.php:81 includes/meta.php:815
93
- msgid "No"
94
- msgstr ""
95
-
96
- #: includes/menu/settings.php:82 includes/meta.php:816
97
- msgid "Yes"
98
- msgstr ""
99
-
100
- #: includes/menu/settings.php:95
101
  msgid "Need Help ?"
102
  msgstr ""
103
 
104
- #: includes/menu/settings.php:97
105
  msgid ""
106
  "Feel free to contact with any issue for this plugin, Ask any question via "
107
  "forum"
108
  msgstr ""
109
 
110
- #: includes/menu/settings.php:97
111
  msgid "(free)"
112
  msgstr ""
113
 
114
- #: includes/menu/settings.php:126
115
  msgid "Submit Reviews."
116
  msgstr ""
117
 
118
- #: includes/menu/settings.php:128
119
  msgid ""
120
  "We are working hard to build some awesome plugins for you and spend thousand "
121
  "hour for plugins. we wish your three(3) minute by submitting five star "
122
  "reviews at wordpress.org. if you have any issue please submit at forum"
123
  msgstr ""
124
 
125
- #: includes/menu/settings.php:139
126
  msgid "Please Share"
127
  msgstr ""
128
 
129
- #: includes/menu/settings.php:140
130
  msgid "If you like this plugin please share with your social share network."
131
  msgstr ""
132
 
133
- #: includes/menu/settings.php:147
134
- msgid "Video Tutorial"
135
- msgstr ""
136
-
137
- #: includes/menu/settings.php:148
138
- msgid "Please watch this video tutorial."
139
- msgstr ""
140
-
141
- #: includes/menu/settings.php:165
142
  msgid "Save Changes"
143
  msgstr ""
144
 
@@ -174,502 +154,557 @@ msgstr ""
174
  msgid "Woocommerce Products Slider Options"
175
  msgstr ""
176
 
177
- #: includes/meta.php:178
178
  msgid "View product."
179
  msgstr ""
180
 
181
- #: includes/meta.php:222
 
 
 
 
182
  msgid "Style"
183
  msgstr ""
184
 
185
- #: includes/meta.php:223
186
  msgid "Query Product"
187
  msgstr ""
188
 
189
- #: includes/meta.php:224
190
  msgid "Elements"
191
  msgstr ""
192
 
193
- #: includes/meta.php:225
194
  msgid "Custom CSS"
195
  msgstr ""
196
 
197
- #: includes/meta.php:234
198
  msgid ""
199
  "Copy this shortcode and paste on page or post where you want to display "
200
  "slider."
201
  msgstr ""
202
 
203
- #: includes/meta.php:236
204
  msgid "Use PHP code to your themes file to display slider."
205
  msgstr ""
206
 
207
- #: includes/meta.php:251
208
  msgid "Slider column number"
209
  msgstr ""
210
 
211
- #: includes/meta.php:253
212
  msgid "In Destop: (min:1000px and max)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:256
216
  msgid "In Tablet & Small Desktop: (900px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:259
220
  msgid "In Mobile: (479px max width)"
221
  msgstr ""
222
 
223
- #: includes/meta.php:267
224
  msgid "Slider Auto Play"
225
  msgstr ""
226
 
227
- #: includes/meta.php:271 includes/meta.php:277 includes/meta.php:283
228
- #: includes/meta.php:289 includes/meta.php:297 includes/meta.php:361
229
- #: includes/meta.php:368 includes/meta.php:388 includes/meta.php:403
230
- #: includes/meta.php:416 includes/meta.php:424
231
  msgid "True"
232
  msgstr ""
233
 
234
- #: includes/meta.php:272 includes/meta.php:278 includes/meta.php:284
235
- #: includes/meta.php:290 includes/meta.php:296 includes/meta.php:362
236
- #: includes/meta.php:369 includes/meta.php:389 includes/meta.php:402
237
- #: includes/meta.php:417 includes/meta.php:425
238
  msgid "False"
239
  msgstr ""
240
 
241
- #: includes/meta.php:275
 
 
 
 
 
 
 
 
242
  msgid "Slider rewind"
243
  msgstr ""
244
 
245
- #: includes/meta.php:281
246
  msgid "Slider loop"
247
  msgstr ""
248
 
249
- #: includes/meta.php:287
250
  msgid "Slider center"
251
  msgstr ""
252
 
253
- #: includes/meta.php:293
254
  msgid "RTL Enabled"
255
  msgstr ""
256
 
257
- #: includes/meta.php:303
258
  msgid "Animate Out"
259
  msgstr ""
260
 
261
- #: includes/meta.php:306 includes/meta.php:337
262
  msgid "fadeOut"
263
  msgstr ""
264
 
265
- #: includes/meta.php:307 includes/meta.php:338
266
  msgid "bounce"
267
  msgstr ""
268
 
269
- #: includes/meta.php:308 includes/meta.php:339
270
  msgid "flash"
271
  msgstr ""
272
 
273
- #: includes/meta.php:309 includes/meta.php:340
274
  msgid "pulse"
275
  msgstr ""
276
 
277
- #: includes/meta.php:312 includes/meta.php:342
278
  msgid "Shake"
279
  msgstr ""
280
 
281
- #: includes/meta.php:313 includes/meta.php:343
282
  msgid "Swing"
283
  msgstr ""
284
 
285
- #: includes/meta.php:314 includes/meta.php:344
286
  msgid "Tada"
287
  msgstr ""
288
 
289
- #: includes/meta.php:315 includes/meta.php:345
290
  msgid "Wobble"
291
  msgstr ""
292
 
293
- #: includes/meta.php:316 includes/meta.php:346
294
  msgid "flip"
295
  msgstr ""
296
 
297
- #: includes/meta.php:317 includes/meta.php:347
298
  msgid "flipInX"
299
  msgstr ""
300
 
301
- #: includes/meta.php:318 includes/meta.php:348
302
  msgid "flipInY"
303
  msgstr ""
304
 
305
- #: includes/meta.php:319 includes/meta.php:349
306
  msgid "fadeIn"
307
  msgstr ""
308
 
309
- #: includes/meta.php:320 includes/meta.php:350
310
  msgid "fadeInDown"
311
  msgstr ""
312
 
313
- #: includes/meta.php:321 includes/meta.php:351
314
  msgid "fadeInUp"
315
  msgstr ""
316
 
317
- #: includes/meta.php:322 includes/meta.php:352
318
  msgid "bounceIn"
319
  msgstr ""
320
 
321
- #: includes/meta.php:323 includes/meta.php:353
322
  msgid "bounceInDown"
323
  msgstr ""
324
 
325
- #: includes/meta.php:324 includes/meta.php:354
326
  msgid "bounceInUp"
327
  msgstr ""
328
 
329
- #: includes/meta.php:334
330
  msgid "Animate In"
331
  msgstr ""
332
 
333
- #: includes/meta.php:358
334
  msgid "Slider Stop on Hover"
335
  msgstr ""
336
 
337
- #: includes/meta.php:365
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:373
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:375
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:376
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:377
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:381
358
  msgid "Slide Speed"
359
  msgstr ""
360
 
361
- #: includes/meta.php:385
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:394
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:397
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:400
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:409
378
  msgid "Pagination Slide Speed"
379
  msgstr ""
380
 
381
- #: includes/meta.php:412
382
  msgid "Slider Touch Drag Enabled"
383
  msgstr ""
384
 
385
- #: includes/meta.php:421
386
  msgid "Slider Mouse Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:448
390
  msgid "Themes for slider"
391
  msgstr ""
392
 
393
- #: includes/meta.php:471
394
  msgid "Slider ribbon"
395
  msgstr ""
396
 
397
- #: includes/meta.php:542
398
  msgid "Container options"
399
  msgstr ""
400
 
401
- #: includes/meta.php:543
402
  msgid "Padding: (ex: 10px)"
403
  msgstr ""
404
 
405
- #: includes/meta.php:546
406
  msgid "Background color:"
407
  msgstr ""
408
 
409
- #: includes/meta.php:549
410
  msgid "Background image:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:554
414
  msgid "Clear"
415
  msgstr ""
416
 
417
- #: includes/meta.php:579
418
  msgid "Items Options"
419
  msgstr ""
420
 
421
- #: includes/meta.php:580
422
  msgid "Items background color"
423
  msgstr ""
424
 
425
- #: includes/meta.php:583
426
  msgid "Items padding"
427
  msgstr ""
428
 
429
- #: includes/meta.php:595
430
  msgid "Total Number of Product"
431
  msgstr ""
432
 
433
- #: includes/meta.php:596
434
  msgid "ex: 10, to display all product please use -1"
435
  msgstr ""
436
 
437
- #: includes/meta.php:601
438
  msgid "Query order"
439
  msgstr ""
440
 
441
- #: includes/meta.php:604
442
  msgid "Descending"
443
  msgstr ""
444
 
445
- #: includes/meta.php:605
446
  msgid "Ascending "
447
  msgstr ""
448
 
449
- #: includes/meta.php:616
450
  msgid "Query orderBy"
451
  msgstr ""
452
 
453
- #: includes/meta.php:619
454
  msgid "None"
455
  msgstr ""
456
 
457
- #: includes/meta.php:620
458
  msgid "ID"
459
  msgstr ""
460
 
461
- #: includes/meta.php:621
462
  msgid "Date"
463
  msgstr ""
464
 
465
- #: includes/meta.php:622
466
  msgid "Rand"
467
  msgstr ""
468
 
469
- #: includes/meta.php:623
470
  msgid "Comment Count"
471
  msgstr ""
472
 
473
- #: includes/meta.php:624
474
  msgid "Author"
475
  msgstr ""
476
 
477
- #: includes/meta.php:626
478
  msgid "Name"
479
  msgstr ""
480
 
481
- #: includes/meta.php:627
482
  msgid "Type"
483
  msgstr ""
484
 
485
- #: includes/meta.php:636
 
 
 
 
486
  msgid "Hide out of stock items"
487
  msgstr ""
488
 
489
- #: includes/meta.php:640
490
  msgid "Featured Product display"
491
  msgstr ""
492
 
493
- #: includes/meta.php:644
494
  msgid "On Sale Product display"
495
  msgstr ""
496
 
497
- #: includes/meta.php:670
 
 
 
 
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
- #: includes/meta.php:672
502
- msgid "Reset"
503
  msgstr ""
504
 
505
- #: includes/meta.php:731
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
- #: includes/meta.php:794
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
- #: includes/meta.php:797
514
  msgid "Product"
515
  msgstr ""
516
 
517
- #: includes/meta.php:806
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
- #: includes/meta.php:812
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
- #: includes/meta.php:823
 
 
 
 
 
 
 
 
526
  msgid "Empty Thumbnail"
527
  msgstr ""
528
 
529
- #: includes/meta.php:824
530
  msgid "Custom thumbnail image url"
531
  msgstr ""
532
 
533
- #: includes/meta.php:900
534
  msgid "Items add to cart button Style"
535
  msgstr ""
536
 
537
- #: includes/meta.php:901
538
  msgid "You can hide items add to cart button on slider."
539
  msgstr ""
540
 
541
- #: includes/meta.php:903
542
  msgid "Default"
543
  msgstr ""
544
 
545
- #: includes/meta.php:904
546
  msgid "Custom"
547
  msgstr ""
548
 
549
- #: includes/meta.php:909
550
  msgid "Add to cart background color"
551
  msgstr ""
552
 
553
- #: includes/meta.php:915
554
  msgid "Add to cart text color"
555
  msgstr ""
556
 
557
- #: includes/meta.php:921
558
  msgid "Items cart text align"
559
  msgstr ""
560
 
561
- #: includes/meta.php:925 includes/meta.php:978 includes/meta.php:1037
562
- #: includes/meta.php:1062 includes/meta.php:1118 includes/meta.php:1159
 
563
  msgid "Left"
564
  msgstr ""
565
 
566
- #: includes/meta.php:926 includes/meta.php:979 includes/meta.php:1038
567
- #: includes/meta.php:1063 includes/meta.php:1119 includes/meta.php:1160
 
568
  msgid "Right"
569
  msgstr ""
570
 
571
- #: includes/meta.php:927 includes/meta.php:980 includes/meta.php:1039
572
- #: includes/meta.php:1064 includes/meta.php:1120 includes/meta.php:1161
 
573
  msgid "Center"
574
  msgstr ""
575
 
576
- #: includes/meta.php:943
577
  msgid "Sale marker icon url"
578
  msgstr ""
579
 
580
- #: includes/meta.php:962
581
  msgid "Items Title Color"
582
  msgstr ""
583
 
584
- #: includes/meta.php:967
585
  msgid "Items Title Font Size"
586
  msgstr ""
587
 
588
- #: includes/meta.php:974
589
  msgid "Items Title Text Align"
590
  msgstr ""
591
 
592
- #: includes/meta.php:993
593
  msgid "Featured marker icon url"
594
  msgstr ""
595
 
596
- #: includes/meta.php:1005
597
  msgid "Price format on slider"
598
  msgstr ""
599
 
600
- #: includes/meta.php:1008
601
  msgid "Full Format"
602
  msgstr ""
603
 
604
- #: includes/meta.php:1009
605
  msgid "Sale price"
606
  msgstr ""
607
 
608
- #: includes/meta.php:1010
609
  msgid "Regular price"
610
  msgstr ""
611
 
612
- #: includes/meta.php:1019
613
  msgid "Items price Color"
614
  msgstr ""
615
 
616
- #: includes/meta.php:1025
617
  msgid "Items price font size"
618
  msgstr ""
619
 
620
- #: includes/meta.php:1033
621
  msgid "Price text align"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1058
625
  msgid "Items rating text align"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1071
629
  msgid "Items ratings font size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1078
633
  msgid "Items ratings color"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1095
637
  msgid "Excerpt word count"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1101
641
  msgid "Excerpt read more text"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1107
645
  msgid "Items excerpt font size"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1114
649
  msgid "Excerpt text align"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1126
653
  msgid "Items excerpt font color"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1148
657
  msgid "Items category font size"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1155
661
  msgid "Category text align"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1170
665
  msgid "Items category font color"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  msgid "Custom CSS for this slider."
670
  msgstr ""
671
 
672
- #: includes/meta.php:1222
673
  msgid ""
674
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
675
  "sometime you need use \"!important\" to overrid."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
+ "POT-Creation-Date: 2018-01-12 21:13+0600\n"
5
+ "PO-Revision-Date: 2018-01-12 21:13+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
+ #: includes/class-functions.php:205
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
+ #: includes/class-functions.php:206 includes/meta.php:696
25
  msgid "Title"
26
  msgstr ""
27
 
28
+ #: includes/class-functions.php:207
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:208 includes/meta.php:876
33
  msgid "Category"
34
  msgstr ""
35
 
36
+ #: includes/class-functions.php:209
37
+ msgid "Tags"
38
+ msgstr ""
39
+
40
+ #: includes/class-functions.php:210
41
  msgid "Price"
42
  msgstr ""
43
 
44
+ #: includes/class-functions.php:211
45
  msgid "Rating"
46
  msgstr ""
47
 
48
+ #: includes/class-functions.php:212
49
  msgid "Cart"
50
  msgstr ""
51
 
52
+ #: includes/class-functions.php:213
53
  msgid "Sale"
54
  msgstr ""
55
 
56
+ #: includes/class-functions.php:214
57
  msgid "Featured"
58
  msgstr ""
59
 
60
+ #: includes/class-functions.php:215
61
+ msgid "SKU"
62
+ msgstr ""
63
+
64
+ #: includes/class-settings.php:21 includes/menu/settings.php:67
65
+ msgid "Help"
66
  msgstr ""
67
 
68
+ #: includes/class-shortcodes.php:170
69
  msgid "No Product to Slide"
70
  msgstr ""
71
 
72
+ #: includes/functions.php:84 includes/meta.php:264 includes/meta.php:276
73
  msgid "Shortcode"
74
  msgstr ""
75
 
85
  msgid " Settings"
86
  msgstr ""
87
 
88
+ #: includes/menu/settings.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Need Help ?"
90
  msgstr ""
91
 
92
+ #: includes/menu/settings.php:80
93
  msgid ""
94
  "Feel free to contact with any issue for this plugin, Ask any question via "
95
  "forum"
96
  msgstr ""
97
 
98
+ #: includes/menu/settings.php:80
99
  msgid "(free)"
100
  msgstr ""
101
 
102
+ #: includes/menu/settings.php:109
103
  msgid "Submit Reviews."
104
  msgstr ""
105
 
106
+ #: includes/menu/settings.php:111
107
  msgid ""
108
  "We are working hard to build some awesome plugins for you and spend thousand "
109
  "hour for plugins. we wish your three(3) minute by submitting five star "
110
  "reviews at wordpress.org. if you have any issue please submit at forum"
111
  msgstr ""
112
 
113
+ #: includes/menu/settings.php:121
114
  msgid "Please Share"
115
  msgstr ""
116
 
117
+ #: includes/menu/settings.php:122
118
  msgid "If you like this plugin please share with your social share network."
119
  msgstr ""
120
 
121
+ #: includes/menu/settings.php:141
 
 
 
 
 
 
 
 
122
  msgid "Save Changes"
123
  msgstr ""
124
 
154
  msgid "Woocommerce Products Slider Options"
155
  msgstr ""
156
 
157
+ #: includes/meta.php:201
158
  msgid "View product."
159
  msgstr ""
160
 
161
+ #: includes/meta.php:265
162
+ msgid "Options"
163
+ msgstr ""
164
+
165
+ #: includes/meta.php:266
166
  msgid "Style"
167
  msgstr ""
168
 
169
+ #: includes/meta.php:267
170
  msgid "Query Product"
171
  msgstr ""
172
 
173
+ #: includes/meta.php:268
174
  msgid "Elements"
175
  msgstr ""
176
 
177
+ #: includes/meta.php:269
178
  msgid "Custom CSS"
179
  msgstr ""
180
 
181
+ #: includes/meta.php:278
182
  msgid ""
183
  "Copy this shortcode and paste on page or post where you want to display "
184
  "slider."
185
  msgstr ""
186
 
187
+ #: includes/meta.php:280
188
  msgid "Use PHP code to your themes file to display slider."
189
  msgstr ""
190
 
191
+ #: includes/meta.php:295
192
  msgid "Slider column number"
193
  msgstr ""
194
 
195
+ #: includes/meta.php:297
196
  msgid "In Destop: (min:1000px and max)"
197
  msgstr ""
198
 
199
+ #: includes/meta.php:300
200
  msgid "In Tablet & Small Desktop: (900px max width)"
201
  msgstr ""
202
 
203
+ #: includes/meta.php:303
204
  msgid "In Mobile: (479px max width)"
205
  msgstr ""
206
 
207
+ #: includes/meta.php:311
208
  msgid "Slider Auto Play"
209
  msgstr ""
210
 
211
+ #: includes/meta.php:315 includes/meta.php:330 includes/meta.php:336
212
+ #: includes/meta.php:342 includes/meta.php:350 includes/meta.php:414
213
+ #: includes/meta.php:421 includes/meta.php:441 includes/meta.php:456
214
+ #: includes/meta.php:469 includes/meta.php:477
215
  msgid "True"
216
  msgstr ""
217
 
218
+ #: includes/meta.php:316 includes/meta.php:331 includes/meta.php:337
219
+ #: includes/meta.php:343 includes/meta.php:349 includes/meta.php:415
220
+ #: includes/meta.php:422 includes/meta.php:442 includes/meta.php:455
221
+ #: includes/meta.php:470 includes/meta.php:478
222
  msgid "False"
223
  msgstr ""
224
 
225
+ #: includes/meta.php:320
226
+ msgid "Slider Auto Play Speed"
227
+ msgstr ""
228
+
229
+ #: includes/meta.php:323
230
+ msgid "Slider Auto Play Timeout"
231
+ msgstr ""
232
+
233
+ #: includes/meta.php:328
234
  msgid "Slider rewind"
235
  msgstr ""
236
 
237
+ #: includes/meta.php:334
238
  msgid "Slider loop"
239
  msgstr ""
240
 
241
+ #: includes/meta.php:340
242
  msgid "Slider center"
243
  msgstr ""
244
 
245
+ #: includes/meta.php:346
246
  msgid "RTL Enabled"
247
  msgstr ""
248
 
249
+ #: includes/meta.php:356
250
  msgid "Animate Out"
251
  msgstr ""
252
 
253
+ #: includes/meta.php:359 includes/meta.php:390
254
  msgid "fadeOut"
255
  msgstr ""
256
 
257
+ #: includes/meta.php:360 includes/meta.php:391
258
  msgid "bounce"
259
  msgstr ""
260
 
261
+ #: includes/meta.php:361 includes/meta.php:392
262
  msgid "flash"
263
  msgstr ""
264
 
265
+ #: includes/meta.php:362 includes/meta.php:393
266
  msgid "pulse"
267
  msgstr ""
268
 
269
+ #: includes/meta.php:365 includes/meta.php:395
270
  msgid "Shake"
271
  msgstr ""
272
 
273
+ #: includes/meta.php:366 includes/meta.php:396
274
  msgid "Swing"
275
  msgstr ""
276
 
277
+ #: includes/meta.php:367 includes/meta.php:397
278
  msgid "Tada"
279
  msgstr ""
280
 
281
+ #: includes/meta.php:368 includes/meta.php:398
282
  msgid "Wobble"
283
  msgstr ""
284
 
285
+ #: includes/meta.php:369 includes/meta.php:399
286
  msgid "flip"
287
  msgstr ""
288
 
289
+ #: includes/meta.php:370 includes/meta.php:400
290
  msgid "flipInX"
291
  msgstr ""
292
 
293
+ #: includes/meta.php:371 includes/meta.php:401
294
  msgid "flipInY"
295
  msgstr ""
296
 
297
+ #: includes/meta.php:372 includes/meta.php:402
298
  msgid "fadeIn"
299
  msgstr ""
300
 
301
+ #: includes/meta.php:373 includes/meta.php:403
302
  msgid "fadeInDown"
303
  msgstr ""
304
 
305
+ #: includes/meta.php:374 includes/meta.php:404
306
  msgid "fadeInUp"
307
  msgstr ""
308
 
309
+ #: includes/meta.php:375 includes/meta.php:405
310
  msgid "bounceIn"
311
  msgstr ""
312
 
313
+ #: includes/meta.php:376 includes/meta.php:406
314
  msgid "bounceInDown"
315
  msgstr ""
316
 
317
+ #: includes/meta.php:377 includes/meta.php:407
318
  msgid "bounceInUp"
319
  msgstr ""
320
 
321
+ #: includes/meta.php:387
322
  msgid "Animate In"
323
  msgstr ""
324
 
325
+ #: includes/meta.php:411
326
  msgid "Slider Stop on Hover"
327
  msgstr ""
328
 
329
+ #: includes/meta.php:418
330
  msgid "Slider Navigation at Top"
331
  msgstr ""
332
 
333
+ #: includes/meta.php:426
334
  msgid "Slider Navigation Position"
335
  msgstr ""
336
 
337
+ #: includes/meta.php:428
338
  msgid "Top Right"
339
  msgstr ""
340
 
341
+ #: includes/meta.php:429
342
  msgid "Middle"
343
  msgstr ""
344
 
345
+ #: includes/meta.php:430
346
  msgid "Middle fixed"
347
  msgstr ""
348
 
349
+ #: includes/meta.php:434
350
  msgid "Slide Speed"
351
  msgstr ""
352
 
353
+ #: includes/meta.php:438
354
  msgid "Slider Pagination at Bottom"
355
  msgstr ""
356
 
357
+ #: includes/meta.php:447
358
  msgid "Pagination Background Color"
359
  msgstr ""
360
 
361
+ #: includes/meta.php:450
362
  msgid "Pagination Text Color"
363
  msgstr ""
364
 
365
+ #: includes/meta.php:453
366
  msgid "Pagination Number Counting"
367
  msgstr ""
368
 
369
+ #: includes/meta.php:462
370
  msgid "Pagination Slide Speed"
371
  msgstr ""
372
 
373
+ #: includes/meta.php:465
374
  msgid "Slider Touch Drag Enabled"
375
  msgstr ""
376
 
377
+ #: includes/meta.php:474
378
  msgid "Slider Mouse Drag Enabled"
379
  msgstr ""
380
 
381
+ #: includes/meta.php:501
382
  msgid "Themes for slider"
383
  msgstr ""
384
 
385
+ #: includes/meta.php:524
386
  msgid "Slider ribbon"
387
  msgstr ""
388
 
389
+ #: includes/meta.php:613
390
  msgid "Container options"
391
  msgstr ""
392
 
393
+ #: includes/meta.php:614
394
  msgid "Padding: (ex: 10px)"
395
  msgstr ""
396
 
397
+ #: includes/meta.php:617
398
  msgid "Background color:"
399
  msgstr ""
400
 
401
+ #: includes/meta.php:620
402
  msgid "Background image:"
403
  msgstr ""
404
 
405
+ #: includes/meta.php:625
406
  msgid "Clear"
407
  msgstr ""
408
 
409
+ #: includes/meta.php:650
410
  msgid "Items Options"
411
  msgstr ""
412
 
413
+ #: includes/meta.php:651
414
  msgid "Items background color"
415
  msgstr ""
416
 
417
+ #: includes/meta.php:654
418
  msgid "Items padding"
419
  msgstr ""
420
 
421
+ #: includes/meta.php:666
422
  msgid "Total Number of Product"
423
  msgstr ""
424
 
425
+ #: includes/meta.php:667
426
  msgid "ex: 10, to display all product please use -1"
427
  msgstr ""
428
 
429
+ #: includes/meta.php:672
430
  msgid "Query order"
431
  msgstr ""
432
 
433
+ #: includes/meta.php:675
434
  msgid "Descending"
435
  msgstr ""
436
 
437
+ #: includes/meta.php:676
438
  msgid "Ascending "
439
  msgstr ""
440
 
441
+ #: includes/meta.php:687
442
  msgid "Query orderBy"
443
  msgstr ""
444
 
445
+ #: includes/meta.php:690
446
  msgid "None"
447
  msgstr ""
448
 
449
+ #: includes/meta.php:691
450
  msgid "ID"
451
  msgstr ""
452
 
453
+ #: includes/meta.php:692
454
  msgid "Date"
455
  msgstr ""
456
 
457
+ #: includes/meta.php:693
458
  msgid "Rand"
459
  msgstr ""
460
 
461
+ #: includes/meta.php:694
462
  msgid "Comment Count"
463
  msgstr ""
464
 
465
+ #: includes/meta.php:695
466
  msgid "Author"
467
  msgstr ""
468
 
469
+ #: includes/meta.php:697
470
  msgid "Name"
471
  msgstr ""
472
 
473
+ #: includes/meta.php:698
474
  msgid "Type"
475
  msgstr ""
476
 
477
+ #: includes/meta.php:699
478
+ msgid "Menu order"
479
+ msgstr ""
480
+
481
+ #: includes/meta.php:707
482
  msgid "Hide out of stock items"
483
  msgstr ""
484
 
485
+ #: includes/meta.php:712
486
  msgid "Featured Product display"
487
  msgstr ""
488
 
489
+ #: includes/meta.php:717
490
  msgid "On Sale Product display"
491
  msgstr ""
492
 
493
+ #: includes/meta.php:721
494
+ msgid "Catalog visibility"
495
+ msgstr ""
496
+
497
+ #: includes/meta.php:748
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
+ #: includes/meta.php:750
502
+ msgid "Reset order"
503
  msgstr ""
504
 
505
+ #: includes/meta.php:809
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
+ #: includes/meta.php:872
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
+ #: includes/meta.php:875
514
  msgid "Product"
515
  msgstr ""
516
 
517
+ #: includes/meta.php:884
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
+ #: includes/meta.php:890
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
+ #: includes/meta.php:893
526
+ msgid "No"
527
+ msgstr ""
528
+
529
+ #: includes/meta.php:894
530
+ msgid "Yes"
531
+ msgstr ""
532
+
533
+ #: includes/meta.php:901
534
  msgid "Empty Thumbnail"
535
  msgstr ""
536
 
537
+ #: includes/meta.php:902
538
  msgid "Custom thumbnail image url"
539
  msgstr ""
540
 
541
+ #: includes/meta.php:978
542
  msgid "Items add to cart button Style"
543
  msgstr ""
544
 
545
+ #: includes/meta.php:979
546
  msgid "You can hide items add to cart button on slider."
547
  msgstr ""
548
 
549
+ #: includes/meta.php:981
550
  msgid "Default"
551
  msgstr ""
552
 
553
+ #: includes/meta.php:982
554
  msgid "Custom"
555
  msgstr ""
556
 
557
+ #: includes/meta.php:987
558
  msgid "Add to cart background color"
559
  msgstr ""
560
 
561
+ #: includes/meta.php:993
562
  msgid "Add to cart text color"
563
  msgstr ""
564
 
565
+ #: includes/meta.php:999
566
  msgid "Items cart text align"
567
  msgstr ""
568
 
569
+ #: includes/meta.php:1003 includes/meta.php:1056 includes/meta.php:1115
570
+ #: includes/meta.php:1140 includes/meta.php:1196 includes/meta.php:1232
571
+ #: includes/meta.php:1258 includes/meta.php:1284
572
  msgid "Left"
573
  msgstr ""
574
 
575
+ #: includes/meta.php:1004 includes/meta.php:1057 includes/meta.php:1116
576
+ #: includes/meta.php:1141 includes/meta.php:1197 includes/meta.php:1233
577
+ #: includes/meta.php:1259 includes/meta.php:1285
578
  msgid "Right"
579
  msgstr ""
580
 
581
+ #: includes/meta.php:1005 includes/meta.php:1058 includes/meta.php:1117
582
+ #: includes/meta.php:1142 includes/meta.php:1198 includes/meta.php:1234
583
+ #: includes/meta.php:1260 includes/meta.php:1286
584
  msgid "Center"
585
  msgstr ""
586
 
587
+ #: includes/meta.php:1020
588
  msgid "Sale marker icon url"
589
  msgstr ""
590
 
591
+ #: includes/meta.php:1040
592
  msgid "Items Title Color"
593
  msgstr ""
594
 
595
+ #: includes/meta.php:1045
596
  msgid "Items Title Font Size"
597
  msgstr ""
598
 
599
+ #: includes/meta.php:1052
600
  msgid "Items Title Text Align"
601
  msgstr ""
602
 
603
+ #: includes/meta.php:1071
604
  msgid "Featured marker icon url"
605
  msgstr ""
606
 
607
+ #: includes/meta.php:1083
608
  msgid "Price format on slider"
609
  msgstr ""
610
 
611
+ #: includes/meta.php:1086
612
  msgid "Full Format"
613
  msgstr ""
614
 
615
+ #: includes/meta.php:1087
616
  msgid "Sale price"
617
  msgstr ""
618
 
619
+ #: includes/meta.php:1088
620
  msgid "Regular price"
621
  msgstr ""
622
 
623
+ #: includes/meta.php:1097
624
  msgid "Items price Color"
625
  msgstr ""
626
 
627
+ #: includes/meta.php:1103
628
  msgid "Items price font size"
629
  msgstr ""
630
 
631
+ #: includes/meta.php:1111
632
  msgid "Price text align"
633
  msgstr ""
634
 
635
+ #: includes/meta.php:1136
636
  msgid "Items rating text align"
637
  msgstr ""
638
 
639
+ #: includes/meta.php:1149
640
  msgid "Items ratings font size"
641
  msgstr ""
642
 
643
+ #: includes/meta.php:1156
644
  msgid "Items ratings color"
645
  msgstr ""
646
 
647
+ #: includes/meta.php:1173
648
  msgid "Excerpt word count"
649
  msgstr ""
650
 
651
+ #: includes/meta.php:1179
652
  msgid "Excerpt read more text"
653
  msgstr ""
654
 
655
+ #: includes/meta.php:1185
656
  msgid "Items excerpt font size"
657
  msgstr ""
658
 
659
+ #: includes/meta.php:1192
660
  msgid "Excerpt text align"
661
  msgstr ""
662
 
663
+ #: includes/meta.php:1204
664
  msgid "Items excerpt font color"
665
  msgstr ""
666
 
667
+ #: includes/meta.php:1224
668
  msgid "Items category font size"
669
  msgstr ""
670
 
671
+ #: includes/meta.php:1229
672
  msgid "Category text align"
673
  msgstr ""
674
 
675
+ #: includes/meta.php:1239
676
  msgid "Items category font color"
677
  msgstr ""
678
 
679
+ #: includes/meta.php:1250
680
+ msgid "Items tag font size"
681
+ msgstr ""
682
+
683
+ #: includes/meta.php:1255
684
+ msgid "Tag text align"
685
+ msgstr ""
686
+
687
+ #: includes/meta.php:1265
688
+ msgid "Items tag font color"
689
+ msgstr ""
690
+
691
+ #: includes/meta.php:1276
692
+ msgid "Items SKU font size"
693
+ msgstr ""
694
+
695
+ #: includes/meta.php:1281
696
+ msgid "SKU text align"
697
+ msgstr ""
698
+
699
+ #: includes/meta.php:1291
700
+ msgid "Items SKU font color"
701
+ msgstr ""
702
+
703
+ #: includes/meta.php:1339
704
  msgid "Custom CSS for this slider."
705
  msgstr ""
706
 
707
+ #: includes/meta.php:1340
708
  msgid ""
709
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
710
  "sometime you need use \"!important\" to overrid."
languages/woocommerce-products-slider.mo CHANGED
Binary file
languages/woocommerce-products-slider.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
- "POT-Creation-Date: 2017-03-09 11:18+0600\n"
5
- "PO-Revision-Date: 2017-03-09 11:18+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.12\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,51 +17,59 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:625
25
  msgid "Title"
26
  msgstr ""
27
 
28
- #: includes/class-functions.php:64
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
36
- #: includes/class-functions.php:66
 
 
 
 
37
  msgid "Price"
38
  msgstr ""
39
 
40
- #: includes/class-functions.php:67
41
  msgid "Rating"
42
  msgstr ""
43
 
44
- #: includes/class-functions.php:68
45
  msgid "Cart"
46
  msgstr ""
47
 
48
- #: includes/class-functions.php:69
49
  msgid "Sale"
50
  msgstr ""
51
 
52
- #: includes/class-functions.php:70
53
  msgid "Featured"
54
  msgstr ""
55
 
56
- #: includes/class-settings.php:21
57
- msgid "Settings"
 
 
 
 
58
  msgstr ""
59
 
60
- #: includes/class-shortcodes.php:137
61
  msgid "No Product to Slide"
62
  msgstr ""
63
 
64
- #: includes/functions.php:84 includes/meta.php:220 includes/meta.php:232
65
  msgid "Shortcode"
66
  msgstr ""
67
 
@@ -77,68 +85,40 @@ msgstr ""
77
  msgid " Settings"
78
  msgstr ""
79
 
80
- #: includes/menu/settings.php:67 includes/meta.php:221
81
- msgid "Options"
82
- msgstr ""
83
-
84
- #: includes/menu/settings.php:68
85
- msgid "Help"
86
- msgstr ""
87
-
88
- #: includes/menu/settings.php:77
89
- msgid "Track product View"
90
- msgstr ""
91
-
92
- #: includes/menu/settings.php:81 includes/meta.php:815
93
- msgid "No"
94
- msgstr ""
95
-
96
- #: includes/menu/settings.php:82 includes/meta.php:816
97
- msgid "Yes"
98
- msgstr ""
99
-
100
- #: includes/menu/settings.php:95
101
  msgid "Need Help ?"
102
  msgstr ""
103
 
104
- #: includes/menu/settings.php:97
105
  msgid ""
106
  "Feel free to contact with any issue for this plugin, Ask any question via "
107
  "forum"
108
  msgstr ""
109
 
110
- #: includes/menu/settings.php:97
111
  msgid "(free)"
112
  msgstr ""
113
 
114
- #: includes/menu/settings.php:126
115
  msgid "Submit Reviews."
116
  msgstr ""
117
 
118
- #: includes/menu/settings.php:128
119
  msgid ""
120
  "We are working hard to build some awesome plugins for you and spend thousand "
121
  "hour for plugins. we wish your three(3) minute by submitting five star "
122
  "reviews at wordpress.org. if you have any issue please submit at forum"
123
  msgstr ""
124
 
125
- #: includes/menu/settings.php:139
126
  msgid "Please Share"
127
  msgstr ""
128
 
129
- #: includes/menu/settings.php:140
130
  msgid "If you like this plugin please share with your social share network."
131
  msgstr ""
132
 
133
- #: includes/menu/settings.php:147
134
- msgid "Video Tutorial"
135
- msgstr ""
136
-
137
- #: includes/menu/settings.php:148
138
- msgid "Please watch this video tutorial."
139
- msgstr ""
140
-
141
- #: includes/menu/settings.php:165
142
  msgid "Save Changes"
143
  msgstr ""
144
 
@@ -174,502 +154,557 @@ msgstr ""
174
  msgid "Woocommerce Products Slider Options"
175
  msgstr ""
176
 
177
- #: includes/meta.php:178
178
  msgid "View product."
179
  msgstr ""
180
 
181
- #: includes/meta.php:222
 
 
 
 
182
  msgid "Style"
183
  msgstr ""
184
 
185
- #: includes/meta.php:223
186
  msgid "Query Product"
187
  msgstr ""
188
 
189
- #: includes/meta.php:224
190
  msgid "Elements"
191
  msgstr ""
192
 
193
- #: includes/meta.php:225
194
  msgid "Custom CSS"
195
  msgstr ""
196
 
197
- #: includes/meta.php:234
198
  msgid ""
199
  "Copy this shortcode and paste on page or post where you want to display "
200
  "slider."
201
  msgstr ""
202
 
203
- #: includes/meta.php:236
204
  msgid "Use PHP code to your themes file to display slider."
205
  msgstr ""
206
 
207
- #: includes/meta.php:251
208
  msgid "Slider column number"
209
  msgstr ""
210
 
211
- #: includes/meta.php:253
212
  msgid "In Destop: (min:1000px and max)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:256
216
  msgid "In Tablet & Small Desktop: (900px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:259
220
  msgid "In Mobile: (479px max width)"
221
  msgstr ""
222
 
223
- #: includes/meta.php:267
224
  msgid "Slider Auto Play"
225
  msgstr ""
226
 
227
- #: includes/meta.php:271 includes/meta.php:277 includes/meta.php:283
228
- #: includes/meta.php:289 includes/meta.php:297 includes/meta.php:361
229
- #: includes/meta.php:368 includes/meta.php:388 includes/meta.php:403
230
- #: includes/meta.php:416 includes/meta.php:424
231
  msgid "True"
232
  msgstr ""
233
 
234
- #: includes/meta.php:272 includes/meta.php:278 includes/meta.php:284
235
- #: includes/meta.php:290 includes/meta.php:296 includes/meta.php:362
236
- #: includes/meta.php:369 includes/meta.php:389 includes/meta.php:402
237
- #: includes/meta.php:417 includes/meta.php:425
238
  msgid "False"
239
  msgstr ""
240
 
241
- #: includes/meta.php:275
 
 
 
 
 
 
 
 
242
  msgid "Slider rewind"
243
  msgstr ""
244
 
245
- #: includes/meta.php:281
246
  msgid "Slider loop"
247
  msgstr ""
248
 
249
- #: includes/meta.php:287
250
  msgid "Slider center"
251
  msgstr ""
252
 
253
- #: includes/meta.php:293
254
  msgid "RTL Enabled"
255
  msgstr ""
256
 
257
- #: includes/meta.php:303
258
  msgid "Animate Out"
259
  msgstr ""
260
 
261
- #: includes/meta.php:306 includes/meta.php:337
262
  msgid "fadeOut"
263
  msgstr ""
264
 
265
- #: includes/meta.php:307 includes/meta.php:338
266
  msgid "bounce"
267
  msgstr ""
268
 
269
- #: includes/meta.php:308 includes/meta.php:339
270
  msgid "flash"
271
  msgstr ""
272
 
273
- #: includes/meta.php:309 includes/meta.php:340
274
  msgid "pulse"
275
  msgstr ""
276
 
277
- #: includes/meta.php:312 includes/meta.php:342
278
  msgid "Shake"
279
  msgstr ""
280
 
281
- #: includes/meta.php:313 includes/meta.php:343
282
  msgid "Swing"
283
  msgstr ""
284
 
285
- #: includes/meta.php:314 includes/meta.php:344
286
  msgid "Tada"
287
  msgstr ""
288
 
289
- #: includes/meta.php:315 includes/meta.php:345
290
  msgid "Wobble"
291
  msgstr ""
292
 
293
- #: includes/meta.php:316 includes/meta.php:346
294
  msgid "flip"
295
  msgstr ""
296
 
297
- #: includes/meta.php:317 includes/meta.php:347
298
  msgid "flipInX"
299
  msgstr ""
300
 
301
- #: includes/meta.php:318 includes/meta.php:348
302
  msgid "flipInY"
303
  msgstr ""
304
 
305
- #: includes/meta.php:319 includes/meta.php:349
306
  msgid "fadeIn"
307
  msgstr ""
308
 
309
- #: includes/meta.php:320 includes/meta.php:350
310
  msgid "fadeInDown"
311
  msgstr ""
312
 
313
- #: includes/meta.php:321 includes/meta.php:351
314
  msgid "fadeInUp"
315
  msgstr ""
316
 
317
- #: includes/meta.php:322 includes/meta.php:352
318
  msgid "bounceIn"
319
  msgstr ""
320
 
321
- #: includes/meta.php:323 includes/meta.php:353
322
  msgid "bounceInDown"
323
  msgstr ""
324
 
325
- #: includes/meta.php:324 includes/meta.php:354
326
  msgid "bounceInUp"
327
  msgstr ""
328
 
329
- #: includes/meta.php:334
330
  msgid "Animate In"
331
  msgstr ""
332
 
333
- #: includes/meta.php:358
334
  msgid "Slider Stop on Hover"
335
  msgstr ""
336
 
337
- #: includes/meta.php:365
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:373
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:375
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:376
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:377
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:381
358
  msgid "Slide Speed"
359
  msgstr ""
360
 
361
- #: includes/meta.php:385
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:394
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:397
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:400
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:409
378
  msgid "Pagination Slide Speed"
379
  msgstr ""
380
 
381
- #: includes/meta.php:412
382
  msgid "Slider Touch Drag Enabled"
383
  msgstr ""
384
 
385
- #: includes/meta.php:421
386
  msgid "Slider Mouse Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:448
390
  msgid "Themes for slider"
391
  msgstr ""
392
 
393
- #: includes/meta.php:471
394
  msgid "Slider ribbon"
395
  msgstr ""
396
 
397
- #: includes/meta.php:542
398
  msgid "Container options"
399
  msgstr ""
400
 
401
- #: includes/meta.php:543
402
  msgid "Padding: (ex: 10px)"
403
  msgstr ""
404
 
405
- #: includes/meta.php:546
406
  msgid "Background color:"
407
  msgstr ""
408
 
409
- #: includes/meta.php:549
410
  msgid "Background image:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:554
414
  msgid "Clear"
415
  msgstr ""
416
 
417
- #: includes/meta.php:579
418
  msgid "Items Options"
419
  msgstr ""
420
 
421
- #: includes/meta.php:580
422
  msgid "Items background color"
423
  msgstr ""
424
 
425
- #: includes/meta.php:583
426
  msgid "Items padding"
427
  msgstr ""
428
 
429
- #: includes/meta.php:595
430
  msgid "Total Number of Product"
431
  msgstr ""
432
 
433
- #: includes/meta.php:596
434
  msgid "ex: 10, to display all product please use -1"
435
  msgstr ""
436
 
437
- #: includes/meta.php:601
438
  msgid "Query order"
439
  msgstr ""
440
 
441
- #: includes/meta.php:604
442
  msgid "Descending"
443
  msgstr ""
444
 
445
- #: includes/meta.php:605
446
  msgid "Ascending "
447
  msgstr ""
448
 
449
- #: includes/meta.php:616
450
  msgid "Query orderBy"
451
  msgstr ""
452
 
453
- #: includes/meta.php:619
454
  msgid "None"
455
  msgstr ""
456
 
457
- #: includes/meta.php:620
458
  msgid "ID"
459
  msgstr ""
460
 
461
- #: includes/meta.php:621
462
  msgid "Date"
463
  msgstr ""
464
 
465
- #: includes/meta.php:622
466
  msgid "Rand"
467
  msgstr ""
468
 
469
- #: includes/meta.php:623
470
  msgid "Comment Count"
471
  msgstr ""
472
 
473
- #: includes/meta.php:624
474
  msgid "Author"
475
  msgstr ""
476
 
477
- #: includes/meta.php:626
478
  msgid "Name"
479
  msgstr ""
480
 
481
- #: includes/meta.php:627
482
  msgid "Type"
483
  msgstr ""
484
 
485
- #: includes/meta.php:636
 
 
 
 
486
  msgid "Hide out of stock items"
487
  msgstr ""
488
 
489
- #: includes/meta.php:640
490
  msgid "Featured Product display"
491
  msgstr ""
492
 
493
- #: includes/meta.php:644
494
  msgid "On Sale Product display"
495
  msgstr ""
496
 
497
- #: includes/meta.php:670
 
 
 
 
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
- #: includes/meta.php:672
502
- msgid "Reset"
503
  msgstr ""
504
 
505
- #: includes/meta.php:731
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
- #: includes/meta.php:794
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
- #: includes/meta.php:797
514
  msgid "Product"
515
  msgstr ""
516
 
517
- #: includes/meta.php:806
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
- #: includes/meta.php:812
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
- #: includes/meta.php:823
 
 
 
 
 
 
 
 
526
  msgid "Empty Thumbnail"
527
  msgstr ""
528
 
529
- #: includes/meta.php:824
530
  msgid "Custom thumbnail image url"
531
  msgstr ""
532
 
533
- #: includes/meta.php:900
534
  msgid "Items add to cart button Style"
535
  msgstr ""
536
 
537
- #: includes/meta.php:901
538
  msgid "You can hide items add to cart button on slider."
539
  msgstr ""
540
 
541
- #: includes/meta.php:903
542
  msgid "Default"
543
  msgstr ""
544
 
545
- #: includes/meta.php:904
546
  msgid "Custom"
547
  msgstr ""
548
 
549
- #: includes/meta.php:909
550
  msgid "Add to cart background color"
551
  msgstr ""
552
 
553
- #: includes/meta.php:915
554
  msgid "Add to cart text color"
555
  msgstr ""
556
 
557
- #: includes/meta.php:921
558
  msgid "Items cart text align"
559
  msgstr ""
560
 
561
- #: includes/meta.php:925 includes/meta.php:978 includes/meta.php:1037
562
- #: includes/meta.php:1062 includes/meta.php:1118 includes/meta.php:1159
 
563
  msgid "Left"
564
  msgstr ""
565
 
566
- #: includes/meta.php:926 includes/meta.php:979 includes/meta.php:1038
567
- #: includes/meta.php:1063 includes/meta.php:1119 includes/meta.php:1160
 
568
  msgid "Right"
569
  msgstr ""
570
 
571
- #: includes/meta.php:927 includes/meta.php:980 includes/meta.php:1039
572
- #: includes/meta.php:1064 includes/meta.php:1120 includes/meta.php:1161
 
573
  msgid "Center"
574
  msgstr ""
575
 
576
- #: includes/meta.php:943
577
  msgid "Sale marker icon url"
578
  msgstr ""
579
 
580
- #: includes/meta.php:962
581
  msgid "Items Title Color"
582
  msgstr ""
583
 
584
- #: includes/meta.php:967
585
  msgid "Items Title Font Size"
586
  msgstr ""
587
 
588
- #: includes/meta.php:974
589
  msgid "Items Title Text Align"
590
  msgstr ""
591
 
592
- #: includes/meta.php:993
593
  msgid "Featured marker icon url"
594
  msgstr ""
595
 
596
- #: includes/meta.php:1005
597
  msgid "Price format on slider"
598
  msgstr ""
599
 
600
- #: includes/meta.php:1008
601
  msgid "Full Format"
602
  msgstr ""
603
 
604
- #: includes/meta.php:1009
605
  msgid "Sale price"
606
  msgstr ""
607
 
608
- #: includes/meta.php:1010
609
  msgid "Regular price"
610
  msgstr ""
611
 
612
- #: includes/meta.php:1019
613
  msgid "Items price Color"
614
  msgstr ""
615
 
616
- #: includes/meta.php:1025
617
  msgid "Items price font size"
618
  msgstr ""
619
 
620
- #: includes/meta.php:1033
621
  msgid "Price text align"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1058
625
  msgid "Items rating text align"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1071
629
  msgid "Items ratings font size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1078
633
  msgid "Items ratings color"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1095
637
  msgid "Excerpt word count"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1101
641
  msgid "Excerpt read more text"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1107
645
  msgid "Items excerpt font size"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1114
649
  msgid "Excerpt text align"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1126
653
  msgid "Items excerpt font color"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1148
657
  msgid "Items category font size"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1155
661
  msgid "Category text align"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1170
665
  msgid "Items category font color"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  msgid "Custom CSS for this slider."
670
  msgstr ""
671
 
672
- #: includes/meta.php:1222
673
  msgid ""
674
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
675
  "sometime you need use \"!important\" to overrid."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Woocommerce Products Slider\n"
4
+ "POT-Creation-Date: 2018-01-12 21:13+0600\n"
5
+ "PO-Revision-Date: 2018-01-12 21:13+0600\n"
6
  "Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
7
  "Language-Team: PickPlugins <support@pickplugins.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
+ #: includes/class-functions.php:205
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
+ #: includes/class-functions.php:206 includes/meta.php:696
25
  msgid "Title"
26
  msgstr ""
27
 
28
+ #: includes/class-functions.php:207
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:208 includes/meta.php:876
33
  msgid "Category"
34
  msgstr ""
35
 
36
+ #: includes/class-functions.php:209
37
+ msgid "Tags"
38
+ msgstr ""
39
+
40
+ #: includes/class-functions.php:210
41
  msgid "Price"
42
  msgstr ""
43
 
44
+ #: includes/class-functions.php:211
45
  msgid "Rating"
46
  msgstr ""
47
 
48
+ #: includes/class-functions.php:212
49
  msgid "Cart"
50
  msgstr ""
51
 
52
+ #: includes/class-functions.php:213
53
  msgid "Sale"
54
  msgstr ""
55
 
56
+ #: includes/class-functions.php:214
57
  msgid "Featured"
58
  msgstr ""
59
 
60
+ #: includes/class-functions.php:215
61
+ msgid "SKU"
62
+ msgstr ""
63
+
64
+ #: includes/class-settings.php:21 includes/menu/settings.php:67
65
+ msgid "Help"
66
  msgstr ""
67
 
68
+ #: includes/class-shortcodes.php:170
69
  msgid "No Product to Slide"
70
  msgstr ""
71
 
72
+ #: includes/functions.php:84 includes/meta.php:264 includes/meta.php:276
73
  msgid "Shortcode"
74
  msgstr ""
75
 
85
  msgid " Settings"
86
  msgstr ""
87
 
88
+ #: includes/menu/settings.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Need Help ?"
90
  msgstr ""
91
 
92
+ #: includes/menu/settings.php:80
93
  msgid ""
94
  "Feel free to contact with any issue for this plugin, Ask any question via "
95
  "forum"
96
  msgstr ""
97
 
98
+ #: includes/menu/settings.php:80
99
  msgid "(free)"
100
  msgstr ""
101
 
102
+ #: includes/menu/settings.php:109
103
  msgid "Submit Reviews."
104
  msgstr ""
105
 
106
+ #: includes/menu/settings.php:111
107
  msgid ""
108
  "We are working hard to build some awesome plugins for you and spend thousand "
109
  "hour for plugins. we wish your three(3) minute by submitting five star "
110
  "reviews at wordpress.org. if you have any issue please submit at forum"
111
  msgstr ""
112
 
113
+ #: includes/menu/settings.php:121
114
  msgid "Please Share"
115
  msgstr ""
116
 
117
+ #: includes/menu/settings.php:122
118
  msgid "If you like this plugin please share with your social share network."
119
  msgstr ""
120
 
121
+ #: includes/menu/settings.php:141
 
 
 
 
 
 
 
 
122
  msgid "Save Changes"
123
  msgstr ""
124
 
154
  msgid "Woocommerce Products Slider Options"
155
  msgstr ""
156
 
157
+ #: includes/meta.php:201
158
  msgid "View product."
159
  msgstr ""
160
 
161
+ #: includes/meta.php:265
162
+ msgid "Options"
163
+ msgstr ""
164
+
165
+ #: includes/meta.php:266
166
  msgid "Style"
167
  msgstr ""
168
 
169
+ #: includes/meta.php:267
170
  msgid "Query Product"
171
  msgstr ""
172
 
173
+ #: includes/meta.php:268
174
  msgid "Elements"
175
  msgstr ""
176
 
177
+ #: includes/meta.php:269
178
  msgid "Custom CSS"
179
  msgstr ""
180
 
181
+ #: includes/meta.php:278
182
  msgid ""
183
  "Copy this shortcode and paste on page or post where you want to display "
184
  "slider."
185
  msgstr ""
186
 
187
+ #: includes/meta.php:280
188
  msgid "Use PHP code to your themes file to display slider."
189
  msgstr ""
190
 
191
+ #: includes/meta.php:295
192
  msgid "Slider column number"
193
  msgstr ""
194
 
195
+ #: includes/meta.php:297
196
  msgid "In Destop: (min:1000px and max)"
197
  msgstr ""
198
 
199
+ #: includes/meta.php:300
200
  msgid "In Tablet & Small Desktop: (900px max width)"
201
  msgstr ""
202
 
203
+ #: includes/meta.php:303
204
  msgid "In Mobile: (479px max width)"
205
  msgstr ""
206
 
207
+ #: includes/meta.php:311
208
  msgid "Slider Auto Play"
209
  msgstr ""
210
 
211
+ #: includes/meta.php:315 includes/meta.php:330 includes/meta.php:336
212
+ #: includes/meta.php:342 includes/meta.php:350 includes/meta.php:414
213
+ #: includes/meta.php:421 includes/meta.php:441 includes/meta.php:456
214
+ #: includes/meta.php:469 includes/meta.php:477
215
  msgid "True"
216
  msgstr ""
217
 
218
+ #: includes/meta.php:316 includes/meta.php:331 includes/meta.php:337
219
+ #: includes/meta.php:343 includes/meta.php:349 includes/meta.php:415
220
+ #: includes/meta.php:422 includes/meta.php:442 includes/meta.php:455
221
+ #: includes/meta.php:470 includes/meta.php:478
222
  msgid "False"
223
  msgstr ""
224
 
225
+ #: includes/meta.php:320
226
+ msgid "Slider Auto Play Speed"
227
+ msgstr ""
228
+
229
+ #: includes/meta.php:323
230
+ msgid "Slider Auto Play Timeout"
231
+ msgstr ""
232
+
233
+ #: includes/meta.php:328
234
  msgid "Slider rewind"
235
  msgstr ""
236
 
237
+ #: includes/meta.php:334
238
  msgid "Slider loop"
239
  msgstr ""
240
 
241
+ #: includes/meta.php:340
242
  msgid "Slider center"
243
  msgstr ""
244
 
245
+ #: includes/meta.php:346
246
  msgid "RTL Enabled"
247
  msgstr ""
248
 
249
+ #: includes/meta.php:356
250
  msgid "Animate Out"
251
  msgstr ""
252
 
253
+ #: includes/meta.php:359 includes/meta.php:390
254
  msgid "fadeOut"
255
  msgstr ""
256
 
257
+ #: includes/meta.php:360 includes/meta.php:391
258
  msgid "bounce"
259
  msgstr ""
260
 
261
+ #: includes/meta.php:361 includes/meta.php:392
262
  msgid "flash"
263
  msgstr ""
264
 
265
+ #: includes/meta.php:362 includes/meta.php:393
266
  msgid "pulse"
267
  msgstr ""
268
 
269
+ #: includes/meta.php:365 includes/meta.php:395
270
  msgid "Shake"
271
  msgstr ""
272
 
273
+ #: includes/meta.php:366 includes/meta.php:396
274
  msgid "Swing"
275
  msgstr ""
276
 
277
+ #: includes/meta.php:367 includes/meta.php:397
278
  msgid "Tada"
279
  msgstr ""
280
 
281
+ #: includes/meta.php:368 includes/meta.php:398
282
  msgid "Wobble"
283
  msgstr ""
284
 
285
+ #: includes/meta.php:369 includes/meta.php:399
286
  msgid "flip"
287
  msgstr ""
288
 
289
+ #: includes/meta.php:370 includes/meta.php:400
290
  msgid "flipInX"
291
  msgstr ""
292
 
293
+ #: includes/meta.php:371 includes/meta.php:401
294
  msgid "flipInY"
295
  msgstr ""
296
 
297
+ #: includes/meta.php:372 includes/meta.php:402
298
  msgid "fadeIn"
299
  msgstr ""
300
 
301
+ #: includes/meta.php:373 includes/meta.php:403
302
  msgid "fadeInDown"
303
  msgstr ""
304
 
305
+ #: includes/meta.php:374 includes/meta.php:404
306
  msgid "fadeInUp"
307
  msgstr ""
308
 
309
+ #: includes/meta.php:375 includes/meta.php:405
310
  msgid "bounceIn"
311
  msgstr ""
312
 
313
+ #: includes/meta.php:376 includes/meta.php:406
314
  msgid "bounceInDown"
315
  msgstr ""
316
 
317
+ #: includes/meta.php:377 includes/meta.php:407
318
  msgid "bounceInUp"
319
  msgstr ""
320
 
321
+ #: includes/meta.php:387
322
  msgid "Animate In"
323
  msgstr ""
324
 
325
+ #: includes/meta.php:411
326
  msgid "Slider Stop on Hover"
327
  msgstr ""
328
 
329
+ #: includes/meta.php:418
330
  msgid "Slider Navigation at Top"
331
  msgstr ""
332
 
333
+ #: includes/meta.php:426
334
  msgid "Slider Navigation Position"
335
  msgstr ""
336
 
337
+ #: includes/meta.php:428
338
  msgid "Top Right"
339
  msgstr ""
340
 
341
+ #: includes/meta.php:429
342
  msgid "Middle"
343
  msgstr ""
344
 
345
+ #: includes/meta.php:430
346
  msgid "Middle fixed"
347
  msgstr ""
348
 
349
+ #: includes/meta.php:434
350
  msgid "Slide Speed"
351
  msgstr ""
352
 
353
+ #: includes/meta.php:438
354
  msgid "Slider Pagination at Bottom"
355
  msgstr ""
356
 
357
+ #: includes/meta.php:447
358
  msgid "Pagination Background Color"
359
  msgstr ""
360
 
361
+ #: includes/meta.php:450
362
  msgid "Pagination Text Color"
363
  msgstr ""
364
 
365
+ #: includes/meta.php:453
366
  msgid "Pagination Number Counting"
367
  msgstr ""
368
 
369
+ #: includes/meta.php:462
370
  msgid "Pagination Slide Speed"
371
  msgstr ""
372
 
373
+ #: includes/meta.php:465
374
  msgid "Slider Touch Drag Enabled"
375
  msgstr ""
376
 
377
+ #: includes/meta.php:474
378
  msgid "Slider Mouse Drag Enabled"
379
  msgstr ""
380
 
381
+ #: includes/meta.php:501
382
  msgid "Themes for slider"
383
  msgstr ""
384
 
385
+ #: includes/meta.php:524
386
  msgid "Slider ribbon"
387
  msgstr ""
388
 
389
+ #: includes/meta.php:613
390
  msgid "Container options"
391
  msgstr ""
392
 
393
+ #: includes/meta.php:614
394
  msgid "Padding: (ex: 10px)"
395
  msgstr ""
396
 
397
+ #: includes/meta.php:617
398
  msgid "Background color:"
399
  msgstr ""
400
 
401
+ #: includes/meta.php:620
402
  msgid "Background image:"
403
  msgstr ""
404
 
405
+ #: includes/meta.php:625
406
  msgid "Clear"
407
  msgstr ""
408
 
409
+ #: includes/meta.php:650
410
  msgid "Items Options"
411
  msgstr ""
412
 
413
+ #: includes/meta.php:651
414
  msgid "Items background color"
415
  msgstr ""
416
 
417
+ #: includes/meta.php:654
418
  msgid "Items padding"
419
  msgstr ""
420
 
421
+ #: includes/meta.php:666
422
  msgid "Total Number of Product"
423
  msgstr ""
424
 
425
+ #: includes/meta.php:667
426
  msgid "ex: 10, to display all product please use -1"
427
  msgstr ""
428
 
429
+ #: includes/meta.php:672
430
  msgid "Query order"
431
  msgstr ""
432
 
433
+ #: includes/meta.php:675
434
  msgid "Descending"
435
  msgstr ""
436
 
437
+ #: includes/meta.php:676
438
  msgid "Ascending "
439
  msgstr ""
440
 
441
+ #: includes/meta.php:687
442
  msgid "Query orderBy"
443
  msgstr ""
444
 
445
+ #: includes/meta.php:690
446
  msgid "None"
447
  msgstr ""
448
 
449
+ #: includes/meta.php:691
450
  msgid "ID"
451
  msgstr ""
452
 
453
+ #: includes/meta.php:692
454
  msgid "Date"
455
  msgstr ""
456
 
457
+ #: includes/meta.php:693
458
  msgid "Rand"
459
  msgstr ""
460
 
461
+ #: includes/meta.php:694
462
  msgid "Comment Count"
463
  msgstr ""
464
 
465
+ #: includes/meta.php:695
466
  msgid "Author"
467
  msgstr ""
468
 
469
+ #: includes/meta.php:697
470
  msgid "Name"
471
  msgstr ""
472
 
473
+ #: includes/meta.php:698
474
  msgid "Type"
475
  msgstr ""
476
 
477
+ #: includes/meta.php:699
478
+ msgid "Menu order"
479
+ msgstr ""
480
+
481
+ #: includes/meta.php:707
482
  msgid "Hide out of stock items"
483
  msgstr ""
484
 
485
+ #: includes/meta.php:712
486
  msgid "Featured Product display"
487
  msgstr ""
488
 
489
+ #: includes/meta.php:717
490
  msgid "On Sale Product display"
491
  msgstr ""
492
 
493
+ #: includes/meta.php:721
494
+ msgid "Catalog visibility"
495
+ msgstr ""
496
+
497
+ #: includes/meta.php:748
498
  msgid "Slider items."
499
  msgstr ""
500
 
501
+ #: includes/meta.php:750
502
+ msgid "Reset order"
503
  msgstr ""
504
 
505
+ #: includes/meta.php:809
506
  msgid "Slider Thumbnail Size"
507
  msgstr ""
508
 
509
+ #: includes/meta.php:872
510
  msgid "Items thumbnail link's to"
511
  msgstr ""
512
 
513
+ #: includes/meta.php:875
514
  msgid "Product"
515
  msgstr ""
516
 
517
+ #: includes/meta.php:884
518
  msgid "Slider thumb max hieght(px)"
519
  msgstr ""
520
 
521
+ #: includes/meta.php:890
522
  msgid "Display Thumbnail Zoom button"
523
  msgstr ""
524
 
525
+ #: includes/meta.php:893
526
+ msgid "No"
527
+ msgstr ""
528
+
529
+ #: includes/meta.php:894
530
+ msgid "Yes"
531
+ msgstr ""
532
+
533
+ #: includes/meta.php:901
534
  msgid "Empty Thumbnail"
535
  msgstr ""
536
 
537
+ #: includes/meta.php:902
538
  msgid "Custom thumbnail image url"
539
  msgstr ""
540
 
541
+ #: includes/meta.php:978
542
  msgid "Items add to cart button Style"
543
  msgstr ""
544
 
545
+ #: includes/meta.php:979
546
  msgid "You can hide items add to cart button on slider."
547
  msgstr ""
548
 
549
+ #: includes/meta.php:981
550
  msgid "Default"
551
  msgstr ""
552
 
553
+ #: includes/meta.php:982
554
  msgid "Custom"
555
  msgstr ""
556
 
557
+ #: includes/meta.php:987
558
  msgid "Add to cart background color"
559
  msgstr ""
560
 
561
+ #: includes/meta.php:993
562
  msgid "Add to cart text color"
563
  msgstr ""
564
 
565
+ #: includes/meta.php:999
566
  msgid "Items cart text align"
567
  msgstr ""
568
 
569
+ #: includes/meta.php:1003 includes/meta.php:1056 includes/meta.php:1115
570
+ #: includes/meta.php:1140 includes/meta.php:1196 includes/meta.php:1232
571
+ #: includes/meta.php:1258 includes/meta.php:1284
572
  msgid "Left"
573
  msgstr ""
574
 
575
+ #: includes/meta.php:1004 includes/meta.php:1057 includes/meta.php:1116
576
+ #: includes/meta.php:1141 includes/meta.php:1197 includes/meta.php:1233
577
+ #: includes/meta.php:1259 includes/meta.php:1285
578
  msgid "Right"
579
  msgstr ""
580
 
581
+ #: includes/meta.php:1005 includes/meta.php:1058 includes/meta.php:1117
582
+ #: includes/meta.php:1142 includes/meta.php:1198 includes/meta.php:1234
583
+ #: includes/meta.php:1260 includes/meta.php:1286
584
  msgid "Center"
585
  msgstr ""
586
 
587
+ #: includes/meta.php:1020
588
  msgid "Sale marker icon url"
589
  msgstr ""
590
 
591
+ #: includes/meta.php:1040
592
  msgid "Items Title Color"
593
  msgstr ""
594
 
595
+ #: includes/meta.php:1045
596
  msgid "Items Title Font Size"
597
  msgstr ""
598
 
599
+ #: includes/meta.php:1052
600
  msgid "Items Title Text Align"
601
  msgstr ""
602
 
603
+ #: includes/meta.php:1071
604
  msgid "Featured marker icon url"
605
  msgstr ""
606
 
607
+ #: includes/meta.php:1083
608
  msgid "Price format on slider"
609
  msgstr ""
610
 
611
+ #: includes/meta.php:1086
612
  msgid "Full Format"
613
  msgstr ""
614
 
615
+ #: includes/meta.php:1087
616
  msgid "Sale price"
617
  msgstr ""
618
 
619
+ #: includes/meta.php:1088
620
  msgid "Regular price"
621
  msgstr ""
622
 
623
+ #: includes/meta.php:1097
624
  msgid "Items price Color"
625
  msgstr ""
626
 
627
+ #: includes/meta.php:1103
628
  msgid "Items price font size"
629
  msgstr ""
630
 
631
+ #: includes/meta.php:1111
632
  msgid "Price text align"
633
  msgstr ""
634
 
635
+ #: includes/meta.php:1136
636
  msgid "Items rating text align"
637
  msgstr ""
638
 
639
+ #: includes/meta.php:1149
640
  msgid "Items ratings font size"
641
  msgstr ""
642
 
643
+ #: includes/meta.php:1156
644
  msgid "Items ratings color"
645
  msgstr ""
646
 
647
+ #: includes/meta.php:1173
648
  msgid "Excerpt word count"
649
  msgstr ""
650
 
651
+ #: includes/meta.php:1179
652
  msgid "Excerpt read more text"
653
  msgstr ""
654
 
655
+ #: includes/meta.php:1185
656
  msgid "Items excerpt font size"
657
  msgstr ""
658
 
659
+ #: includes/meta.php:1192
660
  msgid "Excerpt text align"
661
  msgstr ""
662
 
663
+ #: includes/meta.php:1204
664
  msgid "Items excerpt font color"
665
  msgstr ""
666
 
667
+ #: includes/meta.php:1224
668
  msgid "Items category font size"
669
  msgstr ""
670
 
671
+ #: includes/meta.php:1229
672
  msgid "Category text align"
673
  msgstr ""
674
 
675
+ #: includes/meta.php:1239
676
  msgid "Items category font color"
677
  msgstr ""
678
 
679
+ #: includes/meta.php:1250
680
+ msgid "Items tag font size"
681
+ msgstr ""
682
+
683
+ #: includes/meta.php:1255
684
+ msgid "Tag text align"
685
+ msgstr ""
686
+
687
+ #: includes/meta.php:1265
688
+ msgid "Items tag font color"
689
+ msgstr ""
690
+
691
+ #: includes/meta.php:1276
692
+ msgid "Items SKU font size"
693
+ msgstr ""
694
+
695
+ #: includes/meta.php:1281
696
+ msgid "SKU text align"
697
+ msgstr ""
698
+
699
+ #: includes/meta.php:1291
700
+ msgid "Items SKU font color"
701
+ msgstr ""
702
+
703
+ #: includes/meta.php:1339
704
  msgid "Custom CSS for this slider."
705
  msgstr ""
706
 
707
+ #: includes/meta.php:1340
708
  msgid ""
709
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
710
  "sometime you need use \"!important\" to overrid."
readme.txt CHANGED
@@ -4,7 +4,7 @@
4
  Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
5
  Requires at least: 3.8
6
  Tested up to: 4.9
7
- Stable tag: 1.12.18
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -94,6 +94,10 @@ then paste this shortcode anywhere in your page to display slider<br />
94
 
95
 
96
 
 
 
 
 
97
  = 1.12.18 =
98
  * 21/11/2017 fix - tag error fixed.
99
 
4
  Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
5
  Requires at least: 3.8
6
  Tested up to: 4.9
7
+ Stable tag: 1.12.19
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
94
 
95
 
96
 
97
+ = 1.12.19 =
98
+ * 12/01/2017 add - WooCommerce 3.0+ compatibility.
99
+ * 12/01/2017 update - Ribbon option update.
100
+
101
  = 1.12.18 =
102
  * 21/11/2017 fix - tag error fixed.
103
 
templates/query.php CHANGED
@@ -21,15 +21,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
21
  );
22
 
23
  }
24
- elseif($wcps_hide_out_of_stock=='no'){
25
 
26
- $tax_query[] = array(
27
- 'taxonomy' => 'product_visibility',
28
- 'field' => 'name',
29
- 'terms' => 'outofstock',
30
- 'operator' => 'IN',
31
- );
32
- }
33
 
34
 
35
 
@@ -100,9 +92,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
100
 
101
  }
102
  elseif($wcps_product_visibility=='catalog'){
103
-
104
-
105
-
106
  $tax_query[] = array(
107
  'taxonomy' => 'product_visibility',
108
  'field' => 'name',
21
  );
22
 
23
  }
 
24
 
 
 
 
 
 
 
 
25
 
26
 
27
 
92
 
93
  }
94
  elseif($wcps_product_visibility=='catalog'){
95
+
 
 
96
  $tax_query[] = array(
97
  'taxonomy' => 'product_visibility',
98
  'field' => 'name',
templates/variables.php CHANGED
@@ -135,10 +135,16 @@ if ( ! defined('ABSPATH')) exit; // if direct access
135
  if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
136
 
137
 
138
- $wcps_product_featured = get_post_meta( $post_id, 'wcps_product_featured', true );
 
 
139
  $wcps_product_on_sale = get_post_meta( $post_id, 'wcps_product_on_sale', true );
140
- $wcps_product_visibility = get_post_meta( $post_id, 'wcps_product_visibility', true );
141
-
 
 
 
 
142
  $wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
143
  $wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
144
 
@@ -234,9 +240,13 @@ if ( ! defined('ABSPATH')) exit; // if direct access
234
 
235
  $wcps_query_order = get_post_meta( $post_id, 'wcps_query_order', true );
236
  $wcps_query_orderby = get_post_meta( $post_id, 'wcps_query_orderby', true );
237
- $wcps_hide_out_of_stock = get_post_meta( $post_id, 'wcps_hide_out_of_stock', true );
238
-
 
 
239
  $wcps_ribbon_name = get_post_meta( $post_id, 'wcps_ribbon_name', true );
 
 
240
  $wcps_ribbon_custom = get_post_meta( $post_id, 'wcps_ribbon_custom', true );
241
 
242
  $wcps_items_custom_css = get_post_meta( $post_id, 'wcps_items_custom_css', true );
135
  if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
136
 
137
 
138
+ $wcps_product_featured = get_post_meta( $post_id, 'wcps_product_featured', true );
139
+ if(empty($wcps_product_featured)){ $wcps_product_featured = 'no_check'; }
140
+
141
  $wcps_product_on_sale = get_post_meta( $post_id, 'wcps_product_on_sale', true );
142
+ if(empty($wcps_product_on_sale)){ $wcps_product_on_sale = 'no'; }
143
+
144
+ $wcps_product_visibility = get_post_meta( $post_id, 'wcps_product_visibility', true );
145
+ if(empty($wcps_product_visibility)){ $wcps_product_visibility = 'visible'; }
146
+
147
+
148
  $wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
149
  $wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
150
 
240
 
241
  $wcps_query_order = get_post_meta( $post_id, 'wcps_query_order', true );
242
  $wcps_query_orderby = get_post_meta( $post_id, 'wcps_query_orderby', true );
243
+ $wcps_hide_out_of_stock = get_post_meta( $post_id, 'wcps_hide_out_of_stock', true );
244
+ if(empty($wcps_hide_out_of_stock)){ $wcps_hide_out_of_stock = 'no_check'; }
245
+
246
+
247
  $wcps_ribbon_name = get_post_meta( $post_id, 'wcps_ribbon_name', true );
248
+ if(empty($wcps_ribbon_name)){$wcps_ribbon_name = 'none'; }
249
+
250
  $wcps_ribbon_custom = get_post_meta( $post_id, 'wcps_ribbon_custom', true );
251
 
252
  $wcps_items_custom_css = get_post_meta( $post_id, 'wcps_items_custom_css', true );
woocommerce-products-slider.php CHANGED
@@ -3,10 +3,12 @@
3
  Plugin Name: Woocommerce Products Slider
4
  Plugin URI: http://pickplugins.com/items/woocommerce-product-slider-for-wordpress/
5
  Description: Fully responsive and mobile ready Carousel Slider for your woo-commerce product. unlimited slider anywhere via short-codes and easy admin setting.
6
- Version: 1.12.18
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: woocommerce-products-slider
 
 
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
@@ -27,7 +29,7 @@ class WoocommerceProductsSlider{
27
  define('wcps_conatct_url', 'http://pickplugins.com/contact/' );
28
  define('wcps_qa_url', 'https://www.pickplugins.com/support/' );
29
  define('wcps_plugin_name', 'Woocommerce Products Slider' );
30
- define('wcps_plugin_version', '1.12.18');
31
  define('wcps_customer_type', 'free' ); // pro & free
32
  define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
33
  define('wcps_tutorial_video_url', '' );
3
  Plugin Name: Woocommerce Products Slider
4
  Plugin URI: http://pickplugins.com/items/woocommerce-product-slider-for-wordpress/
5
  Description: Fully responsive and mobile ready Carousel Slider for your woo-commerce product. unlimited slider anywhere via short-codes and easy admin setting.
6
+ Version: 1.12.19
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: woocommerce-products-slider
10
+ WC requires at least: 3.0.0
11
+ WC tested up to: 3.2
12
  License: GPLv2 or later
13
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
14
  */
29
  define('wcps_conatct_url', 'http://pickplugins.com/contact/' );
30
  define('wcps_qa_url', 'https://www.pickplugins.com/support/' );
31
  define('wcps_plugin_name', 'Woocommerce Products Slider' );
32
+ define('wcps_plugin_version', '1.12.19');
33
  define('wcps_customer_type', 'free' ); // pro & free
34
  define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
35
  define('wcps_tutorial_video_url', '' );