Woocommerce Products Slider - Version 1.12.6

Version Description

  • 09/03/2017 update - Admin settings update, added new tab Elements.
    • 09/03/2017 add - on sale product display.
Download this release

Release Info

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

Code changes from version 1.12.5 to 1.12.6

assets/admin/ParaAdmin/js/ParaAdmin.js CHANGED
@@ -3,19 +3,7 @@ jQuery(document).ready(function($)
3
  {
4
 
5
 
6
- $(document).on('click', '.expandable .header', function()
7
- {
8
- if($(this).parent().hasClass('active'))
9
- {
10
- $(this).parent().removeClass('active');
11
- }
12
- else
13
- {
14
- $(this).parent().addClass('active');
15
- }
16
-
17
-
18
- })
19
 
20
 
21
 
3
  {
4
 
5
 
6
+
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
 
9
 
assets/admin/css/style.css CHANGED
@@ -116,13 +116,42 @@
116
 
117
  #wcps_metabox .expandable .header {
118
  background: #a7e1ff none repeat scroll 0 0;
119
- padding-left: 20px;
 
 
 
 
 
 
 
120
  }
121
 
122
- #wcps_metabox .expandable .header:hover {
123
- background: #a7e1ff url("move.png") no-repeat scroll 7px 5px;
 
 
 
124
 
 
 
 
 
125
  }
126
 
 
 
 
127
 
 
 
 
128
 
 
 
 
 
 
 
 
 
 
116
 
117
  #wcps_metabox .expandable .header {
118
  background: #a7e1ff none repeat scroll 0 0;
119
+
120
+ }
121
+
122
+ #wcps_metabox .expandable .item {
123
+ background: #a7e1ff none repeat scroll 0 0;
124
+ /* border-bottom: 1px solid rgb(153, 153, 153); */
125
+ margin: 2px 0;
126
+ padding: 5px;
127
  }
128
 
129
+ #wcps_metabox .expandable .item .move {
130
+ display: inline-block;
131
+ padding: 5px;
132
+ cursor: move;
133
+ }
134
 
135
+ #wcps_metabox .expandable .item .expand {
136
+ display: inline-block;
137
+ padding: 5px;
138
+ cursor: pointer;
139
  }
140
 
141
+ #wcps_metabox .expandable .options {
142
+ background: #bde6fc;
143
+ }
144
 
145
+ #wcps_metabox .item .expand .fa-expand {
146
+ display: inline-block;
147
+ }
148
 
149
+ #wcps_metabox .item .expand .fa-compress {
150
+ display: none;
151
+ }
152
+ #wcps_metabox .item.active .expand .fa-compress {
153
+ display: inline-block;
154
+ }
155
+ #wcps_metabox .item.active .expand .fa-expand {
156
+ display: none;
157
+ }
assets/admin/js/scripts.js CHANGED
@@ -4,6 +4,23 @@ jQuery(document).ready(function($)
4
 
5
 
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  $(document).on('click','.wcps_grid_items_reset',function(){
8
 
9
  if(confirm('Do you really want to reset ?')){
4
 
5
 
6
 
7
+ $(document).on('click', '#wcps_metabox .expandable .expand', function()
8
+ {
9
+ if($(this).parent().parent().hasClass('active'))
10
+ {
11
+ $(this).parent().parent().removeClass('active');
12
+ }
13
+ else
14
+ {
15
+ $(this).parent().parent().addClass('active');
16
+ }
17
+
18
+
19
+ })
20
+
21
+
22
+
23
+
24
  $(document).on('click','.wcps_grid_items_reset',function(){
25
 
26
  if(confirm('Do you really want to reset ?')){
includes/class-functions.php CHANGED
@@ -59,15 +59,15 @@ class class_wcps_functions {
59
  public function wcps_grid_items($grid_items = array()){
60
 
61
  $grid_items = array(
62
- 'thumb'=>__('Thumbnail','wcps'),
63
- 'title'=>__('Title','wcps'),
64
- 'excerpt'=>__('Excerpt','wcps'),
65
- 'category'=>__('Category','wcps'),
66
- 'price'=>__('Price','wcps'),
67
- 'rating'=>__('Rating','wcps'),
68
- 'cart'=>__('Cart','wcps'),
69
- 'sale'=>__('Sale','wcps'),
70
- 'featured'=>'Featured',
71
  );
72
  return $grid_items;
73
  }
59
  public function wcps_grid_items($grid_items = array()){
60
 
61
  $grid_items = array(
62
+ 'thumb'=>__('Thumbnail',wcps_textdomain),
63
+ 'title'=>__('Title',wcps_textdomain),
64
+ 'excerpt'=>__('Excerpt',wcps_textdomain),
65
+ 'category'=>__('Category',wcps_textdomain),
66
+ 'price'=>__('Price',wcps_textdomain),
67
+ 'rating'=>__('Rating',wcps_textdomain),
68
+ 'cart'=>__('Cart',wcps_textdomain),
69
+ 'sale'=>__('Sale',wcps_textdomain),
70
+ 'featured'=>__('Featured', wcps_textdomain),
71
  );
72
  return $grid_items;
73
  }
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','wcps'), __('Settings','wcps'), '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', __('Settings',wcps_textdomain), __('Settings',wcps_textdomain), 'manage_options', 'wcps_menu_settings', array( $this, 'settings_page' ));
22
 
23
 
24
  }
includes/class-shortcodes.php CHANGED
@@ -51,13 +51,7 @@ class class_wcps_shortcodes{
51
  while ( $wp_query->have_posts() ) : $wp_query->the_post();
52
 
53
  global $product;
54
-
55
- $is_in_stock = $product->is_in_stock();
56
-
57
- if ( $wcps_hide_out_of_stock=='yes' && empty($is_in_stock) ) { continue; }
58
-
59
-
60
-
61
  $wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
62
 
63
  $wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
@@ -73,14 +67,14 @@ class class_wcps_shortcodes{
73
 
74
  $sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
75
 
76
- if($wcps_total_items_price_format=='full'){
77
  $price = $product->get_price_html();
78
  }
79
- elseif($wcps_total_items_price_format=='sale'){
80
 
81
  $price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
82
  }
83
- elseif($wcps_total_items_price_format=='regular'){
84
  $price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
85
  }
86
  else{
@@ -140,7 +134,7 @@ class class_wcps_shortcodes{
140
  wp_reset_query();
141
 
142
  else :
143
- $html.= __('No Product to Slide','wcps');
144
 
145
  endif;
146
 
51
  while ( $wp_query->have_posts() ) : $wp_query->the_post();
52
 
53
  global $product;
54
+
 
 
 
 
 
 
55
  $wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
56
 
57
  $wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
67
 
68
  $sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
69
 
70
+ if($wcps_items_price_format=='full'){
71
  $price = $product->get_price_html();
72
  }
73
+ elseif($wcps_items_price_format=='sale'){
74
 
75
  $price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
76
  }
77
+ elseif($wcps_items_price_format=='regular'){
78
  $price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
79
  }
80
  else{
134
  wp_reset_query();
135
 
136
  else :
137
+ $html.= __('No Product to Slide',wcps_textdomain);
138
 
139
  endif;
140
 
includes/functions.php CHANGED
@@ -81,7 +81,7 @@ function wcps_track_product_view() {
81
 
82
  function wcps_add_shortcode_column( $columns ) {
83
  return array_merge( $columns,
84
- array( 'shortcode' => __( 'Shortcode', 'wcps' ) ) );
85
  }
86
  add_filter( 'manage_wcps_posts_columns' , 'wcps_add_shortcode_column' );
87
 
@@ -173,7 +173,7 @@ function wcps_get_product_categories($postid)
173
 
174
  if(empty($categories))
175
  {
176
- echo __('No categories found!','wcps');
177
  $categories = array();
178
  }
179
 
81
 
82
  function wcps_add_shortcode_column( $columns ) {
83
  return array_merge( $columns,
84
+ array( 'shortcode' => __( 'Shortcode', wcps_textdomain ) ) );
85
  }
86
  add_filter( 'manage_wcps_posts_columns' , 'wcps_add_shortcode_column' );
87
 
173
 
174
  if(empty($categories))
175
  {
176
+ echo __('No categories found!',wcps_textdomain);
177
  $categories = array();
178
  }
179
 
includes/menu/settings.php CHANGED
@@ -33,7 +33,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
33
 
34
 
35
  ?>
36
- <div class="updated"><p><strong><?php _e('Changes Saved.','wcps' ); ?></strong></p></div>
37
 
38
  <?php
39
  }
@@ -53,7 +53,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
53
 
54
  <div class="wrap">
55
 
56
- <div id="icon-tools" class="icon32"><br></div><?php echo "<h2>".wcps_plugin_name.' '.__(' Settings','wcps')."</h2>";?>
57
  <form method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
58
  <input type="hidden" name="wcps_hidden" value="Y">
59
  <?php settings_fields( 'wcps_plugin_options' );
@@ -64,8 +64,8 @@ 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','wcps'); ?></li>
68
- <li nav="2" class="nav2"><i class="fa fa-hand-o-right"></i> <?php _e('Help','wcps'); ?></li>
69
  </ul> <!-- tab-nav end -->
70
 
71
  <ul class="box">
@@ -74,12 +74,12 @@ if ( ! defined('ABSPATH')) exit; // if direct access
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','wcps'); ?></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','wcps'); ?></option>
82
- <option value="yes" <?php if($wcps_track_product_view=="yes")echo "selected"; ?>><?php _e('Yes','wcps'); ?></option>
83
 
84
 
85
  </select>
@@ -92,16 +92,16 @@ if ( ! defined('ABSPATH')) exit; // if direct access
92
  <li style="display: none;" class="box2 tab-box">
93
 
94
  <div class="option-box">
95
- <p class="option-title"><?php _e('Need Help ?','wcps'); ?></p>
96
  <p class="option-info">
97
- <?php _e('Feel free to contact with any issue for this plugin, Ask any question via forum','wcps'); ?> <a href="<?php echo wcps_qa_url; ?>"><?php echo wcps_qa_url; ?></a> <strong style="color:#139b50;"><?php _e('(free)','wcps'); ?></strong><br />
98
 
99
  <?php
100
 
101
  if(wcps_customer_type=="free")
102
  {
103
 
104
- _e(sprintf('You are using <strong>%s version %s </strong> of <strong>%s</strong> To get more feature you could try our premium version.',wcps_customer_type, wcps_plugin_version, wcps_plugin_name),'wcps');
105
 
106
  // echo 'You are using <strong> '.wcps_customer_type.' version '.wcps_plugin_version.'</strong> of <strong>'.wcps_plugin_name.'</strong>, To get more feature you could try our premium version. ';
107
 
@@ -110,7 +110,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
110
  }
111
  else
112
  {
113
- _e(sprintf('Thanks for using <strong> premium version %s </strong> of <strong>%s</strong>.', wcps_plugin_version, wcps_plugin_name),'wcps');
114
  //echo 'Thanks for using <strong> premium version '.wcps_plugin_version.'</strong> of <strong>'.wcps_plugin_name.'</strong> ';
115
 
116
 
@@ -123,9 +123,9 @@ if ( ! defined('ABSPATH')) exit; // if direct access
123
 
124
  </div>
125
  <div class="option-box">
126
- <p class="option-title"><?php _e('Submit Reviews.','wcps'); ?></p>
127
  <p class="option-info">
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','wcps'); ?>
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; ?>">
@@ -136,16 +136,16 @@ if ( ! defined('ABSPATH')) exit; // if direct access
136
 
137
  </div>
138
  <div class="option-box">
139
- <p class="option-title"><?php _e('Please Share','wcps'); ?></p>
140
- <p class="option-info"><?php _e('If you like this plugin please share with your social share network.','wcps'); ?></p>
141
  <?php
142
 
143
  echo wcps_share_plugin();
144
  ?>
145
  </div>
146
  <div class="option-box">
147
- <p class="option-title"><?php _e('Video Tutorial','wcps'); ?></p>
148
- <p class="option-info"><?php _e('Please watch this video tutorial.','wcps'); ?></p>
149
  <iframe width="640" height="480" src="<?php echo wcps_tutorial_video_url; ?>" frameborder="0" allowfullscreen></iframe>
150
  </div>
151
 
33
 
34
 
35
  ?>
36
+ <div class="updated"><p><strong><?php _e('Changes Saved.',wcps_textdomain ); ?></strong></p></div>
37
 
38
  <?php
39
  }
53
 
54
  <div class="wrap">
55
 
56
+ <div id="icon-tools" class="icon32"><br></div><?php echo "<h2>".wcps_plugin_name.' '.__(' Settings',wcps_textdomain)."</h2>";?>
57
  <form method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
58
  <input type="hidden" name="wcps_hidden" value="Y">
59
  <?php settings_fields( 'wcps_plugin_options' );
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',wcps_textdomain); ?></li>
68
+ <li nav="2" class="nav2"><i class="fa fa-hand-o-right"></i> <?php _e('Help',wcps_textdomain); ?></li>
69
  </ul> <!-- tab-nav end -->
70
 
71
  <ul class="box">
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',wcps_textdomain); ?></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',wcps_textdomain); ?></option>
82
+ <option value="yes" <?php if($wcps_track_product_view=="yes")echo "selected"; ?>><?php _e('Yes',wcps_textdomain); ?></option>
83
 
84
 
85
  </select>
92
  <li style="display: none;" class="box2 tab-box">
93
 
94
  <div class="option-box">
95
+ <p class="option-title"><?php _e('Need Help ?',wcps_textdomain); ?></p>
96
  <p class="option-info">
97
+ <?php _e('Feel free to contact with any issue for this plugin, Ask any question via forum',wcps_textdomain); ?> <a href="<?php echo wcps_qa_url; ?>"><?php echo wcps_qa_url; ?></a> <strong style="color:#139b50;"><?php _e('(free)',wcps_textdomain); ?></strong><br />
98
 
99
  <?php
100
 
101
  if(wcps_customer_type=="free")
102
  {
103
 
104
+ _e(sprintf('You are using <strong>%s version %s </strong> of <strong>%s</strong> To get more feature you could try our premium version.',wcps_customer_type, wcps_plugin_version, wcps_plugin_name),wcps_textdomain);
105
 
106
  // echo 'You are using <strong> '.wcps_customer_type.' version '.wcps_plugin_version.'</strong> of <strong>'.wcps_plugin_name.'</strong>, To get more feature you could try our premium version. ';
107
 
110
  }
111
  else
112
  {
113
+ _e(sprintf('Thanks for using <strong> premium version %s </strong> of <strong>%s</strong>.', wcps_plugin_version, wcps_plugin_name),wcps_textdomain);
114
  //echo 'Thanks for using <strong> premium version '.wcps_plugin_version.'</strong> of <strong>'.wcps_plugin_name.'</strong> ';
115
 
116
 
123
 
124
  </div>
125
  <div class="option-box">
126
+ <p class="option-title"><?php _e('Submit Reviews.',wcps_textdomain); ?></p>
127
  <p class="option-info">
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',wcps_textdomain); ?>
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; ?>">
136
 
137
  </div>
138
  <div class="option-box">
139
+ <p class="option-title"><?php _e('Please Share',wcps_textdomain); ?></p>
140
+ <p class="option-info"><?php _e('If you like this plugin please share with your social share network.',wcps_textdomain); ?></p>
141
  <?php
142
 
143
  echo wcps_share_plugin();
144
  ?>
145
  </div>
146
  <div class="option-box">
147
+ <p class="option-title"><?php _e('Video Tutorial',wcps_textdomain); ?></p>
148
+ <p class="option-info"><?php _e('Please watch this video tutorial.',wcps_textdomain); ?></p>
149
  <iframe width="640" height="480" src="<?php echo wcps_tutorial_video_url; ?>" frameborder="0" allowfullscreen></iframe>
150
  </div>
151
 
includes/meta.php CHANGED
@@ -10,16 +10,16 @@ if ( ! defined('ABSPATH')) exit; // if direct access
10
  function wcps_posttype_register() {
11
 
12
  $labels = array(
13
- 'name' => __('WCPS', 'wcps'),
14
- 'singular_name' => __('WCPS', 'wcps'),
15
- 'add_new' => __('New WCPS', 'wcps'),
16
- 'add_new_item' => __('New WCPS','wcps'),
17
- 'edit_item' => __('Edit WCPS','wcps'),
18
- 'new_item' => __('New WCPS','wcps'),
19
- 'view_item' => __('View WCPS','wcps'),
20
- 'search_items' => __('Search WCPS','wcps'),
21
- 'not_found' => __('Nothing found','wcps'),
22
- 'not_found_in_trash' => __('Nothing found in Trash','wcps'),
23
  'parent_item_colon' => ''
24
  );
25
 
@@ -57,7 +57,7 @@ function meta_boxes_wcps()
57
  $screens = array( 'wcps' );
58
  foreach ( $screens as $screen )
59
  {
60
- add_meta_box('wcps_metabox',__( 'Woocommerce Products Slider Options','wcps' ),'meta_boxes_wcps_input', $screen);
61
  }
62
  }
63
  add_action( 'add_meta_boxes', 'meta_boxes_wcps' );
@@ -67,220 +67,141 @@ function meta_boxes_wcps_input( $post ) {
67
 
68
  global $post;
69
  wp_nonce_field( 'meta_boxes_wcps_input', 'meta_boxes_wcps_input_nonce' );
70
-
71
-
72
- $wcps_bg_img = get_post_meta( $post->ID, 'wcps_bg_img', true );
73
- $wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
74
- if(empty($wcps_container_padding)){
75
- $wcps_container_padding = '';
76
- }
77
-
78
- $wcps_container_bg_color = get_post_meta( $post->ID, 'wcps_container_bg_color', true );
79
- if(empty($wcps_container_bg_color)){
80
- $wcps_container_bg_color = '';
81
- }
82
-
83
- $wcps_items_bg_color = get_post_meta( $post->ID, 'wcps_items_bg_color', true );
84
- if(empty($wcps_items_bg_color)){
85
-
86
- $wcps_items_bg_color = '';
87
- }
88
-
89
- $wcps_items_padding = get_post_meta( $post->ID, 'wcps_items_padding', true );
90
- if(empty($wcps_items_padding)){
91
- $wcps_items_padding = '';
92
-
93
- }
94
-
95
- $wcps_themes = get_post_meta( $post->ID, 'wcps_themes', true );
96
- if(empty($wcps_themes)){
97
- $wcps_themes = 'flat';
98
- }
99
-
100
-
101
- $wcps_total_items = get_post_meta( $post->ID, 'wcps_total_items', true );
102
- if(empty($wcps_total_items)){
103
- $wcps_total_items = 10;
104
- }
105
-
106
- $wcps_total_items_price_format = get_post_meta( $post->ID, 'wcps_total_items_price_format', true );
107
-
108
  $wcps_column_number = get_post_meta( $post->ID, 'wcps_column_number', true );
109
- if(empty($wcps_column_number)){
110
- $wcps_column_number = 3;
111
- }
112
  $wcps_column_number_tablet = get_post_meta( $post->ID, 'wcps_column_number_tablet', true );
113
- if(empty($wcps_column_number_tablet)){
114
- $wcps_column_number_tablet = 2;
115
- }
116
 
117
  $wcps_column_number_mobile = get_post_meta( $post->ID, 'wcps_column_number_mobile', true );
118
- if(empty($wcps_column_number_mobile)){
119
- $wcps_column_number_mobile = 1;
120
- }
121
 
122
  $wcps_auto_play = get_post_meta( $post->ID, 'wcps_auto_play', true );
123
- if(empty($wcps_auto_play)){
124
- $wcps_auto_play = 'true';
125
- }
126
-
127
-
128
  $wcps_rewind = get_post_meta( $post->ID, 'wcps_rewind', true );
129
  if(empty($wcps_rewind)){$wcps_rewind = 'true';}
130
 
131
  $wcps_loop = get_post_meta( $post->ID, 'wcps_loop', true );
132
- if(empty($wcps_loop)){$wcps_loop = 'true';}
133
 
134
  $wcps_center = get_post_meta( $post->ID, 'wcps_center', true );
135
  if(empty($wcps_center)){$wcps_center = 'false';}
136
-
137
- $wcps_slider_rtl = get_post_meta( $post->ID, 'wcps_slider_rtl', true );
138
- if(empty($wcps_slider_rtl)){$wcps_slider_rtl = 'false'; }
139
-
140
- $wcps_slider_animateout = get_post_meta( $post->ID, 'wcps_slider_animateout', true );
141
- if(empty($wcps_slider_animateout)){$wcps_slider_animateout = 'fadeOut'; }
142
-
143
- $wcps_slider_animatein = get_post_meta( $post->ID, 'wcps_slider_animatein', true );
144
- if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
145
-
146
- $wcps_stop_on_hover = get_post_meta( $post->ID, 'wcps_stop_on_hover', true );
147
- if(empty($wcps_stop_on_hover)){
148
- $wcps_stop_on_hover = 'true';
149
- }
150
 
 
 
151
 
152
  $wcps_slider_navigation = get_post_meta( $post->ID, 'wcps_slider_navigation', true );
153
- if(empty($wcps_slider_navigation)){
154
- $wcps_slider_navigation = 'true';
155
- }
156
-
157
 
158
  $wcps_slider_navigation_position = get_post_meta( $post->ID, 'wcps_slider_navigation_position', true );
159
- if(empty($wcps_slider_navigation_position)){
160
- $wcps_slider_navigation_position = 'topright';
161
- }
162
-
163
  $wcps_slide_speed = get_post_meta( $post->ID, 'wcps_slide_speed', true );
164
- if(empty($wcps_slide_speed)){
165
- $wcps_slide_speed = '1000';
166
- }
167
-
168
  $wcps_slider_pagination = get_post_meta( $post->ID, 'wcps_slider_pagination', true );
 
169
  $wcps_pagination_slide_speed = get_post_meta( $post->ID, 'wcps_pagination_slide_speed', true );
170
- if(empty($wcps_pagination_slide_speed)){
171
- $wcps_pagination_slide_speed = '1000';
172
- }
173
 
174
  $wcps_slider_pagination_count = get_post_meta( $post->ID, 'wcps_slider_pagination_count', true );
175
 
176
  $wcps_slider_pagination_bg = get_post_meta( $post->ID, 'wcps_slider_pagination_bg', true );
177
  $wcps_slider_pagination_text_color = get_post_meta( $post->ID, 'wcps_slider_pagination_text_color', true );
178
-
179
  $wcps_slider_touch_drag = get_post_meta( $post->ID, 'wcps_slider_touch_drag', true );
180
  $wcps_slider_mouse_drag = get_post_meta( $post->ID, 'wcps_slider_mouse_drag', true );
181
 
182
- $wcps_content_source = get_post_meta( $post->ID, 'wcps_content_source', true );
183
- if(empty($wcps_content_source)){
184
- $wcps_content_source = 'recent';
185
- }
186
 
187
- $wcps_content_year = get_post_meta( $post->ID, 'wcps_content_year', true );
188
- $wcps_content_month = get_post_meta( $post->ID, 'wcps_content_month', true );
189
- $wcps_content_month_year = get_post_meta( $post->ID, 'wcps_content_month_year', true );
190
 
191
- $wcps_content_sku = get_post_meta( $post->ID, 'wcps_content_sku', true );
 
192
 
193
- $wcps_taxonomy = get_post_meta( $post->ID, 'wcps_taxonomy', true );
194
- $wcps_taxonomy_category = get_post_meta( $post->ID, 'wcps_taxonomy_category', true );
 
 
 
 
 
 
 
195
 
196
- $wcps_product_ids = get_post_meta( $post->ID, 'wcps_product_ids', true );
 
 
 
 
 
 
197
 
198
- $wcps_items_cat_font_size = get_post_meta( $post->ID, 'wcps_items_cat_font_size', true );
199
- $wcps_items_cat_text_align = get_post_meta( $post->ID, 'wcps_items_cat_text_align', true );
200
 
201
- $wcps_featured_icon_url = get_post_meta( $post->ID, 'wcps_featured_icon_url', true );
 
202
 
203
- $wcps_sale_icon_url = get_post_meta( $post->ID, 'wcps_sale_icon_url', true );
204
-
205
- $wcps_ratings_text_align = get_post_meta( $post->ID, 'wcps_ratings_text_align', true );
206
- $wcps_items_ratings_font_size = get_post_meta( $post->ID, 'wcps_items_ratings_font_size', true );
207
- $wcps_items_ratings_color = get_post_meta( $post->ID, 'wcps_items_ratings_color', true );
208
-
209
- $wcps_cart_style = get_post_meta( $post->ID, 'wcps_cart_style', true );
210
- $wcps_cart_bg = get_post_meta( $post->ID, 'wcps_cart_bg', true );
211
- $wcps_cart_text_color = get_post_meta( $post->ID, 'wcps_cart_text_color', true );
212
- if(empty($wcps_cart_text_color)){
213
- $wcps_cart_text_color = '#626262';
214
- }
215
 
 
 
216
 
217
- $wcps_cart_text_align = get_post_meta( $post->ID, 'wcps_cart_text_align', true );
218
- $wcps_items_cat_font_color = get_post_meta( $post->ID, 'wcps_items_cat_font_color', true );
219
- if(empty($wcps_items_cat_font_color)){
220
- $wcps_items_cat_font_color = '#626262';
221
- }
222
 
223
  $wcps_grid_items = get_post_meta( $post->ID, 'wcps_grid_items', true );
224
  $wcps_grid_items_hide = get_post_meta( $post->ID, 'wcps_grid_items_hide', true );
225
 
 
 
 
 
 
 
 
226
  $wcps_items_title_color = get_post_meta( $post->ID, 'wcps_items_title_color', true );
227
- if(empty($wcps_items_title_color)){
228
- $wcps_items_title_color = '#626262';
229
- }
230
-
231
-
232
-
233
  $wcps_items_title_font_size = get_post_meta( $post->ID, 'wcps_items_title_font_size', true );
234
  $wcps_items_title_text_align = get_post_meta( $post->ID, 'wcps_items_title_text_align', true );
235
 
236
  $wcps_items_excerpt_count = get_post_meta( $post->ID, 'wcps_items_excerpt_count', true );
237
- if(empty($wcps_items_excerpt_count)){
238
- $wcps_items_excerpt_count = 20;
239
- }
240
 
241
  $wcps_items_excerpt_read_more = get_post_meta( $post->ID, 'wcps_items_excerpt_read_more', true );
242
- if(empty($wcps_items_excerpt_read_more)){
243
- $wcps_items_excerpt_read_more = 'View product.';
244
- }
245
-
246
-
247
-
248
  $wcps_items_excerpt_text_align = get_post_meta( $post->ID, 'wcps_items_excerpt_text_align', true );
249
  $wcps_items_excerpt_font_size = get_post_meta( $post->ID, 'wcps_items_excerpt_font_size', true );
250
  $wcps_items_excerpt_font_color = get_post_meta( $post->ID, 'wcps_items_excerpt_font_color', true );
251
- if(empty($wcps_items_excerpt_font_color)){
252
- $wcps_items_excerpt_font_color = '#626262';
253
- }
254
 
 
 
 
 
 
255
  $wcps_items_price_color = get_post_meta( $post->ID, 'wcps_items_price_color', true );
256
- if(empty($wcps_items_price_color)){
257
- $wcps_items_price_color = '#626262';
258
- }
259
-
260
-
261
-
262
-
263
  $wcps_items_price_font_size = get_post_meta( $post->ID, 'wcps_items_price_font_size', true );
264
  $wcps_items_price_text_align = get_post_meta( $post->ID, 'wcps_items_price_text_align', true );
265
 
266
- $wcps_items_thumb_link_to = get_post_meta( $post->ID, 'wcps_items_thumb_link_to', true );
267
- $wcps_items_thumb_size = get_post_meta( $post->ID, 'wcps_items_thumb_size', true );
268
- $wcps_items_thumb_max_hieght = get_post_meta( $post->ID, 'wcps_items_thumb_max_hieght', true );
269
- $wcps_items_thumb_zoom = get_post_meta( $post->ID, 'wcps_items_thumb_zoom', true );
270
-
271
- $wcps_items_empty_thumb = get_post_meta( $post->ID, 'wcps_items_empty_thumb', true );
272
- if(empty($wcps_items_empty_thumb)){
273
- $wcps_items_empty_thumb = wcps_plugin_url.'assets/front/images/no-thumb.png';
274
- }
275
-
276
 
 
 
 
 
277
 
278
- $wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
279
- $wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
280
- $wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
281
 
282
- $wcps_ribbon_name = get_post_meta( $post->ID, 'wcps_ribbon_name', true );
283
- $wcps_ribbon_custom = get_post_meta( $post->ID, 'wcps_ribbon_custom', true );
284
 
285
  $wcps_items_custom_css = get_post_meta( $post->ID, 'wcps_items_custom_css', true );
286
 
@@ -296,22 +217,23 @@ function meta_boxes_wcps_input( $post ) {
296
 
297
  <div class="para-settings">
298
  <ul class="tab-nav">
299
- <li nav="1" class="nav1 active"><i class="fa fa-code"></i> <?php _e('Shortcode','wcps');?></li>
300
- <li nav="2" class="nav2"><i class="fa fa-cogs"></i> <?php _e('Options','wcps');?></li>
301
- <li nav="3" class="nav3"><i class="fa fa-diamond"></i> <?php _e('Style','wcps');?></li>
302
- <li nav="4" class="nav4"><i class="fa fa-pencil-square-o"></i> <?php _e('Content','wcps');?></li>
303
- <li nav="5" class="nav5"><i class="fa fa-bug"></i> <?php _e('Custom CSS','wcps');?></li>
 
304
  </ul> <!-- tab-nav end -->
305
 
306
  <ul class="box">
307
  <li style="display: block;" class="box1 tab-box active">
308
 
309
  <div class="option-box">
310
- <p class="option-title"><?php _e('Shortcode','wcps');?></p>
311
  <p class="option-info">
312
- <?php _e('Copy this shortcode and paste on page or post where you want to display slider.','wcps');?>
313
  <br />
314
- <?php _e('Use PHP code to your themes file to display slider.','wcps');?>
315
  </p>
316
  <textarea cols="50" rows="1" style="background:#bfefff" onClick="this.select();" >[wcps <?php echo 'id="'.$post->ID.'"';?>]</textarea>
317
  <br /><br />
@@ -323,22 +245,18 @@ function meta_boxes_wcps_input( $post ) {
323
 
324
 
325
  <li style="display: none;" class="box2 tab-box">
326
- <div class="option-box">
327
- <p class="option-title"><?php _e('Slider Total Items','wcps');?></p>
328
- <p class="option-info"><?php _e('ex: 10','wcps');?></p>
329
- <input type="text" placeholder="10" name="wcps_total_items" value="<?php echo $wcps_total_items; ?>" />
330
- </div>
331
 
332
  <div class="option-box">
333
- <p class="option-title"><?php _e('Slider Column Number','wcps');?></p>
334
 
335
- <p class="option-info"><?php _e('In Destop: (min:1000px and max)','wcps');?></p>
336
  <input type="text" placeholder="4" name="wcps_column_number" value="<?php echo $wcps_column_number; ?>" />
337
 
338
- <p class="option-info"><?php _e('In Tablet & Small Desktop: (900px max width)','wcps');?></p>
339
  <input type="text" placeholder="2" name="wcps_column_number_tablet" value="<?php echo $wcps_column_number_tablet; ?>" />
340
 
341
- <p class="option-info"><?php _e('In Mobile: (479px max width)','wcps');?></p>
342
  <input type="text" placeholder="1" name="wcps_column_number_mobile" value="<?php echo $wcps_column_number_mobile; ?>" />
343
 
344
 
@@ -346,13 +264,12 @@ function meta_boxes_wcps_input( $post ) {
346
  </div>
347
 
348
  <div class="option-box">
349
- <p class="option-title"><?php _e('Slider Auto Play','wcps');?></p>
350
- <p class="option-info"></p>
351
 
352
 
353
  <select name="wcps_auto_play">
354
- <option value="true" <?php if(($wcps_auto_play=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
355
- <option value="false" <?php if(($wcps_auto_play=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
356
  </select>
357
 
358
  <p class="option-info"><?php _e('Slider rewind', wcps_textdomain);?></p>
@@ -438,114 +355,97 @@ function meta_boxes_wcps_input( $post ) {
438
 
439
  </select>
440
 
441
-
442
-
443
- </div>
444
- <div class="option-box">
445
- <p class="option-title"><?php _e('Slider Stop on Hover','wcps');?></p>
446
- <p class="option-info"></p>
447
 
448
  <select name="wcps_stop_on_hover">
449
- <option value="true" <?php if(($wcps_stop_on_hover=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
450
- <option value="false" <?php if(($wcps_stop_on_hover=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
451
- </select>
452
-
453
-
454
- </div>
455
- <div class="option-box">
456
- <p class="option-title"><?php _e('Slider Navigation','wcps');?></p>
457
- <p class="option-info"><?php _e('Slider Navigation at Top','wcps');?></p>
458
 
459
  <select name="wcps_slider_navigation">
460
- <option value="true" <?php if(($wcps_slider_navigation=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
461
- <option value="false" <?php if(($wcps_slider_navigation=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
462
  </select>
463
 
464
 
465
- <p class="option-info"><?php _e('Slider Navigation Position','wcps');?></p>
466
  <select name="wcps_slider_navigation_position">
467
- <option value="topright" <?php if(($wcps_slider_navigation_position=="topright")) echo "selected"; ?> ><?php _e('Top Right','wcps');?></option>
468
- <option value="middle" <?php if(($wcps_slider_navigation_position=="middle")) echo "selected"; ?> ><?php _e('Middle','wcps');?></option>
469
- <option value="middle-fixed" <?php if(($wcps_slider_navigation_position=="middle-fixed")) echo "selected"; ?> ><?php _e('Middle fixed','wcps');?></option>
470
 
471
  </select>
472
-
473
-
474
- </div>
475
 
476
-
477
-
478
- <div class="option-box">
479
- <p class="option-title"><?php _e('Slider Pagination','wcps');?></p>
480
- <p class="option-info"><?php _e('Slider Pagination at Bottom','wcps');?></p>
481
 
482
  <select name="wcps_slider_pagination">
483
- <option value="true" <?php if(($wcps_slider_pagination=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
484
- <option value="false" <?php if(($wcps_slider_pagination=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
485
  </select>
486
-
487
-
488
-
489
- <p class="option-info"><?php _e('Pagination Background Color','wcps');?></p>
490
  <input type="text" name="wcps_slider_pagination_bg" class="wcps_color" id="wcps_slider_pagination_bg" value="<?php echo $wcps_slider_pagination_bg; ?>" />
491
 
492
- <p class="option-info"><?php _e('Pagination Text Color','wcps');?></p>
493
  <input type="text" name="wcps_slider_pagination_text_color" class="wcps_color" id="wcps_slider_pagination_text_color" value="<?php echo $wcps_slider_pagination_text_color; ?>" />
494
 
495
- <p class="option-info"><?php _e('Pagination Number Counting','wcps');?></p>
496
  <select name="wcps_slider_pagination_count">
497
- <option value="false" <?php if(($wcps_slider_pagination_count=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
498
- <option value="true" <?php if(($wcps_slider_pagination_count=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
499
 
500
  </select>
501
-
502
-
503
-
504
-
505
- </div>
506
-
507
 
508
-
509
-
510
- <div class="option-box">
511
- <p class="option-title"><?php _e('Slide Speed','wcps');?></p>
512
- <p class="option-info"></p>
513
- <input type="text" placeholder="1000" id="wcps_slide_speed" name="wcps_slide_speed" value="<?php echo $wcps_slide_speed; ?>" />
514
- </div>
515
- <div class="option-box">
516
- <p class="option-title"><?php _e('Pagination Slide Speed','wcps');?></p>
517
- <p class="option-info"></p>
518
- <input type="text" placeholder="1000" id="wcps_pagination_slide_speed" name="wcps_pagination_slide_speed" value="<?php echo $wcps_pagination_slide_speed; ?>" />
519
- </div>
520
-
521
- <div class="option-box">
522
- <p class="option-title"><?php _e('Slider Touch Drag Enabled','wcps');?></p>
523
- <p class="option-info"></p>
524
 
525
 
526
  <select name="wcps_slider_touch_drag">
527
- <option value="true" <?php if(($wcps_slider_touch_drag=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
528
- <option value="false" <?php if(($wcps_slider_touch_drag=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
529
  </select>
530
-
531
-
532
- </div>
533
- <div class="option-box">
534
- <p class="option-title"><?php _e('Slider Mouse Drag Enabled','wcps');?></p>
535
- <p class="option-info"></p>
536
 
537
  <select name="wcps_slider_mouse_drag">
538
- <option value="true" <?php if(($wcps_slider_mouse_drag=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
539
- <option value="false" <?php if(($wcps_slider_mouse_drag=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
540
  </select>
541
-
 
 
 
 
 
 
 
 
 
542
 
543
- </div>
 
 
 
 
 
544
 
545
  </li>
546
  <li style="display: none;" class="box3 tab-box ">
547
  <div class="option-box">
548
- <p class="option-title"><?php _e('Themes for slider','wcps');?></p>
549
  <p class="option-info"></p>
550
  <select name="wcps_themes" >
551
  <?php
@@ -568,7 +468,7 @@ function meta_boxes_wcps_input( $post ) {
568
 
569
 
570
  <div class="option-box">
571
- <p class="option-title"><?php _e('Slider Ribbon','wcps');?></p>
572
  <p class="option-info"></p>
573
  <?php
574
 
@@ -615,7 +515,7 @@ function meta_boxes_wcps_input( $post ) {
615
 
616
  ?>
617
 
618
- <input style="width:100%;" 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; ?>" />
619
 
620
  <?php
621
 
@@ -639,19 +539,19 @@ function meta_boxes_wcps_input( $post ) {
639
 
640
 
641
  <div class="option-box">
642
- <p class="option-title"><?php _e('Container options','wcps'); ?></p>
643
- <p class="option-info"><?php _e('Padding: (ex: 10px)','wcps'); ?></p>
644
  <input type="text" placeholder="10px" name="wcps_container_padding" value="<?php echo $wcps_container_padding; ?>" />
645
 
646
- <p class="option-info"><?php _e('Background color:','wcps'); ?></p>
647
  <input type="text" class="wcps_color" name="wcps_container_bg_color" value="<?php echo $wcps_container_bg_color; ?>" />
648
 
649
- <p class="option-info"><?php _e('Background image:','wcps'); ?></p>
650
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/dark_embroidery.png" />
651
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/dimension.png" />
652
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/eight_horns.png" />
653
  <br />
654
- <input type="text" id="wcps_bg_img" class="wcps_bg_img" name="wcps_bg_img" value="<?php echo $wcps_bg_img; ?>" /> <div onClick="clear_container_bg_image()" class="button clear-container-bg-image"> <?php _e('Clear','wcps'); ?></div>
655
 
656
  <script>
657
 
@@ -676,11 +576,11 @@ function meta_boxes_wcps_input( $post ) {
676
 
677
 
678
  <div class="option-box">
679
- <p class="option-title"><?php _e('Items Options','wcps'); ?></p>
680
- <p class="option-info"><?php _e('Items Background color','wcps'); ?></p>
681
  <input type="text" class="wcps_color" name="wcps_items_bg_color" value="<?php echo $wcps_items_bg_color; ?>" />
682
 
683
- <p class="option-info"><?php _e('Items Padding','wcps'); ?></p>
684
  <input type="text" name="wcps_items_padding" placeholder="5px" value="<?php echo $wcps_items_padding; ?>" />
685
 
686
  </div>
@@ -690,84 +590,19 @@ function meta_boxes_wcps_input( $post ) {
690
 
691
  </li>
692
  <li style="display: none;" class="box4 tab-box ">
693
-
694
- <div class="option-box">
695
- <p class="option-title"><?php _e('Empty Thumbnail','wcps');?></p>
696
- <p class="option-info"><?php _e('Custom thumbnail image url','wcps');?></p>
697
- <input type="text" name="wcps_items_empty_thumb" id="wcps_items_empty_thumb" value="<?php echo $wcps_items_empty_thumb; ?>" /><br /><br />
698
- <input id="wcps_items_empty_thumb_upload" class="wcps_items_empty_thumb_upload button" type="button" value="Upload Image" />
699
- <br /><br />
700
-
701
-
702
- <?php
703
- if(empty($wcps_items_empty_thumb))
704
- {
705
- ?>
706
- <img class="wcps_items_empty_thumb_display" width="300px" src="<?php echo wcps_plugin_url.'assets/front/images/no-thumb.png'; ?>" />
707
- <?php
708
- }
709
- else
710
- {
711
- ?>
712
- <img class="wcps_items_empty_thumb_display" width="300px" src="<?php echo $wcps_items_empty_thumb; ?>" />
713
- <?php
714
- }
715
- ?>
716
-
717
-
718
-
719
-
720
-
721
- <script>
722
- jQuery(document).ready(function($){
723
 
724
- var custom_uploader;
725
-
726
- jQuery('#wcps_items_empty_thumb_upload').click(function(e) {
727
-
728
- e.preventDefault();
729
-
730
- //If the uploader object has already been created, reopen the dialog
731
- if (custom_uploader) {
732
- custom_uploader.open();
733
- return;
734
- }
735
-
736
- //Extend the wp.media object
737
- custom_uploader = wp.media.frames.file_frame = wp.media({
738
- title: 'Choose Image',
739
- button: {
740
- text: 'Choose Image'
741
- },
742
- multiple: false
743
- });
744
-
745
- //When a file is selected, grab the URL and set it as the text field's value
746
- custom_uploader.on('select', function() {
747
- attachment = custom_uploader.state().get('selection').first().toJSON();
748
- jQuery('#wcps_items_empty_thumb').val(attachment.url);
749
- jQuery('.wcps_items_empty_thumb_display').attr('src',attachment.url);
750
- });
751
-
752
- //Open the uploader dialog
753
- custom_uploader.open();
754
-
755
- });
756
-
757
-
758
- })
759
- </script>
760
- </div>
761
-
762
-
763
 
764
  <div class="option-box">
765
- <p class="option-title"><?php _e('Query order','wcps'); ?></p>
766
  <p class="option-info"></p>
767
  <select name="wcps_query_order" >
768
- <option value="DESC" <?php if($wcps_query_order=="DESC") echo "selected"; ?>><?php _e('Descending','wcps');?></option>
769
- <option value="ASC" <?php if($wcps_query_order=="ASC") echo "selected"; ?>><?php _e('Ascending ','wcps');?></option>
770
-
771
 
772
  </select>
773
  </div>
@@ -778,71 +613,63 @@ function meta_boxes_wcps_input( $post ) {
778
 
779
 
780
  <div class="option-box">
781
- <p class="option-title"><?php _e('Query orderBy','wcps'); ?></p>
782
  <p class="option-info"></p>
783
  <select name="wcps_query_orderby" >
784
- <option value="none" <?php if($wcps_query_orderby=="none") echo "selected"; ?>><?php _e('None','wcps');?></option>
785
- <option value="ID" <?php if($wcps_query_orderby=="ID") echo "selected"; ?>><?php _e('ID','wcps');?></option>
786
- <option value="date" <?php if($wcps_query_orderby=="date") echo "selected"; ?>><?php _e('Date','wcps');?></option>
787
- <option value="rand" <?php if($wcps_query_orderby=="rand") echo "selected"; ?>><?php _e('Rand','wcps');?></option>
788
- <option value="comment_count" <?php if($wcps_query_orderby=="comment_count") echo "selected"; ?>><?php _e('Comment Count','wcps');?></option>
789
- <option value="author" <?php if($wcps_query_orderby=="author") echo "selected"; ?>><?php _e('Author','wcps');?></option>
790
- <option value="title" <?php if($wcps_query_orderby=="title") echo "selected"; ?>><?php _e('Title','wcps');?></option>
791
- <option value="name" <?php if($wcps_query_orderby=="name") echo "selected"; ?>><?php _e('Name','wcps');?></option>
792
- <option value="type" <?php if($wcps_query_orderby=="type") echo "selected"; ?>><?php _e('Type','wcps');?></option>
793
 
794
 
795
  </select>
796
  </div>
797
 
 
798
  <div class="option-box">
799
- <p class="option-title"><?php _e('Hide out of stock items','wcps'); ?></p>
800
- <p class="option-info"></p>
801
- <select name="wcps_hide_out_of_stock" >
802
- <option value="no" <?php if($wcps_hide_out_of_stock=="no") echo "selected"; ?>><?php _e('No','wcps');?></option>
803
- <option value="yes" <?php if($wcps_hide_out_of_stock=="yes") echo "selected"; ?>><?php _e('Yes ','wcps');?></option>
804
-
805
 
806
- </select>
807
- </div>
 
 
 
 
 
 
 
 
 
 
 
808
 
809
 
810
 
811
- <div class="option-box">
812
- <p class="option-title"><?php _e('Filter Slider Content.','wcps');?></p>
813
- <p class="option-info"></p>
814
- <ul class="content_source_area" >
815
- <li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_recent" type="radio" value="recent" <?php if($wcps_content_source=="recent") echo "checked";?> /> <label for="wcps_content_source_recent"><?php _e('Display from <b>Recent</b> Published','wcps');?></label>
816
- <div class="wcps_content_source_recent content-source-box"><?php _e('Slider items will query from recent published product.','wcps');?></div>
817
- </li>
818
-
819
- <li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_featured" type="radio" value="featured" <?php if($wcps_content_source=="featured") echo "checked";?> /> <label for="wcps_content_source_featured"><?php _e('Display from <b>Featured</b> Product','wcps');?></label>
820
- <div class="wcps_content_source_featured content-source-box"><?php _e('Slider items will query from featured marked product.','wcps');?></div>
821
- </li>
822
-
823
- <li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_year" type="radio" value="year" <?php if($wcps_content_source=="year") echo "checked";?> /> <label for="wcps_content_source_year"><?php _e('Display from Only <b>Year</b>','wcps');?></label>
824
-
825
- <div class="wcps_content_source_year content-source-box"><?php _e('Slider items will query from a year.','wcps');?>
826
- <input type="text" size="7" class="wcps_content_year" name="wcps_content_year" value="<?php echo $wcps_content_year;?>" placeholder="2014" />
827
- </div>
828
- </li>
829
-
830
- <li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_month" type="radio" value="month" <?php if($wcps_content_source=="month") echo "checked";?> /> <label for="wcps_content_source_month"><?php _e('Display from <b>Month</b>','wcps');?></label>
831
- <div class="wcps_content_source_month content-source-box"><?php _e('Slider items will query from Month of a year.','wcps');?> <br />
832
- <input type="text" size="7" class="wcps_content_month_year" name="wcps_content_month_year" value="<?php echo $wcps_content_month_year;?>" placeholder="2014" />
833
- <input type="text" size="7" class="wcps_content_month" name="wcps_content_month" value="<?php echo $wcps_content_month;?>" placeholder="06" />
834
- </div>
835
- </li>
836
 
 
 
 
 
 
 
837
 
838
-
839
- </ul>
840
- </div>
841
 
842
- <div class="option-box">
843
- <p class="option-title"><?php _e('Items sort.','wcps'); ?></p>
844
- <p class="option-info"><?php _e('Click each items to expand.','wcps'); ?></p>
845
- <div class="button wcps_grid_items_reset" wcps_id="<?php echo $wcps_id; ?>"><?php _e('Reset','wcps');?></div>
 
 
 
846
  <br /><br />
847
 
848
  <?php
@@ -871,47 +698,104 @@ function meta_boxes_wcps_input( $post ) {
871
 
872
 
873
  foreach($wcps_grid_items as $item_key=>$item_name){
874
- echo '<div class="items">';
875
- echo '<div class="header">'.$item_name;
876
- echo '<input type="hidden" name="wcps_grid_items['.$item_key.']" value="'.$item_name.'" />';
877
-
878
- if(!empty($wcps_grid_items_hide[$item_key])){
879
-
880
- $checked = 'checked';
881
- }
882
- else{
883
- $checked = '';
884
- }
885
-
886
- echo '<label><input '.$checked.' type="checkbox" class="wcps_grid_items_hide" name="wcps_grid_items_hide['.$item_key.']" value="1" />Hide on front-end</label>';
887
- //echo '<span class="remove">X</span>';
888
- echo '</div>'; // .header
889
-
890
-
891
- echo '<div class="options">';
892
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
  if($item_key == 'thumb'){
894
 
895
  ?>
896
  <div class="option-box">
897
- <p class="option-title"><?php _e('Slider Thumbnail Size','wcps');?></p>
898
  <p class="option-info"></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
899
  <select name="wcps_items_thumb_size" >
900
- <option value="full" <?php if($wcps_items_thumb_size=="full")echo "selected"; ?>><?php _e('Full','wcps');?></option>
901
- <option value="large" <?php if($wcps_items_thumb_size=="large")echo "selected"; ?>><?php _e('Large','wcps');?></option>
902
- <option value="medium" <?php if($wcps_items_thumb_size=="medium")echo "selected"; ?>><?php _e('Medium','wcps');?></option>
903
- <option value="thumbnail" <?php if($wcps_items_thumb_size=="thumbnail")echo "selected"; ?>><?php _e('Thumbnail','wcps');?></option>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
 
905
  </select>
906
  </div>
907
 
908
 
909
  <div class="option-box">
910
- <p class="option-title"><?php _e('Items thumbnail link\'s to','wcps');?></p>
911
  <p class="option-info"></p>
912
  <select name="wcps_items_thumb_link_to" >
913
- <option value="product" <?php if($wcps_items_thumb_link_to=="product")echo "selected"; ?>><?php _e('Product','wcps');?></option>
914
- <option value="category" <?php if($wcps_items_thumb_link_to=="category")echo "selected"; ?>><?php _e('Category','wcps');?></option>
915
  </select>
916
  </div>
917
 
@@ -919,22 +803,93 @@ function meta_boxes_wcps_input( $post ) {
919
 
920
 
921
  <div class="option-box">
922
- <p class="option-title"><?php _e('Slider thumb max hieght(px)','wcps');?></p>
923
  <p class="option-info"></p>
924
  <input type="text" name="wcps_items_thumb_max_hieght" placeholder="14px" id="wcps_items_thumb_max_hieght" value="<?php echo $wcps_items_thumb_max_hieght; ?>" />
925
  </div>
926
 
927
  <div class="option-box">
928
- <p class="option-title"><?php _e('Display Thumbnail Zoom button','wcps');?></p>
929
  <p class="option-info"></p>
930
  <select name="wcps_items_thumb_zoom" >
931
- <option value="no" <?php if($wcps_items_thumb_zoom=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
932
- <option value="yes" <?php if($wcps_items_thumb_zoom=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
933
 
934
  </select>
935
  </div>
936
 
937
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
938
  <?php
939
 
940
  }
@@ -942,34 +897,34 @@ function meta_boxes_wcps_input( $post ) {
942
 
943
  ?>
944
  <div class="option-box">
945
- <p class="option-title"><?php _e('Items Add to cart button Style','wcps');?></p>
946
- <p class="option-info"><?php _e('You can hide items Add to cart button on slider.','wcps');?></p>
947
  <select name="wcps_cart_style" >
948
- <option value="default" <?php if($wcps_cart_style=="default")echo "selected"; ?>><?php _e('Default','wcps');?></option>
949
- <option value="custom" <?php if($wcps_cart_style=="custom")echo "selected"; ?>><?php _e('Custom','wcps');?></option>
950
  </select>
951
  </div>
952
 
953
  <div class="option-box">
954
- <p class="option-title"><?php _e('Add to cart Background Color','wcps');?></p>
955
  <p class="option-info"></p>
956
  <input type="text" name="wcps_cart_bg" class="wcps_color" id="wcps_cart_bg" value="<?php echo $wcps_cart_bg; ?>" />
957
  </div>
958
 
959
  <div class="option-box">
960
- <p class="option-title"><?php _e('Add to cart Text Color','wcps');?></p>
961
  <p class="option-info"></p>
962
  <input type="text" name="wcps_cart_text_color" class="wcps_color" id="wcps_cart_text_color" value="<?php echo $wcps_cart_text_color; ?>" />
963
  </div>
964
 
965
  <div class="option-box">
966
- <p class="option-title"><?php _e('Items Cart Text Align','wcps');?></p>
967
 
968
 
969
  <select name="wcps_cart_text_align" >
970
- <option value="left" <?php if($wcps_cart_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
971
- <option value="right" <?php if($wcps_cart_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
972
- <option value="center" <?php if($wcps_cart_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
973
  </select>
974
 
975
  </div>
@@ -985,7 +940,7 @@ function meta_boxes_wcps_input( $post ) {
985
 
986
 
987
  <div class="option-box">
988
- <p class="option-title"><?php _e('Sale marker icon url','wcps');?></p>
989
  <p class="option-info"></p>
990
  <input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php echo $wcps_sale_icon_url; ?>" />
991
  </div>
@@ -1004,25 +959,25 @@ function meta_boxes_wcps_input( $post ) {
1004
 
1005
 
1006
  <div class="option-box">
1007
- <p class="option-title"><?php _e('Items Title Color','wcps');?></p>
1008
  <p class="option-info"></p>
1009
  <input type="text" name="wcps_items_title_color" class="wcps_color" id="wcps_items_title_color" value="<?php echo $wcps_items_title_color; ?>" />
1010
  </div>
1011
  <div class="option-box">
1012
- <p class="option-title"><?php _e('Items Title Font Size','wcps');?></p>
1013
  <p class="option-info"></p>
1014
  <input type="text" name="wcps_items_title_font_size" placeholder="14px" id="wcps_items_title_font_size" value="<?php echo $wcps_items_title_font_size; ?>" />
1015
  </div>
1016
 
1017
 
1018
  <div class="option-box">
1019
- <p class="option-title"><?php _e('Items Title Text Align','wcps');?></p>
1020
 
1021
 
1022
  <select name="wcps_items_title_text_align" >
1023
- <option value="left" <?php if($wcps_items_title_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
1024
- <option value="right" <?php if($wcps_items_title_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
1025
- <option value="center" <?php if($wcps_items_title_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
1026
  </select>
1027
 
1028
  </div>
@@ -1035,7 +990,7 @@ function meta_boxes_wcps_input( $post ) {
1035
  ?>
1036
 
1037
  <div class="option-box">
1038
- <p class="option-title"><?php _e('Featured marker icon url','wcps');?></p>
1039
  <p class="option-info"></p>
1040
  <input type="text" name="wcps_featured_icon_url" placeholder="" id="wcps_featured_icon_url" value="<?php echo $wcps_featured_icon_url; ?>" />
1041
  </div>
@@ -1047,12 +1002,12 @@ function meta_boxes_wcps_input( $post ) {
1047
  ?>
1048
 
1049
  <div class="option-box">
1050
- <p class="option-title"><?php _e('Price format on slider','wcps');?></p>
1051
  <p class="option-info"></p>
1052
- <select name="wcps_total_items_price_format">
1053
- <option value="full" <?php if(($wcps_total_items_price_format=="full")) echo "selected"; ?> ><?php _e('Full Format','wcps');?></option>
1054
- <option value="sale" <?php if(($wcps_total_items_price_format=="sale")) echo "selected"; ?> ><?php _e('Sale price','wcps');?></option>
1055
- <option value="regular" <?php if(($wcps_total_items_price_format=="regular")) echo "selected"; ?> ><?php _e('Regular price','wcps');?></option>
1056
  </select>
1057
 
1058
  </div>
@@ -1061,13 +1016,13 @@ function meta_boxes_wcps_input( $post ) {
1061
 
1062
 
1063
  <div class="option-box">
1064
- <p class="option-title"><?php _e('Items Price Color','wcps');?></p>
1065
  <p class="option-info"></p>
1066
  <input type="text" name="wcps_items_price_color" class="wcps_color" id="wcps_items_price_color" value="<?php echo $wcps_items_price_color; ?>" />
1067
  </div>
1068
 
1069
  <div class="option-box">
1070
- <p class="option-title"><?php _e('Items price Font Size','wcps');?></p>
1071
  <p class="option-info"></p>
1072
  <input type="text" name="wcps_items_price_font_size" placeholder="14px" id="wcps_items_price_font_size" value="<?php echo $wcps_items_price_font_size; ?>" />
1073
  </div>
@@ -1075,13 +1030,13 @@ function meta_boxes_wcps_input( $post ) {
1075
 
1076
 
1077
  <div class="option-box">
1078
- <p class="option-title"><?php _e('Price Text Align','wcps');?></p>
1079
 
1080
 
1081
  <select name="wcps_items_price_text_align" >
1082
- <option value="left" <?php if($wcps_items_price_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
1083
- <option value="right" <?php if($wcps_items_price_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
1084
- <option value="center" <?php if($wcps_items_price_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
1085
  </select>
1086
 
1087
  </div>
@@ -1100,27 +1055,27 @@ function meta_boxes_wcps_input( $post ) {
1100
  ?>
1101
 
1102
  <div class="option-box">
1103
- <p class="option-title"><?php _e('Items Rating Text Align','wcps');?></p>
1104
 
1105
 
1106
  <select name="wcps_ratings_text_align" >
1107
- <option value="left" <?php if($wcps_ratings_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
1108
- <option value="right" <?php if($wcps_ratings_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
1109
- <option value="center" <?php if($wcps_ratings_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
1110
  </select>
1111
 
1112
  </div>
1113
 
1114
 
1115
  <div class="option-box">
1116
- <p class="option-title"><?php _e('Items ratings Font Size','wcps');?></p>
1117
  <p class="option-info"></p>
1118
  <input type="text" name="wcps_items_ratings_font_size" placeholder="14px" id="wcps_items_ratings_font_size" value="<?php echo $wcps_items_ratings_font_size; ?>" />
1119
  </div>
1120
 
1121
 
1122
  <div class="option-box">
1123
- <p class="option-title"><?php _e('Items Ratings Color','wcps');?></p>
1124
  <p class="option-info"></p>
1125
  <input type="text" name="wcps_items_ratings_color" class="wcps_color" id="wcps_items_ratings_color" value="<?php echo $wcps_items_ratings_color; ?>" />
1126
  </div>
@@ -1137,41 +1092,40 @@ function meta_boxes_wcps_input( $post ) {
1137
 
1138
  ?>
1139
  <div class="option-box">
1140
- <p class="option-title"><?php _e('Excerpt word count','wcps');?></p>
1141
  <p class="option-info"></p>
1142
  <input type="text" name="wcps_items_excerpt_count" placeholder="30" id="wcps_items_excerpt_count" value="<?php echo $wcps_items_excerpt_count; ?>" />
1143
  </div>
1144
 
1145
  <div class="option-box">
1146
- <p class="option-title"><?php _e('Excerpt read more text','wcps');?></p>
1147
  <p class="option-info"></p>
1148
  <input type="text" name="wcps_items_excerpt_read_more" placeholder="View product." id="wcps_items_excerpt_read_more" value="<?php echo $wcps_items_excerpt_read_more; ?>" />
1149
  </div>
1150
 
1151
  <div class="option-box">
1152
- <p class="option-title"><?php _e('Items Excerpt Font Size','wcps');?></p>
1153
  <p class="option-info"></p>
1154
  <input type="text" name="wcps_items_excerpt_font_size" placeholder="14px" id="wcps_items_excerpt_font_size" value="<?php echo $wcps_items_excerpt_font_size; ?>" />
1155
  </div>
1156
 
1157
 
1158
  <div class="option-box">
1159
- <p class="option-title"><?php _e('Excerpt Text Align','wcps');?></p>
1160
 
1161
 
1162
  <select name="wcps_items_excerpt_text_align" >
1163
- <option value="left" <?php if($wcps_items_excerpt_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
1164
- <option value="right" <?php if($wcps_items_excerpt_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
1165
-
1166
- <option value="center" <?php if($wcps_items_excerpt_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
1167
  </select>
1168
 
1169
  </div>
1170
 
1171
  <div class="option-box">
1172
- <p class="option-title"><?php _e('Items Excerpt Font color','wcps');?></p>
1173
  <p class="option-info"></p>
1174
- <input type="text" class="wcps_color" name="wcps_items_excerpt_font_color" placeholder="14px" id="wcps_items_excerpt_font_color" value="<?php echo $wcps_items_excerpt_font_color; ?>" />
1175
  </div>
1176
 
1177
 
@@ -1191,20 +1145,20 @@ function meta_boxes_wcps_input( $post ) {
1191
 
1192
 
1193
  <div class="option-box">
1194
- <p class="option-title"><?php _e('Items Category Font Size','wcps');?></p>
1195
  <p class="option-info"></p>
1196
  <input type="text" name="wcps_items_cat_font_size" placeholder="14px" id="wcps_items_cat_font_size" value="<?php echo $wcps_items_cat_font_size; ?>" />
1197
  </div>
1198
 
1199
 
1200
  <div class="option-box">
1201
- <p class="option-title"><?php _e('Category Text Align','wcps');?></p>
1202
 
1203
 
1204
  <select name="wcps_items_cat_text_align" >
1205
- <option value="left" <?php if($wcps_items_cat_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
1206
- <option value="right" <?php if($wcps_items_cat_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
1207
- <option value="center" <?php if($wcps_items_cat_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
1208
  </select>
1209
 
1210
  </div>
@@ -1213,9 +1167,9 @@ function meta_boxes_wcps_input( $post ) {
1213
 
1214
 
1215
  <div class="option-box">
1216
- <p class="option-title"><?php _e('Items Category Font color','wcps');?></p>
1217
  <p class="option-info"></p>
1218
- <input type="text" class="wcps_color" name="wcps_items_cat_font_color" placeholder="14px" id="wcps_items_cat_font_color" value="<?php echo $wcps_items_cat_font_color; ?>" />
1219
  </div>
1220
 
1221
 
@@ -1246,30 +1200,26 @@ function meta_boxes_wcps_input( $post ) {
1246
 
1247
  </div> <!-- .expandable -->
1248
 
 
 
 
 
 
 
 
 
 
1249
 
 
1250
 
1251
- </div>
1252
-
1253
- <script>
1254
- jQuery(document).ready(function($)
1255
- {
1256
- $(function() {
1257
- $( ".expandable" ).sortable({ handle: '.header' });
1258
- //$( ".items" ).disableSelection();
1259
- });
1260
-
1261
- })
1262
-
1263
- </script>
1264
-
1265
-
1266
- </li>
1267
 
 
1268
 
1269
- <li style="display: none;" class="box5 tab-box">
1270
  <div class="option-box">
1271
- <p class="option-title"><?php _e('Custom CSS for this slider.','wcps'); ?></p>
1272
- <p class="option-info"><?php _e('Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, sometime you need use "!important" to overrid.','wcps');?>
1273
  <br/>
1274
  <b>#wcps-<?php
1275
 
@@ -1350,7 +1300,7 @@ function meta_boxes_wcps_save( $post_id ) {
1350
 
1351
  $wcps_total_items = sanitize_text_field( $_POST['wcps_total_items'] );
1352
 
1353
- $wcps_total_items_price_format = sanitize_text_field( $_POST['wcps_total_items_price_format'] );
1354
 
1355
  $wcps_column_number = sanitize_text_field( $_POST['wcps_column_number'] );
1356
  $wcps_column_number_mobile = sanitize_text_field( $_POST['wcps_column_number_mobile'] );
@@ -1489,49 +1439,10 @@ function meta_boxes_wcps_save( $post_id ) {
1489
  {
1490
  $wcps_slider_mouse_drag = sanitize_text_field( $_POST['wcps_slider_mouse_drag'] );
1491
  }
1492
-
1493
-
1494
-
1495
- $wcps_content_source = sanitize_text_field( $_POST['wcps_content_source'] );
1496
- $wcps_content_year = sanitize_text_field( $_POST['wcps_content_year'] );
1497
- $wcps_content_month = sanitize_text_field( $_POST['wcps_content_month'] );
1498
- $wcps_content_month_year = sanitize_text_field( $_POST['wcps_content_month_year'] );
1499
-
1500
- $wcps_content_sku = sanitize_text_field( $_POST['wcps_content_sku'] );
1501
-
1502
-
1503
-
1504
- if(empty($_POST['wcps_taxonomy']))
1505
- {
1506
- $wcps_taxonomy = '';
1507
- }
1508
- else
1509
- {
1510
- $wcps_taxonomy = sanitize_text_field( $_POST['wcps_taxonomy'] );
1511
- }
1512
-
1513
-
1514
- if(empty($_POST['wcps_taxonomy_category']))
1515
- {
1516
- $wcps_taxonomy_category = '';
1517
- }
1518
- else
1519
- {
1520
- $wcps_taxonomy_category = stripslashes_deep( $_POST['wcps_taxonomy_category'] );
1521
- }
1522
-
1523
-
1524
- if(empty($_POST['wcps_product_ids']))
1525
- {
1526
- $wcps_product_ids = '';
1527
- }
1528
- else
1529
- {
1530
- $wcps_product_ids = sanitize_text_field( $_POST['wcps_product_ids'] );
1531
- }
1532
-
1533
 
1534
 
 
 
1535
 
1536
 
1537
  //$wcps_cat_display = sanitize_text_field( $_POST['wcps_cat_display'] );
@@ -1606,7 +1517,7 @@ function meta_boxes_wcps_save( $post_id ) {
1606
  update_post_meta( $post_id, 'wcps_themes', $wcps_themes );
1607
  update_post_meta( $post_id, 'wcps_total_items', $wcps_total_items );
1608
 
1609
- update_post_meta( $post_id, 'wcps_total_items_price_format', $wcps_total_items_price_format );
1610
 
1611
  update_post_meta( $post_id, 'wcps_column_number', $wcps_column_number );
1612
  update_post_meta( $post_id, 'wcps_column_number_mobile', $wcps_column_number_mobile );
@@ -1635,18 +1546,9 @@ function meta_boxes_wcps_save( $post_id ) {
1635
  update_post_meta( $post_id, 'wcps_slider_animateout', $wcps_slider_animateout );
1636
  update_post_meta( $post_id, 'wcps_slider_animatein', $wcps_slider_animatein );
1637
 
1638
-
1639
- update_post_meta( $post_id, 'wcps_content_source', $wcps_content_source );
1640
- update_post_meta( $post_id, 'wcps_content_year', $wcps_content_year );
1641
- update_post_meta( $post_id, 'wcps_content_month', $wcps_content_month );
1642
- update_post_meta( $post_id, 'wcps_content_month_year', $wcps_content_month_year );
1643
-
1644
- update_post_meta( $post_id, 'wcps_content_sku', $wcps_content_sku );
1645
-
1646
- update_post_meta( $post_id, 'wcps_taxonomy', $wcps_taxonomy );
1647
- update_post_meta( $post_id, 'wcps_taxonomy_category', $wcps_taxonomy_category );
1648
-
1649
- update_post_meta( $post_id, 'wcps_product_ids', $wcps_product_ids );
1650
 
1651
  //update_post_meta( $post_id, 'wcps_cat_display', $wcps_cat_display );
1652
  update_post_meta( $post_id, 'wcps_items_cat_font_size', $wcps_items_cat_font_size );
10
  function wcps_posttype_register() {
11
 
12
  $labels = array(
13
+ 'name' => __('WCPS', wcps_textdomain),
14
+ 'singular_name' => __('WCPS', wcps_textdomain),
15
+ 'add_new' => __('New WCPS', wcps_textdomain),
16
+ 'add_new_item' => __('New WCPS',wcps_textdomain),
17
+ 'edit_item' => __('Edit WCPS',wcps_textdomain),
18
+ 'new_item' => __('New WCPS',wcps_textdomain),
19
+ 'view_item' => __('View WCPS',wcps_textdomain),
20
+ 'search_items' => __('Search WCPS',wcps_textdomain),
21
+ 'not_found' => __('Nothing found',wcps_textdomain),
22
+ 'not_found_in_trash' => __('Nothing found in Trash',wcps_textdomain),
23
  'parent_item_colon' => ''
24
  );
25
 
57
  $screens = array( 'wcps' );
58
  foreach ( $screens as $screen )
59
  {
60
+ add_meta_box('wcps_metabox',__( 'Woocommerce Products Slider Options',wcps_textdomain ),'meta_boxes_wcps_input', $screen);
61
  }
62
  }
63
  add_action( 'add_meta_boxes', 'meta_boxes_wcps' );
67
 
68
  global $post;
69
  wp_nonce_field( 'meta_boxes_wcps_input', 'meta_boxes_wcps_input_nonce' );
70
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  $wcps_column_number = get_post_meta( $post->ID, 'wcps_column_number', true );
72
+ if(empty($wcps_column_number)){ $wcps_column_number = 3; }
73
+
 
74
  $wcps_column_number_tablet = get_post_meta( $post->ID, 'wcps_column_number_tablet', true );
75
+ if(empty($wcps_column_number_tablet)){ $wcps_column_number_tablet = 2; }
 
 
76
 
77
  $wcps_column_number_mobile = get_post_meta( $post->ID, 'wcps_column_number_mobile', true );
78
+ if(empty($wcps_column_number_mobile)){ $wcps_column_number_mobile = 1; }
 
 
79
 
80
  $wcps_auto_play = get_post_meta( $post->ID, 'wcps_auto_play', true );
81
+ if(empty($wcps_auto_play)){ $wcps_auto_play = 'true'; }
82
+
 
 
 
83
  $wcps_rewind = get_post_meta( $post->ID, 'wcps_rewind', true );
84
  if(empty($wcps_rewind)){$wcps_rewind = 'true';}
85
 
86
  $wcps_loop = get_post_meta( $post->ID, 'wcps_loop', true );
87
+ if(empty($wcps_loop)){$wcps_loop = 'true';}
88
 
89
  $wcps_center = get_post_meta( $post->ID, 'wcps_center', true );
90
  if(empty($wcps_center)){$wcps_center = 'false';}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
92
+ $wcps_stop_on_hover = get_post_meta( $post->ID, 'wcps_stop_on_hover', true );
93
+ if(empty($wcps_stop_on_hover)){ $wcps_stop_on_hover = 'true'; }
94
 
95
  $wcps_slider_navigation = get_post_meta( $post->ID, 'wcps_slider_navigation', true );
96
+ if(empty($wcps_slider_navigation)){ $wcps_slider_navigation = 'true'; }
 
 
 
97
 
98
  $wcps_slider_navigation_position = get_post_meta( $post->ID, 'wcps_slider_navigation_position', true );
99
+ if(empty($wcps_slider_navigation_position)){$wcps_slider_navigation_position = 'topright'; }
100
+
 
 
101
  $wcps_slide_speed = get_post_meta( $post->ID, 'wcps_slide_speed', true );
102
+ if(empty($wcps_slide_speed)){$wcps_slide_speed = '1000'; }
103
+
 
 
104
  $wcps_slider_pagination = get_post_meta( $post->ID, 'wcps_slider_pagination', true );
105
+
106
  $wcps_pagination_slide_speed = get_post_meta( $post->ID, 'wcps_pagination_slide_speed', true );
107
+ if(empty($wcps_pagination_slide_speed)){$wcps_pagination_slide_speed = '1000'; }
 
 
108
 
109
  $wcps_slider_pagination_count = get_post_meta( $post->ID, 'wcps_slider_pagination_count', true );
110
 
111
  $wcps_slider_pagination_bg = get_post_meta( $post->ID, 'wcps_slider_pagination_bg', true );
112
  $wcps_slider_pagination_text_color = get_post_meta( $post->ID, 'wcps_slider_pagination_text_color', true );
113
+
114
  $wcps_slider_touch_drag = get_post_meta( $post->ID, 'wcps_slider_touch_drag', true );
115
  $wcps_slider_mouse_drag = get_post_meta( $post->ID, 'wcps_slider_mouse_drag', true );
116
 
117
+ $wcps_slider_rtl = get_post_meta( $post->ID, 'wcps_slider_rtl', true );
118
+ if(empty($wcps_slider_rtl)){$wcps_slider_rtl = 'false'; }
 
 
119
 
120
+ $wcps_slider_animateout = get_post_meta( $post->ID, 'wcps_slider_animateout', true );
121
+ if(empty($wcps_slider_animateout)){$wcps_slider_animateout = 'fadeOut'; }
 
122
 
123
+ $wcps_slider_animatein = get_post_meta( $post->ID, 'wcps_slider_animatein', true );
124
+ if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
125
 
126
+
127
+ $wcps_themes = get_post_meta( $post->ID, 'wcps_themes', true );
128
+ if(empty($wcps_themes)){ $wcps_themes = 'flat'; }
129
+
130
+ $wcps_ribbon_name = get_post_meta( $post->ID, 'wcps_ribbon_name', true );
131
+ $wcps_ribbon_custom = get_post_meta( $post->ID, 'wcps_ribbon_custom', true );
132
+
133
+ $wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
134
+ if(empty($wcps_container_padding)){ $wcps_container_padding = ''; }
135
 
136
+ $wcps_container_bg_color = get_post_meta( $post->ID, 'wcps_container_bg_color', true );
137
+ if(empty($wcps_container_bg_color)){ $wcps_container_bg_color = ''; }
138
+
139
+ $wcps_bg_img = get_post_meta( $post->ID, 'wcps_bg_img', true );
140
+
141
+ $wcps_items_bg_color = get_post_meta( $post->ID, 'wcps_items_bg_color', true );
142
+ if(empty($wcps_items_bg_color)){$wcps_items_bg_color = ''; }
143
 
144
+ $wcps_items_padding = get_post_meta( $post->ID, 'wcps_items_padding', true );
145
+ if(empty($wcps_items_padding)){ $wcps_items_padding = ''; }
146
 
147
+ $wcps_total_items = get_post_meta( $post->ID, 'wcps_total_items', true );
148
+ if(empty($wcps_total_items)){ $wcps_total_items = -1;}
149
 
150
+ $wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
151
+ $wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
152
+ $wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
 
 
 
 
 
 
 
 
 
153
 
154
+ $wcps_product_featured = get_post_meta( $post->ID, 'wcps_product_featured', true );
155
+ if(empty($wcps_product_featured)){ $wcps_product_featured = 'no'; }
156
 
157
+ $wcps_product_on_sale = get_post_meta( $post->ID, 'wcps_product_on_sale', true );
158
+ if(empty($wcps_product_on_sale)){ $wcps_product_on_sale = 'no'; }
 
 
 
159
 
160
  $wcps_grid_items = get_post_meta( $post->ID, 'wcps_grid_items', true );
161
  $wcps_grid_items_hide = get_post_meta( $post->ID, 'wcps_grid_items_hide', true );
162
 
163
+ $wcps_items_thumb_size = get_post_meta( $post->ID, 'wcps_items_thumb_size', true );
164
+ $wcps_items_thumb_link_to = get_post_meta( $post->ID, 'wcps_items_thumb_link_to', true );
165
+ $wcps_items_thumb_max_hieght = get_post_meta( $post->ID, 'wcps_items_thumb_max_hieght', true );
166
+ $wcps_items_thumb_zoom = get_post_meta( $post->ID, 'wcps_items_thumb_zoom', true );
167
+ $wcps_items_empty_thumb = get_post_meta( $post->ID, 'wcps_items_empty_thumb', true );
168
+ if(empty($wcps_items_empty_thumb)){ $wcps_items_empty_thumb = wcps_plugin_url.'assets/front/images/no-thumb.png'; }
169
+
170
  $wcps_items_title_color = get_post_meta( $post->ID, 'wcps_items_title_color', true );
 
 
 
 
 
 
171
  $wcps_items_title_font_size = get_post_meta( $post->ID, 'wcps_items_title_font_size', true );
172
  $wcps_items_title_text_align = get_post_meta( $post->ID, 'wcps_items_title_text_align', true );
173
 
174
  $wcps_items_excerpt_count = get_post_meta( $post->ID, 'wcps_items_excerpt_count', true );
175
+ if(empty($wcps_items_excerpt_count)){$wcps_items_excerpt_count = 20;}
 
 
176
 
177
  $wcps_items_excerpt_read_more = get_post_meta( $post->ID, 'wcps_items_excerpt_read_more', true );
178
+ if(empty($wcps_items_excerpt_read_more)){$wcps_items_excerpt_read_more = __('View product.', wcps_textdomain);}
179
+
 
 
 
 
180
  $wcps_items_excerpt_text_align = get_post_meta( $post->ID, 'wcps_items_excerpt_text_align', true );
181
  $wcps_items_excerpt_font_size = get_post_meta( $post->ID, 'wcps_items_excerpt_font_size', true );
182
  $wcps_items_excerpt_font_color = get_post_meta( $post->ID, 'wcps_items_excerpt_font_color', true );
 
 
 
183
 
184
+ $wcps_items_cat_font_size = get_post_meta( $post->ID, 'wcps_items_cat_font_size', true );
185
+ $wcps_items_cat_text_align = get_post_meta( $post->ID, 'wcps_items_cat_text_align', true );
186
+ $wcps_items_cat_font_color = get_post_meta( $post->ID, 'wcps_items_cat_font_color', true );
187
+
188
+ $wcps_items_price_format = get_post_meta( $post->ID, 'wcps_items_price_format', true );
189
  $wcps_items_price_color = get_post_meta( $post->ID, 'wcps_items_price_color', true );
 
 
 
 
 
 
 
190
  $wcps_items_price_font_size = get_post_meta( $post->ID, 'wcps_items_price_font_size', true );
191
  $wcps_items_price_text_align = get_post_meta( $post->ID, 'wcps_items_price_text_align', true );
192
 
193
+ $wcps_ratings_text_align = get_post_meta( $post->ID, 'wcps_ratings_text_align', true );
194
+ $wcps_items_ratings_font_size = get_post_meta( $post->ID, 'wcps_items_ratings_font_size', true );
195
+ $wcps_items_ratings_color = get_post_meta( $post->ID, 'wcps_items_ratings_color', true );
 
 
 
 
 
 
 
196
 
197
+ $wcps_cart_style = get_post_meta( $post->ID, 'wcps_cart_style', true );
198
+ $wcps_cart_bg = get_post_meta( $post->ID, 'wcps_cart_bg', true );
199
+ $wcps_cart_text_color = get_post_meta( $post->ID, 'wcps_cart_text_color', true );
200
+ $wcps_cart_text_align = get_post_meta( $post->ID, 'wcps_cart_text_align', true );
201
 
202
+ $wcps_sale_icon_url = get_post_meta( $post->ID, 'wcps_sale_icon_url', true );
 
 
203
 
204
+ $wcps_featured_icon_url = get_post_meta( $post->ID, 'wcps_featured_icon_url', true );
 
205
 
206
  $wcps_items_custom_css = get_post_meta( $post->ID, 'wcps_items_custom_css', true );
207
 
217
 
218
  <div class="para-settings">
219
  <ul class="tab-nav">
220
+ <li nav="1" class="nav1 active"><i class="fa fa-code"></i> <?php _e('Shortcode',wcps_textdomain);?></li>
221
+ <li nav="2" class="nav2"><i class="fa fa-cogs"></i> <?php _e('Options',wcps_textdomain);?></li>
222
+ <li nav="3" class="nav3"><i class="fa fa-diamond"></i> <?php _e('Style',wcps_textdomain);?></li>
223
+ <li nav="4" class="nav4"><i class="fa fa-pencil-square-o"></i> <?php _e('Query Product',wcps_textdomain);?></li>
224
+ <li nav="5" class="nav5"><i class="fa fa-pencil-square-o"></i> <?php _e('Elements', wcps_textdomain);?></li>
225
+ <li nav="6" class="nav6"><i class="fa fa-bug"></i> <?php _e('Custom CSS',wcps_textdomain);?></li>
226
  </ul> <!-- tab-nav end -->
227
 
228
  <ul class="box">
229
  <li style="display: block;" class="box1 tab-box active">
230
 
231
  <div class="option-box">
232
+ <p class="option-title"><?php _e('Shortcode',wcps_textdomain);?></p>
233
  <p class="option-info">
234
+ <?php _e('Copy this shortcode and paste on page or post where you want to display slider.',wcps_textdomain);?>
235
  <br />
236
+ <?php _e('Use PHP code to your themes file to display slider.',wcps_textdomain);?>
237
  </p>
238
  <textarea cols="50" rows="1" style="background:#bfefff" onClick="this.select();" >[wcps <?php echo 'id="'.$post->ID.'"';?>]</textarea>
239
  <br /><br />
245
 
246
 
247
  <li style="display: none;" class="box2 tab-box">
248
+
 
 
 
 
249
 
250
  <div class="option-box">
251
+ <p class="option-title"><?php _e('Slider column number',wcps_textdomain);?></p>
252
 
253
+ <p class="option-info"><?php _e('In Destop: (min:1000px and max)',wcps_textdomain);?></p>
254
  <input type="text" placeholder="4" name="wcps_column_number" value="<?php echo $wcps_column_number; ?>" />
255
 
256
+ <p class="option-info"><?php _e('In Tablet & Small Desktop: (900px max width)',wcps_textdomain);?></p>
257
  <input type="text" placeholder="2" name="wcps_column_number_tablet" value="<?php echo $wcps_column_number_tablet; ?>" />
258
 
259
+ <p class="option-info"><?php _e('In Mobile: (479px max width)',wcps_textdomain);?></p>
260
  <input type="text" placeholder="1" name="wcps_column_number_mobile" value="<?php echo $wcps_column_number_mobile; ?>" />
261
 
262
 
264
  </div>
265
 
266
  <div class="option-box">
267
+ <p class="option-info"><?php _e('Slider Auto Play',wcps_textdomain);?></p>
 
268
 
269
 
270
  <select name="wcps_auto_play">
271
+ <option value="true" <?php if(($wcps_auto_play=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
272
+ <option value="false" <?php if(($wcps_auto_play=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
273
  </select>
274
 
275
  <p class="option-info"><?php _e('Slider rewind', wcps_textdomain);?></p>
355
 
356
  </select>
357
 
358
+ <p class="option-info"><?php _e('Slider Stop on Hover',wcps_textdomain);?></p>
 
 
 
 
 
359
 
360
  <select name="wcps_stop_on_hover">
361
+ <option value="true" <?php if(($wcps_stop_on_hover=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
362
+ <option value="false" <?php if(($wcps_stop_on_hover=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
363
+ </select>
364
+
365
+ <p class="option-info"><?php _e('Slider Navigation at Top',wcps_textdomain);?></p>
 
 
 
 
366
 
367
  <select name="wcps_slider_navigation">
368
+ <option value="true" <?php if(($wcps_slider_navigation=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
369
+ <option value="false" <?php if(($wcps_slider_navigation=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
370
  </select>
371
 
372
 
373
+ <p class="option-info"><?php _e('Slider Navigation Position',wcps_textdomain);?></p>
374
  <select name="wcps_slider_navigation_position">
375
+ <option value="topright" <?php if(($wcps_slider_navigation_position=="topright")) echo "selected"; ?> ><?php _e('Top Right',wcps_textdomain);?></option>
376
+ <option value="middle" <?php if(($wcps_slider_navigation_position=="middle")) echo "selected"; ?> ><?php _e('Middle',wcps_textdomain);?></option>
377
+ <option value="middle-fixed" <?php if(($wcps_slider_navigation_position=="middle-fixed")) echo "selected"; ?> ><?php _e('Middle fixed',wcps_textdomain);?></option>
378
 
379
  </select>
 
 
 
380
 
381
+ <p class="option-info"><?php _e('Slide Speed',wcps_textdomain);?></p>
382
+ <input type="text" placeholder="1000" id="wcps_slide_speed" name="wcps_slide_speed" value="<?php echo $wcps_slide_speed; ?>" />
383
+
384
+
385
+ <p class="option-info"><?php _e('Slider Pagination at Bottom',wcps_textdomain);?></p>
386
 
387
  <select name="wcps_slider_pagination">
388
+ <option value="true" <?php if(($wcps_slider_pagination=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
389
+ <option value="false" <?php if(($wcps_slider_pagination=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
390
  </select>
391
+
392
+
393
+
394
+ <p class="option-info"><?php _e('Pagination Background Color',wcps_textdomain);?></p>
395
  <input type="text" name="wcps_slider_pagination_bg" class="wcps_color" id="wcps_slider_pagination_bg" value="<?php echo $wcps_slider_pagination_bg; ?>" />
396
 
397
+ <p class="option-info"><?php _e('Pagination Text Color',wcps_textdomain);?></p>
398
  <input type="text" name="wcps_slider_pagination_text_color" class="wcps_color" id="wcps_slider_pagination_text_color" value="<?php echo $wcps_slider_pagination_text_color; ?>" />
399
 
400
+ <p class="option-info"><?php _e('Pagination Number Counting',wcps_textdomain);?></p>
401
  <select name="wcps_slider_pagination_count">
402
+ <option value="false" <?php if(($wcps_slider_pagination_count=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
403
+ <option value="true" <?php if(($wcps_slider_pagination_count=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
404
 
405
  </select>
 
 
 
 
 
 
406
 
407
+
408
+
409
+ <p class="option-info"><?php _e('Pagination Slide Speed',wcps_textdomain);?></p>
410
+ <input type="text" placeholder="1000" id="wcps_pagination_slide_speed" name="wcps_pagination_slide_speed" value="<?php echo $wcps_pagination_slide_speed; ?>" />
411
+
412
+ <p class="option-info"><?php _e('Slider Touch Drag Enabled',wcps_textdomain);?></p>
 
 
 
 
 
 
 
 
 
 
413
 
414
 
415
  <select name="wcps_slider_touch_drag">
416
+ <option value="true" <?php if(($wcps_slider_touch_drag=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
417
+ <option value="false" <?php if(($wcps_slider_touch_drag=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
418
  </select>
419
+
420
+
421
+ <p class="option-info"><?php _e('Slider Mouse Drag Enabled',wcps_textdomain);?></p>
 
 
 
422
 
423
  <select name="wcps_slider_mouse_drag">
424
+ <option value="true" <?php if(($wcps_slider_mouse_drag=="true")) echo "selected"; ?> ><?php _e('True',wcps_textdomain);?></option>
425
+ <option value="false" <?php if(($wcps_slider_mouse_drag=="false")) echo "selected"; ?> ><?php _e('False',wcps_textdomain);?></option>
426
  </select>
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+ </div>
435
+
436
+
437
 
438
+
439
+
440
+
441
+
442
+
443
+
444
 
445
  </li>
446
  <li style="display: none;" class="box3 tab-box ">
447
  <div class="option-box">
448
+ <p class="option-title"><?php _e('Themes for slider',wcps_textdomain);?></p>
449
  <p class="option-info"></p>
450
  <select name="wcps_themes" >
451
  <?php
468
 
469
 
470
  <div class="option-box">
471
+ <p class="option-title"><?php _e('Slider ribbon',wcps_textdomain);?></p>
472
  <p class="option-info"></p>
473
  <?php
474
 
515
 
516
  ?>
517
 
518
+ <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; ?>" />
519
 
520
  <?php
521
 
539
 
540
 
541
  <div class="option-box">
542
+ <p class="option-title"><?php _e('Container options',wcps_textdomain); ?></p>
543
+ <p class="option-info"><?php _e('Padding: (ex: 10px)',wcps_textdomain); ?></p>
544
  <input type="text" placeholder="10px" name="wcps_container_padding" value="<?php echo $wcps_container_padding; ?>" />
545
 
546
+ <p class="option-info"><?php _e('Background color:',wcps_textdomain); ?></p>
547
  <input type="text" class="wcps_color" name="wcps_container_bg_color" value="<?php echo $wcps_container_bg_color; ?>" />
548
 
549
+ <p class="option-info"><?php _e('Background image:',wcps_textdomain); ?></p>
550
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/dark_embroidery.png" />
551
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/dimension.png" />
552
  <img class="bg_image_src" onClick="bg_img_src(this)" src="<?php echo wcps_plugin_url; ?>assets/global/images/bg/eight_horns.png" />
553
  <br />
554
+ <input type="text" id="wcps_bg_img" class="wcps_bg_img" name="wcps_bg_img" value="<?php echo $wcps_bg_img; ?>" /> <div onClick="clear_container_bg_image()" class="button clear-container-bg-image"> <?php _e('Clear',wcps_textdomain); ?></div>
555
 
556
  <script>
557
 
576
 
577
 
578
  <div class="option-box">
579
+ <p class="option-title"><?php _e('Items Options',wcps_textdomain); ?></p>
580
+ <p class="option-info"><?php _e('Items background color',wcps_textdomain); ?></p>
581
  <input type="text" class="wcps_color" name="wcps_items_bg_color" value="<?php echo $wcps_items_bg_color; ?>" />
582
 
583
+ <p class="option-info"><?php _e('Items padding',wcps_textdomain); ?></p>
584
  <input type="text" name="wcps_items_padding" placeholder="5px" value="<?php echo $wcps_items_padding; ?>" />
585
 
586
  </div>
590
 
591
  </li>
592
  <li style="display: none;" class="box4 tab-box ">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
593
 
594
+ <div class="option-box">
595
+ <p class="option-title"><?php _e('Total Number of Product', wcps_textdomain);?></p>
596
+ <p class="option-info"><?php _e('ex: 10, to display all product please use -1', wcps_textdomain);?></p>
597
+ <input type="text" placeholder="10" name="wcps_total_items" value="<?php echo $wcps_total_items; ?>" />
598
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
 
600
  <div class="option-box">
601
+ <p class="option-title"><?php _e('Query order', wcps_textdomain); ?></p>
602
  <p class="option-info"></p>
603
  <select name="wcps_query_order" >
604
+ <option value="DESC" <?php if($wcps_query_order=="DESC") echo "selected"; ?>><?php _e('Descending',wcps_textdomain);?></option>
605
+ <option value="ASC" <?php if($wcps_query_order=="ASC") echo "selected"; ?>><?php _e('Ascending ',wcps_textdomain);?></option>
 
606
 
607
  </select>
608
  </div>
613
 
614
 
615
  <div class="option-box">
616
+ <p class="option-title"><?php _e('Query orderBy',wcps_textdomain); ?></p>
617
  <p class="option-info"></p>
618
  <select name="wcps_query_orderby" >
619
+ <option value="none" <?php if($wcps_query_orderby=="none") echo "selected"; ?>><?php _e('None',wcps_textdomain);?></option>
620
+ <option value="ID" <?php if($wcps_query_orderby=="ID") echo "selected"; ?>><?php _e('ID',wcps_textdomain);?></option>
621
+ <option value="date" <?php if($wcps_query_orderby=="date") echo "selected"; ?>><?php _e('Date',wcps_textdomain);?></option>
622
+ <option value="rand" <?php if($wcps_query_orderby=="rand") echo "selected"; ?>><?php _e('Rand',wcps_textdomain);?></option>
623
+ <option value="comment_count" <?php if($wcps_query_orderby=="comment_count") echo "selected"; ?>><?php _e('Comment Count',wcps_textdomain);?></option>
624
+ <option value="author" <?php if($wcps_query_orderby=="author") echo "selected"; ?>><?php _e('Author',wcps_textdomain);?></option>
625
+ <option value="title" <?php if($wcps_query_orderby=="title") echo "selected"; ?>><?php _e('Title',wcps_textdomain);?></option>
626
+ <option value="name" <?php if($wcps_query_orderby=="name") echo "selected"; ?>><?php _e('Name',wcps_textdomain);?></option>
627
+ <option value="type" <?php if($wcps_query_orderby=="type") echo "selected"; ?>><?php _e('Type',wcps_textdomain);?></option>
628
 
629
 
630
  </select>
631
  </div>
632
 
633
+
634
  <div class="option-box">
635
+
636
+ <p class="option-info"><?php _e('Hide out of stock items',wcps_textdomain); ?></p>
637
+ <label><input <?php if($wcps_hide_out_of_stock=="yes") echo "checked";?> type="radio" name="wcps_hide_out_of_stock" value="yes" />Yes</label>
638
+ <label><input <?php if($wcps_hide_out_of_stock=="no") echo "checked";?> type="radio" name="wcps_hide_out_of_stock" value="no" />No</label>
 
 
639
 
640
+ <p class="option-info"><?php _e('Featured Product display', wcps_textdomain);?></p>
641
+ <label><input <?php if($wcps_product_featured=="yes") echo "checked";?> type="radio" name="wcps_product_featured" value="yes" />Yes</label>
642
+ <label><input <?php if($wcps_product_featured=="no") echo "checked";?> type="radio" name="wcps_product_featured" value="no" />No</label>
643
+
644
+ <p class="option-info"><?php _e('On Sale Product display', wcps_textdomain);?></p>
645
+ <label><input <?php if($wcps_product_on_sale=="yes") echo "checked";?> type="radio" name="wcps_product_on_sale" value="yes" />Yes</label>
646
+ <label><input <?php if($wcps_product_on_sale=="no") echo "checked";?> type="radio" name="wcps_product_on_sale" value="no" />No</label>
647
+
648
+
649
+
650
+ </div>
651
+
652
+
653
 
654
 
655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
 
657
+
658
+
659
+
660
+
661
+
662
+
663
 
664
+
 
 
665
 
666
+ </li>
667
+ <li style="display: none;" class="box5 tab-box">
668
+
669
+ <div class="option-box">
670
+ <p class="option-title"><?php _e('Slider items.', wcps_textdomain); ?></p>
671
+ <p class="option-info"></p>
672
+ <div class="button wcps_grid_items_reset" wcps_id="<?php echo $wcps_id; ?>"><?php _e('Reset', wcps_textdomain);?></div>
673
  <br /><br />
674
 
675
  <?php
698
 
699
 
700
  foreach($wcps_grid_items as $item_key=>$item_name){
701
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
702
 
703
+ ?>
704
+ <div class="item">
705
+ <div class="header">
706
+ <span class="move"><i class="fa fa-bars"></i></span>
707
+ <span class="expand"><i class="fa fa-expand"></i><i class="fa fa-compress"></i></span>
708
+ <span class="name"><?php echo $item_name; ?></span>
709
+ <input type="hidden" name="wcps_grid_items[<?php echo $item_key; ?>]" value="<?php echo $item_name; ?>" />
710
+ <?php
711
+
712
+ if(!empty($wcps_grid_items_hide[$item_key])){
713
+
714
+ $checked = 'checked';
715
+ }
716
+ else{
717
+ $checked = '';
718
+ }
719
+
720
+ ?>
721
+ <label><input <?php echo $checked; ?> type="checkbox" class="wcps_grid_items_hide" name="wcps_grid_items_hide[<?php echo $item_key; ?>]" value="1" />Hide on front-end</label>
722
+
723
+ </div> <!-- .header -->
724
+ <div class="options">
725
+ <?php
726
+
727
  if($item_key == 'thumb'){
728
 
729
  ?>
730
  <div class="option-box">
731
+ <p class="option-title"><?php _e('Slider Thumbnail Size', wcps_textdomain);?></p>
732
  <p class="option-info"></p>
733
+
734
+ <?php
735
+
736
+ $get_intermediate_image_sizes = get_intermediate_image_sizes();
737
+
738
+ $get_intermediate_image_sizes = array_merge($get_intermediate_image_sizes,array('full'));
739
+
740
+
741
+ //echo '<pre>'.var_export($get_intermediate_image_sizes, true).'</pre>';
742
+
743
+ ?>
744
+
745
+
746
  <select name="wcps_items_thumb_size" >
747
+
748
+
749
+ <?php
750
+
751
+
752
+
753
+ foreach($get_intermediate_image_sizes as $size_key){
754
+
755
+ ?>
756
+ <option value="<?php echo $size_key; ?>" <?php if($wcps_items_thumb_size==$size_key)echo "selected"; ?>>
757
+
758
+
759
+ <?php
760
+
761
+ $size_key = str_replace('_', ' ',$size_key);
762
+ $size_key = str_replace('-', ' ',$size_key);
763
+ $size_key = ucfirst($size_key);
764
+
765
+ echo $size_key;
766
+
767
+ ?>
768
+
769
+ </option>
770
+
771
+
772
+
773
+ <?php
774
+
775
+
776
+ }
777
+
778
+
779
+
780
+
781
+ ?>
782
+
783
+
784
+
785
+
786
+
787
+
788
 
789
  </select>
790
  </div>
791
 
792
 
793
  <div class="option-box">
794
+ <p class="option-title"><?php _e('Items thumbnail link\'s to', wcps_textdomain);?></p>
795
  <p class="option-info"></p>
796
  <select name="wcps_items_thumb_link_to" >
797
+ <option value="product" <?php if($wcps_items_thumb_link_to=="product")echo "selected"; ?>><?php _e('Product', wcps_textdomain);?></option>
798
+ <option value="category" <?php if($wcps_items_thumb_link_to=="category")echo "selected"; ?>><?php _e('Category', wcps_textdomain);?></option>
799
  </select>
800
  </div>
801
 
803
 
804
 
805
  <div class="option-box">
806
+ <p class="option-title"><?php _e('Slider thumb max hieght(px)', wcps_textdomain);?></p>
807
  <p class="option-info"></p>
808
  <input type="text" name="wcps_items_thumb_max_hieght" placeholder="14px" id="wcps_items_thumb_max_hieght" value="<?php echo $wcps_items_thumb_max_hieght; ?>" />
809
  </div>
810
 
811
  <div class="option-box">
812
+ <p class="option-title"><?php _e('Display Thumbnail Zoom button', wcps_textdomain);?></p>
813
  <p class="option-info"></p>
814
  <select name="wcps_items_thumb_zoom" >
815
+ <option value="no" <?php if($wcps_items_thumb_zoom=="no")echo "selected"; ?>><?php _e('No', wcps_textdomain);?></option>
816
+ <option value="yes" <?php if($wcps_items_thumb_zoom=="yes")echo "selected"; ?>><?php _e('Yes', wcps_textdomain);?></option>
817
 
818
  </select>
819
  </div>
820
 
821
 
822
+ <div class="option-box">
823
+ <p class="option-title"><?php _e('Empty Thumbnail', wcps_textdomain);?></p>
824
+ <p class="option-info"><?php _e('Custom thumbnail image url', wcps_textdomain);?></p>
825
+ <input type="text" name="wcps_items_empty_thumb" id="wcps_items_empty_thumb" value="<?php echo $wcps_items_empty_thumb; ?>" /><br /><br />
826
+ <input id="wcps_items_empty_thumb_upload" class="wcps_items_empty_thumb_upload button" type="button" value="Upload Image" />
827
+ <br /><br />
828
+
829
+
830
+ <?php
831
+ if(empty($wcps_items_empty_thumb))
832
+ {
833
+ ?>
834
+ <img class="wcps_items_empty_thumb_display" width="300px" src="<?php echo wcps_plugin_url.'assets/front/images/no-thumb.png'; ?>" />
835
+ <?php
836
+ }
837
+ else
838
+ {
839
+ ?>
840
+ <img class="wcps_items_empty_thumb_display" width="300px" src="<?php echo $wcps_items_empty_thumb; ?>" />
841
+ <?php
842
+ }
843
+ ?>
844
+
845
+
846
+
847
+
848
+
849
+ <script>
850
+ jQuery(document).ready(function($){
851
+
852
+ var custom_uploader;
853
+
854
+ jQuery('#wcps_items_empty_thumb_upload').click(function(e) {
855
+
856
+ e.preventDefault();
857
+
858
+ //If the uploader object has already been created, reopen the dialog
859
+ if (custom_uploader) {
860
+ custom_uploader.open();
861
+ return;
862
+ }
863
+
864
+ //Extend the wp.media object
865
+ custom_uploader = wp.media.frames.file_frame = wp.media({
866
+ title: 'Choose Image',
867
+ button: {
868
+ text: 'Choose Image'
869
+ },
870
+ multiple: false
871
+ });
872
+
873
+ //When a file is selected, grab the URL and set it as the text field's value
874
+ custom_uploader.on('select', function() {
875
+ attachment = custom_uploader.state().get('selection').first().toJSON();
876
+ jQuery('#wcps_items_empty_thumb').val(attachment.url);
877
+ jQuery('.wcps_items_empty_thumb_display').attr('src',attachment.url);
878
+ });
879
+
880
+ //Open the uploader dialog
881
+ custom_uploader.open();
882
+
883
+ });
884
+
885
+
886
+ })
887
+ </script>
888
+ </div>
889
+
890
+
891
+
892
+
893
  <?php
894
 
895
  }
897
 
898
  ?>
899
  <div class="option-box">
900
+ <p class="option-title"><?php _e('Items add to cart button Style', wcps_textdomain);?></p>
901
+ <p class="option-info"><?php _e('You can hide items add to cart button on slider.', wcps_textdomain);?></p>
902
  <select name="wcps_cart_style" >
903
+ <option value="default" <?php if($wcps_cart_style=="default")echo "selected"; ?>><?php _e('Default', wcps_textdomain);?></option>
904
+ <option value="custom" <?php if($wcps_cart_style=="custom")echo "selected"; ?>><?php _e('Custom', wcps_textdomain);?></option>
905
  </select>
906
  </div>
907
 
908
  <div class="option-box">
909
+ <p class="option-title"><?php _e('Add to cart background color', wcps_textdomain);?></p>
910
  <p class="option-info"></p>
911
  <input type="text" name="wcps_cart_bg" class="wcps_color" id="wcps_cart_bg" value="<?php echo $wcps_cart_bg; ?>" />
912
  </div>
913
 
914
  <div class="option-box">
915
+ <p class="option-title"><?php _e('Add to cart text color', wcps_textdomain);?></p>
916
  <p class="option-info"></p>
917
  <input type="text" name="wcps_cart_text_color" class="wcps_color" id="wcps_cart_text_color" value="<?php echo $wcps_cart_text_color; ?>" />
918
  </div>
919
 
920
  <div class="option-box">
921
+ <p class="option-title"><?php _e('Items cart text align', wcps_textdomain);?></p>
922
 
923
 
924
  <select name="wcps_cart_text_align" >
925
+ <option value="left" <?php if($wcps_cart_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
926
+ <option value="right" <?php if($wcps_cart_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
927
+ <option value="center" <?php if($wcps_cart_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
928
  </select>
929
 
930
  </div>
940
 
941
 
942
  <div class="option-box">
943
+ <p class="option-title"><?php _e('Sale marker icon url', wcps_textdomain);?></p>
944
  <p class="option-info"></p>
945
  <input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php echo $wcps_sale_icon_url; ?>" />
946
  </div>
959
 
960
 
961
  <div class="option-box">
962
+ <p class="option-title"><?php _e('Items Title Color', wcps_textdomain);?></p>
963
  <p class="option-info"></p>
964
  <input type="text" name="wcps_items_title_color" class="wcps_color" id="wcps_items_title_color" value="<?php echo $wcps_items_title_color; ?>" />
965
  </div>
966
  <div class="option-box">
967
+ <p class="option-title"><?php _e('Items Title Font Size', wcps_textdomain);?></p>
968
  <p class="option-info"></p>
969
  <input type="text" name="wcps_items_title_font_size" placeholder="14px" id="wcps_items_title_font_size" value="<?php echo $wcps_items_title_font_size; ?>" />
970
  </div>
971
 
972
 
973
  <div class="option-box">
974
+ <p class="option-title"><?php _e('Items Title Text Align', wcps_textdomain);?></p>
975
 
976
 
977
  <select name="wcps_items_title_text_align" >
978
+ <option value="left" <?php if($wcps_items_title_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
979
+ <option value="right" <?php if($wcps_items_title_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
980
+ <option value="center" <?php if($wcps_items_title_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
981
  </select>
982
 
983
  </div>
990
  ?>
991
 
992
  <div class="option-box">
993
+ <p class="option-title"><?php _e('Featured marker icon url', wcps_textdomain);?></p>
994
  <p class="option-info"></p>
995
  <input type="text" name="wcps_featured_icon_url" placeholder="" id="wcps_featured_icon_url" value="<?php echo $wcps_featured_icon_url; ?>" />
996
  </div>
1002
  ?>
1003
 
1004
  <div class="option-box">
1005
+ <p class="option-title"><?php _e('Price format on slider', wcps_textdomain);?></p>
1006
  <p class="option-info"></p>
1007
+ <select name="wcps_items_price_format">
1008
+ <option value="full" <?php if(($wcps_items_price_format=="full")) echo "selected"; ?> ><?php _e('Full Format', wcps_textdomain);?></option>
1009
+ <option value="sale" <?php if(($wcps_items_price_format=="sale")) echo "selected"; ?> ><?php _e('Sale price', wcps_textdomain);?></option>
1010
+ <option value="regular" <?php if(($wcps_items_price_format=="regular")) echo "selected"; ?> ><?php _e('Regular price', wcps_textdomain);?></option>
1011
  </select>
1012
 
1013
  </div>
1016
 
1017
 
1018
  <div class="option-box">
1019
+ <p class="option-title"><?php _e('Items price Color', wcps_textdomain);?></p>
1020
  <p class="option-info"></p>
1021
  <input type="text" name="wcps_items_price_color" class="wcps_color" id="wcps_items_price_color" value="<?php echo $wcps_items_price_color; ?>" />
1022
  </div>
1023
 
1024
  <div class="option-box">
1025
+ <p class="option-title"><?php _e('Items price font size', wcps_textdomain);?></p>
1026
  <p class="option-info"></p>
1027
  <input type="text" name="wcps_items_price_font_size" placeholder="14px" id="wcps_items_price_font_size" value="<?php echo $wcps_items_price_font_size; ?>" />
1028
  </div>
1030
 
1031
 
1032
  <div class="option-box">
1033
+ <p class="option-title"><?php _e('Price text align', wcps_textdomain);?></p>
1034
 
1035
 
1036
  <select name="wcps_items_price_text_align" >
1037
+ <option value="left" <?php if($wcps_items_price_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
1038
+ <option value="right" <?php if($wcps_items_price_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
1039
+ <option value="center" <?php if($wcps_items_price_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
1040
  </select>
1041
 
1042
  </div>
1055
  ?>
1056
 
1057
  <div class="option-box">
1058
+ <p class="option-title"><?php _e('Items rating text align', wcps_textdomain);?></p>
1059
 
1060
 
1061
  <select name="wcps_ratings_text_align" >
1062
+ <option value="left" <?php if($wcps_ratings_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
1063
+ <option value="right" <?php if($wcps_ratings_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
1064
+ <option value="center" <?php if($wcps_ratings_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
1065
  </select>
1066
 
1067
  </div>
1068
 
1069
 
1070
  <div class="option-box">
1071
+ <p class="option-title"><?php _e('Items ratings font size', wcps_textdomain);?></p>
1072
  <p class="option-info"></p>
1073
  <input type="text" name="wcps_items_ratings_font_size" placeholder="14px" id="wcps_items_ratings_font_size" value="<?php echo $wcps_items_ratings_font_size; ?>" />
1074
  </div>
1075
 
1076
 
1077
  <div class="option-box">
1078
+ <p class="option-title"><?php _e('Items ratings color', wcps_textdomain);?></p>
1079
  <p class="option-info"></p>
1080
  <input type="text" name="wcps_items_ratings_color" class="wcps_color" id="wcps_items_ratings_color" value="<?php echo $wcps_items_ratings_color; ?>" />
1081
  </div>
1092
 
1093
  ?>
1094
  <div class="option-box">
1095
+ <p class="option-title"><?php _e('Excerpt word count', wcps_textdomain);?></p>
1096
  <p class="option-info"></p>
1097
  <input type="text" name="wcps_items_excerpt_count" placeholder="30" id="wcps_items_excerpt_count" value="<?php echo $wcps_items_excerpt_count; ?>" />
1098
  </div>
1099
 
1100
  <div class="option-box">
1101
+ <p class="option-title"><?php _e('Excerpt read more text', wcps_textdomain);?></p>
1102
  <p class="option-info"></p>
1103
  <input type="text" name="wcps_items_excerpt_read_more" placeholder="View product." id="wcps_items_excerpt_read_more" value="<?php echo $wcps_items_excerpt_read_more; ?>" />
1104
  </div>
1105
 
1106
  <div class="option-box">
1107
+ <p class="option-title"><?php _e('Items excerpt font size', wcps_textdomain);?></p>
1108
  <p class="option-info"></p>
1109
  <input type="text" name="wcps_items_excerpt_font_size" placeholder="14px" id="wcps_items_excerpt_font_size" value="<?php echo $wcps_items_excerpt_font_size; ?>" />
1110
  </div>
1111
 
1112
 
1113
  <div class="option-box">
1114
+ <p class="option-title"><?php _e('Excerpt text align', wcps_textdomain);?></p>
1115
 
1116
 
1117
  <select name="wcps_items_excerpt_text_align" >
1118
+ <option value="left" <?php if($wcps_items_excerpt_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
1119
+ <option value="right" <?php if($wcps_items_excerpt_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
1120
+ <option value="center" <?php if($wcps_items_excerpt_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
 
1121
  </select>
1122
 
1123
  </div>
1124
 
1125
  <div class="option-box">
1126
+ <p class="option-title"><?php _e('Items excerpt font color', wcps_textdomain);?></p>
1127
  <p class="option-info"></p>
1128
+ <input type="text" class="wcps_color" name="wcps_items_excerpt_font_color" placeholder="" id="wcps_items_excerpt_font_color" value="<?php echo $wcps_items_excerpt_font_color; ?>" />
1129
  </div>
1130
 
1131
 
1145
 
1146
 
1147
  <div class="option-box">
1148
+ <p class="option-title"><?php _e('Items category font size', wcps_textdomain);?></p>
1149
  <p class="option-info"></p>
1150
  <input type="text" name="wcps_items_cat_font_size" placeholder="14px" id="wcps_items_cat_font_size" value="<?php echo $wcps_items_cat_font_size; ?>" />
1151
  </div>
1152
 
1153
 
1154
  <div class="option-box">
1155
+ <p class="option-title"><?php _e('Category text align', wcps_textdomain);?></p>
1156
 
1157
 
1158
  <select name="wcps_items_cat_text_align" >
1159
+ <option value="left" <?php if($wcps_items_cat_text_align=="left")echo "selected"; ?>><?php _e('Left', wcps_textdomain);?></option>
1160
+ <option value="right" <?php if($wcps_items_cat_text_align=="right")echo "selected"; ?>><?php _e('Right', wcps_textdomain);?></option>
1161
+ <option value="center" <?php if($wcps_items_cat_text_align=="center")echo "selected"; ?>><?php _e('Center', wcps_textdomain);?></option>
1162
  </select>
1163
 
1164
  </div>
1167
 
1168
 
1169
  <div class="option-box">
1170
+ <p class="option-title"><?php _e('Items category font color', wcps_textdomain);?></p>
1171
  <p class="option-info"></p>
1172
+ <input type="text" class="wcps_color" name="wcps_items_cat_font_color" placeholder="" id="wcps_items_cat_font_color" value="<?php echo $wcps_items_cat_font_color; ?>" />
1173
  </div>
1174
 
1175
 
1200
 
1201
  </div> <!-- .expandable -->
1202
 
1203
+ <script>
1204
+ jQuery(document).ready(function($)
1205
+ {
1206
+ $(function() {
1207
+ $( ".expandable" ).sortable({ handle: '.move' });
1208
+ //$( ".items" ).disableSelection();
1209
+ });
1210
+
1211
+ })
1212
 
1213
+ </script>
1214
 
1215
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1216
 
1217
+ </li>
1218
 
1219
+ <li style="display: none;" class="box6 tab-box">
1220
  <div class="option-box">
1221
+ <p class="option-title"><?php _e('Custom CSS for this slider.',wcps_textdomain); ?></p>
1222
+ <p class="option-info"><?php _e('Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, sometime you need use "!important" to overrid.',wcps_textdomain);?>
1223
  <br/>
1224
  <b>#wcps-<?php
1225
 
1300
 
1301
  $wcps_total_items = sanitize_text_field( $_POST['wcps_total_items'] );
1302
 
1303
+ $wcps_items_price_format = sanitize_text_field( $_POST['wcps_items_price_format'] );
1304
 
1305
  $wcps_column_number = sanitize_text_field( $_POST['wcps_column_number'] );
1306
  $wcps_column_number_mobile = sanitize_text_field( $_POST['wcps_column_number_mobile'] );
1439
  {
1440
  $wcps_slider_mouse_drag = sanitize_text_field( $_POST['wcps_slider_mouse_drag'] );
1441
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1442
 
1443
 
1444
+ $wcps_product_featured = sanitize_text_field( $_POST['wcps_product_featured'] );
1445
+ $wcps_product_on_sale = sanitize_text_field( $_POST['wcps_product_on_sale'] );
1446
 
1447
 
1448
  //$wcps_cat_display = sanitize_text_field( $_POST['wcps_cat_display'] );
1517
  update_post_meta( $post_id, 'wcps_themes', $wcps_themes );
1518
  update_post_meta( $post_id, 'wcps_total_items', $wcps_total_items );
1519
 
1520
+ update_post_meta( $post_id, 'wcps_items_price_format', $wcps_items_price_format );
1521
 
1522
  update_post_meta( $post_id, 'wcps_column_number', $wcps_column_number );
1523
  update_post_meta( $post_id, 'wcps_column_number_mobile', $wcps_column_number_mobile );
1546
  update_post_meta( $post_id, 'wcps_slider_animateout', $wcps_slider_animateout );
1547
  update_post_meta( $post_id, 'wcps_slider_animatein', $wcps_slider_animatein );
1548
 
1549
+ update_post_meta( $post_id, 'wcps_product_featured', $wcps_product_featured );
1550
+ update_post_meta( $post_id, 'wcps_product_on_sale', $wcps_product_on_sale );
1551
+
 
 
 
 
 
 
 
 
 
1552
 
1553
  //update_post_meta( $post_id, 'wcps_cat_display', $wcps_cat_display );
1554
  update_post_meta( $post_id, 'wcps_items_cat_font_size', $wcps_items_cat_font_size );
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: 2016-11-17 09:54+0600\n"
5
- "PO-Revision-Date: 2016-11-17 09:54+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.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,11 +17,11 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62 includes/meta.php:903
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:790
25
  msgid "Title"
26
  msgstr ""
27
 
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:914
33
  msgid "Category"
34
  msgstr ""
35
 
@@ -49,15 +49,19 @@ msgstr ""
49
  msgid "Sale"
50
  msgstr ""
51
 
 
 
 
 
52
  #: includes/class-settings.php:21
53
  msgid "Settings"
54
  msgstr ""
55
 
56
- #: includes/class-shortcodes.php:143
57
  msgid "No Product to Slide"
58
  msgstr ""
59
 
60
- #: includes/functions.php:84 includes/meta.php:299 includes/meta.php:310
61
  msgid "Shortcode"
62
  msgstr ""
63
 
@@ -73,7 +77,7 @@ msgstr ""
73
  msgid " Settings"
74
  msgstr ""
75
 
76
- #: includes/menu/settings.php:67 includes/meta.php:300
77
  msgid "Options"
78
  msgstr ""
79
 
@@ -85,11 +89,11 @@ msgstr ""
85
  msgid "Track product View"
86
  msgstr ""
87
 
88
- #: includes/menu/settings.php:81 includes/meta.php:802 includes/meta.php:931
89
  msgid "No"
90
  msgstr ""
91
 
92
- #: includes/menu/settings.php:82 includes/meta.php:932
93
  msgid "Yes"
94
  msgstr ""
95
 
@@ -170,550 +174,502 @@ msgstr ""
170
  msgid "Woocommerce Products Slider Options"
171
  msgstr ""
172
 
173
- #: includes/meta.php:301
 
 
 
 
174
  msgid "Style"
175
  msgstr ""
176
 
177
- #: includes/meta.php:302
178
- msgid "Content"
179
  msgstr ""
180
 
181
- #: includes/meta.php:303
 
 
 
 
182
  msgid "Custom CSS"
183
  msgstr ""
184
 
185
- #: includes/meta.php:312
186
  msgid ""
187
  "Copy this shortcode and paste on page or post where you want to display "
188
  "slider."
189
  msgstr ""
190
 
191
- #: includes/meta.php:314
192
  msgid "Use PHP code to your themes file to display slider."
193
  msgstr ""
194
 
195
- #: includes/meta.php:327
196
- msgid "Slider Total Items"
197
- msgstr ""
198
-
199
- #: includes/meta.php:328
200
- msgid "ex: 10"
201
  msgstr ""
202
 
203
- #: includes/meta.php:333
204
- msgid "Slider Column Number"
205
- msgstr ""
206
-
207
- #: includes/meta.php:335
208
  msgid "In Destop: (min:1000px and max)"
209
  msgstr ""
210
 
211
- #: includes/meta.php:338
212
  msgid "In Tablet & Small Desktop: (900px max width)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:341
216
  msgid "In Mobile: (479px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:349
220
  msgid "Slider Auto Play"
221
  msgstr ""
222
 
223
- #: includes/meta.php:354 includes/meta.php:360 includes/meta.php:366
224
- #: includes/meta.php:372 includes/meta.php:380 includes/meta.php:449
225
- #: includes/meta.php:460 includes/meta.php:483 includes/meta.php:498
226
- #: includes/meta.php:527 includes/meta.php:538
227
  msgid "True"
228
  msgstr ""
229
 
230
- #: includes/meta.php:355 includes/meta.php:361 includes/meta.php:367
231
- #: includes/meta.php:373 includes/meta.php:379 includes/meta.php:450
232
- #: includes/meta.php:461 includes/meta.php:484 includes/meta.php:497
233
- #: includes/meta.php:528 includes/meta.php:539
234
  msgid "False"
235
  msgstr ""
236
 
237
- #: includes/meta.php:358
238
  msgid "Slider rewind"
239
  msgstr ""
240
 
241
- #: includes/meta.php:364
242
  msgid "Slider loop"
243
  msgstr ""
244
 
245
- #: includes/meta.php:370
246
  msgid "Slider center"
247
  msgstr ""
248
 
249
- #: includes/meta.php:376
250
  msgid "RTL Enabled"
251
  msgstr ""
252
 
253
- #: includes/meta.php:386
254
  msgid "Animate Out"
255
  msgstr ""
256
 
257
- #: includes/meta.php:389 includes/meta.php:420
258
  msgid "fadeOut"
259
  msgstr ""
260
 
261
- #: includes/meta.php:390 includes/meta.php:421
262
  msgid "bounce"
263
  msgstr ""
264
 
265
- #: includes/meta.php:391 includes/meta.php:422
266
  msgid "flash"
267
  msgstr ""
268
 
269
- #: includes/meta.php:392 includes/meta.php:423
270
  msgid "pulse"
271
  msgstr ""
272
 
273
- #: includes/meta.php:395 includes/meta.php:425
274
  msgid "Shake"
275
  msgstr ""
276
 
277
- #: includes/meta.php:396 includes/meta.php:426
278
  msgid "Swing"
279
  msgstr ""
280
 
281
- #: includes/meta.php:397 includes/meta.php:427
282
  msgid "Tada"
283
  msgstr ""
284
 
285
- #: includes/meta.php:398 includes/meta.php:428
286
  msgid "Wobble"
287
  msgstr ""
288
 
289
- #: includes/meta.php:399 includes/meta.php:429
290
  msgid "flip"
291
  msgstr ""
292
 
293
- #: includes/meta.php:400 includes/meta.php:430
294
  msgid "flipInX"
295
  msgstr ""
296
 
297
- #: includes/meta.php:401 includes/meta.php:431
298
  msgid "flipInY"
299
  msgstr ""
300
 
301
- #: includes/meta.php:402 includes/meta.php:432
302
  msgid "fadeIn"
303
  msgstr ""
304
 
305
- #: includes/meta.php:403 includes/meta.php:433
306
  msgid "fadeInDown"
307
  msgstr ""
308
 
309
- #: includes/meta.php:404 includes/meta.php:434
310
  msgid "fadeInUp"
311
  msgstr ""
312
 
313
- #: includes/meta.php:405 includes/meta.php:435
314
  msgid "bounceIn"
315
  msgstr ""
316
 
317
- #: includes/meta.php:406 includes/meta.php:436
318
  msgid "bounceInDown"
319
  msgstr ""
320
 
321
- #: includes/meta.php:407 includes/meta.php:437
322
  msgid "bounceInUp"
323
  msgstr ""
324
 
325
- #: includes/meta.php:417
326
  msgid "Animate In"
327
  msgstr ""
328
 
329
- #: includes/meta.php:445
330
  msgid "Slider Stop on Hover"
331
  msgstr ""
332
 
333
- #: includes/meta.php:456
334
- msgid "Slider Navigation"
335
- msgstr ""
336
-
337
- #: includes/meta.php:457
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:465
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:467
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:468
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:469
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:479
358
- msgid "Slider Pagination"
359
  msgstr ""
360
 
361
- #: includes/meta.php:480
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:489
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:492
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:495
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:511
378
- msgid "Slide Speed"
379
- msgstr ""
380
-
381
- #: includes/meta.php:516
382
  msgid "Pagination Slide Speed"
383
  msgstr ""
384
 
385
- #: includes/meta.php:522
386
  msgid "Slider Touch Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:534
390
  msgid "Slider Mouse Drag Enabled"
391
  msgstr ""
392
 
393
- #: includes/meta.php:548
394
  msgid "Themes for slider"
395
  msgstr ""
396
 
397
- #: includes/meta.php:571
398
- msgid "Slider Ribbon"
399
  msgstr ""
400
 
401
- #: includes/meta.php:642
402
  msgid "Container options"
403
  msgstr ""
404
 
405
- #: includes/meta.php:643
406
  msgid "Padding: (ex: 10px)"
407
  msgstr ""
408
 
409
- #: includes/meta.php:646
410
  msgid "Background color:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:649
414
  msgid "Background image:"
415
  msgstr ""
416
 
417
- #: includes/meta.php:654
418
  msgid "Clear"
419
  msgstr ""
420
 
421
- #: includes/meta.php:679
422
  msgid "Items Options"
423
  msgstr ""
424
 
425
- #: includes/meta.php:680
426
- msgid "Items Background color"
427
  msgstr ""
428
 
429
- #: includes/meta.php:683
430
- msgid "Items Padding"
431
  msgstr ""
432
 
433
- #: includes/meta.php:695
434
- msgid "Empty Thumbnail"
435
  msgstr ""
436
 
437
- #: includes/meta.php:696
438
- msgid "Custom thumbnail image url"
439
  msgstr ""
440
 
441
- #: includes/meta.php:765
442
  msgid "Query order"
443
  msgstr ""
444
 
445
- #: includes/meta.php:768
446
  msgid "Descending"
447
  msgstr ""
448
 
449
- #: includes/meta.php:769
450
  msgid "Ascending "
451
  msgstr ""
452
 
453
- #: includes/meta.php:781
454
  msgid "Query orderBy"
455
  msgstr ""
456
 
457
- #: includes/meta.php:784
458
  msgid "None"
459
  msgstr ""
460
 
461
- #: includes/meta.php:785
462
  msgid "ID"
463
  msgstr ""
464
 
465
- #: includes/meta.php:786
466
  msgid "Date"
467
  msgstr ""
468
 
469
- #: includes/meta.php:787
470
  msgid "Rand"
471
  msgstr ""
472
 
473
- #: includes/meta.php:788
474
  msgid "Comment Count"
475
  msgstr ""
476
 
477
- #: includes/meta.php:789
478
  msgid "Author"
479
  msgstr ""
480
 
481
- #: includes/meta.php:791
482
  msgid "Name"
483
  msgstr ""
484
 
485
- #: includes/meta.php:792
486
  msgid "Type"
487
  msgstr ""
488
 
489
- #: includes/meta.php:799
490
  msgid "Hide out of stock items"
491
  msgstr ""
492
 
493
- #: includes/meta.php:803
494
- msgid "Yes "
495
- msgstr ""
496
-
497
- #: includes/meta.php:812
498
- msgid "Filter Slider Content."
499
- msgstr ""
500
-
501
- #: includes/meta.php:815
502
- msgid "Display from <b>Recent</b> Published"
503
- msgstr ""
504
-
505
- #: includes/meta.php:816
506
- msgid "Slider items will query from recent published product."
507
- msgstr ""
508
-
509
- #: includes/meta.php:819
510
- msgid "Display from <b>Featured</b> Product"
511
  msgstr ""
512
 
513
- #: includes/meta.php:820
514
- msgid "Slider items will query from featured marked product."
515
  msgstr ""
516
 
517
- #: includes/meta.php:823
518
- msgid "Display from Only <b>Year</b>"
519
- msgstr ""
520
-
521
- #: includes/meta.php:825
522
- msgid "Slider items will query from a year."
523
- msgstr ""
524
-
525
- #: includes/meta.php:830
526
- msgid "Display from <b>Month</b>"
527
- msgstr ""
528
-
529
- #: includes/meta.php:831
530
- msgid "Slider items will query from Month of a year."
531
- msgstr ""
532
-
533
- #: includes/meta.php:843
534
- msgid "Items sort."
535
  msgstr ""
536
 
537
- #: includes/meta.php:844
538
- msgid "Click each items to expand."
539
- msgstr ""
540
-
541
- #: includes/meta.php:845
542
  msgid "Reset"
543
  msgstr ""
544
 
545
- #: includes/meta.php:897
546
  msgid "Slider Thumbnail Size"
547
  msgstr ""
548
 
549
- #: includes/meta.php:900
550
- msgid "Full"
551
- msgstr ""
552
-
553
- #: includes/meta.php:901
554
- msgid "Large"
555
- msgstr ""
556
-
557
- #: includes/meta.php:902
558
- msgid "Medium"
559
- msgstr ""
560
-
561
- #: includes/meta.php:910
562
  msgid "Items thumbnail link's to"
563
  msgstr ""
564
 
565
- #: includes/meta.php:913
566
  msgid "Product"
567
  msgstr ""
568
 
569
- #: includes/meta.php:922
570
  msgid "Slider thumb max hieght(px)"
571
  msgstr ""
572
 
573
- #: includes/meta.php:928
574
  msgid "Display Thumbnail Zoom button"
575
  msgstr ""
576
 
577
- #: includes/meta.php:945
578
- msgid "Items Add to cart button Style"
 
 
 
 
 
 
 
 
579
  msgstr ""
580
 
581
- #: includes/meta.php:946
582
- msgid "You can hide items Add to cart button on slider."
583
  msgstr ""
584
 
585
- #: includes/meta.php:948
586
  msgid "Default"
587
  msgstr ""
588
 
589
- #: includes/meta.php:949
590
  msgid "Custom"
591
  msgstr ""
592
 
593
- #: includes/meta.php:954
594
- msgid "Add to cart Background Color"
595
  msgstr ""
596
 
597
- #: includes/meta.php:960
598
- msgid "Add to cart Text Color"
599
  msgstr ""
600
 
601
- #: includes/meta.php:966
602
- msgid "Items Cart Text Align"
603
  msgstr ""
604
 
605
- #: includes/meta.php:970 includes/meta.php:1023 includes/meta.php:1082
606
- #: includes/meta.php:1107 includes/meta.php:1163 includes/meta.php:1205
607
  msgid "Left"
608
  msgstr ""
609
 
610
- #: includes/meta.php:971 includes/meta.php:1024 includes/meta.php:1083
611
- #: includes/meta.php:1108 includes/meta.php:1164 includes/meta.php:1206
612
  msgid "Right"
613
  msgstr ""
614
 
615
- #: includes/meta.php:972 includes/meta.php:1025 includes/meta.php:1084
616
- #: includes/meta.php:1109 includes/meta.php:1166 includes/meta.php:1207
617
  msgid "Center"
618
  msgstr ""
619
 
620
- #: includes/meta.php:988
621
  msgid "Sale marker icon url"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1007
625
  msgid "Items Title Color"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1012
629
  msgid "Items Title Font Size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1019
633
  msgid "Items Title Text Align"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1038
637
  msgid "Featured marker icon url"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1050
641
  msgid "Price format on slider"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1053
645
  msgid "Full Format"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1054
649
  msgid "Sale price"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1055
653
  msgid "Regular price"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1064
657
- msgid "Items Price Color"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1070
661
- msgid "Items price Font Size"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1078
665
- msgid "Price Text Align"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1103
669
- msgid "Items Rating Text Align"
670
  msgstr ""
671
 
672
- #: includes/meta.php:1116
673
- msgid "Items ratings Font Size"
674
  msgstr ""
675
 
676
- #: includes/meta.php:1123
677
- msgid "Items Ratings Color"
678
  msgstr ""
679
 
680
- #: includes/meta.php:1140
681
  msgid "Excerpt word count"
682
  msgstr ""
683
 
684
- #: includes/meta.php:1146
685
  msgid "Excerpt read more text"
686
  msgstr ""
687
 
688
- #: includes/meta.php:1152
689
- msgid "Items Excerpt Font Size"
690
  msgstr ""
691
 
692
- #: includes/meta.php:1159
693
- msgid "Excerpt Text Align"
694
  msgstr ""
695
 
696
- #: includes/meta.php:1172
697
- msgid "Items Excerpt Font color"
698
  msgstr ""
699
 
700
- #: includes/meta.php:1194
701
- msgid "Items Category Font Size"
702
  msgstr ""
703
 
704
- #: includes/meta.php:1201
705
- msgid "Category Text Align"
706
  msgstr ""
707
 
708
- #: includes/meta.php:1216
709
- msgid "Items Category Font color"
710
  msgstr ""
711
 
712
- #: includes/meta.php:1271
713
  msgid "Custom CSS for this slider."
714
  msgstr ""
715
 
716
- #: includes/meta.php:1272
717
  msgid ""
718
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
719
  "sometime you need use \"!important\" to overrid."
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
  "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
 
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
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
  msgid " Settings"
78
  msgstr ""
79
 
80
+ #: includes/menu/settings.php:67 includes/meta.php:221
81
  msgid "Options"
82
  msgstr ""
83
 
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
 
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."
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: 2016-11-17 09:54+0600\n"
5
- "PO-Revision-Date: 2016-11-17 09:54+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.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,11 +17,11 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62 includes/meta.php:903
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:790
25
  msgid "Title"
26
  msgstr ""
27
 
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:914
33
  msgid "Category"
34
  msgstr ""
35
 
@@ -49,15 +49,19 @@ msgstr ""
49
  msgid "Sale"
50
  msgstr ""
51
 
 
 
 
 
52
  #: includes/class-settings.php:21
53
  msgid "Settings"
54
  msgstr ""
55
 
56
- #: includes/class-shortcodes.php:143
57
  msgid "No Product to Slide"
58
  msgstr ""
59
 
60
- #: includes/functions.php:84 includes/meta.php:299 includes/meta.php:310
61
  msgid "Shortcode"
62
  msgstr ""
63
 
@@ -73,7 +77,7 @@ msgstr ""
73
  msgid " Settings"
74
  msgstr ""
75
 
76
- #: includes/menu/settings.php:67 includes/meta.php:300
77
  msgid "Options"
78
  msgstr ""
79
 
@@ -85,11 +89,11 @@ msgstr ""
85
  msgid "Track product View"
86
  msgstr ""
87
 
88
- #: includes/menu/settings.php:81 includes/meta.php:802 includes/meta.php:931
89
  msgid "No"
90
  msgstr ""
91
 
92
- #: includes/menu/settings.php:82 includes/meta.php:932
93
  msgid "Yes"
94
  msgstr ""
95
 
@@ -170,550 +174,502 @@ msgstr ""
170
  msgid "Woocommerce Products Slider Options"
171
  msgstr ""
172
 
173
- #: includes/meta.php:301
 
 
 
 
174
  msgid "Style"
175
  msgstr ""
176
 
177
- #: includes/meta.php:302
178
- msgid "Content"
179
  msgstr ""
180
 
181
- #: includes/meta.php:303
 
 
 
 
182
  msgid "Custom CSS"
183
  msgstr ""
184
 
185
- #: includes/meta.php:312
186
  msgid ""
187
  "Copy this shortcode and paste on page or post where you want to display "
188
  "slider."
189
  msgstr ""
190
 
191
- #: includes/meta.php:314
192
  msgid "Use PHP code to your themes file to display slider."
193
  msgstr ""
194
 
195
- #: includes/meta.php:327
196
- msgid "Slider Total Items"
197
- msgstr ""
198
-
199
- #: includes/meta.php:328
200
- msgid "ex: 10"
201
  msgstr ""
202
 
203
- #: includes/meta.php:333
204
- msgid "Slider Column Number"
205
- msgstr ""
206
-
207
- #: includes/meta.php:335
208
  msgid "In Destop: (min:1000px and max)"
209
  msgstr ""
210
 
211
- #: includes/meta.php:338
212
  msgid "In Tablet & Small Desktop: (900px max width)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:341
216
  msgid "In Mobile: (479px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:349
220
  msgid "Slider Auto Play"
221
  msgstr ""
222
 
223
- #: includes/meta.php:354 includes/meta.php:360 includes/meta.php:366
224
- #: includes/meta.php:372 includes/meta.php:380 includes/meta.php:449
225
- #: includes/meta.php:460 includes/meta.php:483 includes/meta.php:498
226
- #: includes/meta.php:527 includes/meta.php:538
227
  msgid "True"
228
  msgstr ""
229
 
230
- #: includes/meta.php:355 includes/meta.php:361 includes/meta.php:367
231
- #: includes/meta.php:373 includes/meta.php:379 includes/meta.php:450
232
- #: includes/meta.php:461 includes/meta.php:484 includes/meta.php:497
233
- #: includes/meta.php:528 includes/meta.php:539
234
  msgid "False"
235
  msgstr ""
236
 
237
- #: includes/meta.php:358
238
  msgid "Slider rewind"
239
  msgstr ""
240
 
241
- #: includes/meta.php:364
242
  msgid "Slider loop"
243
  msgstr ""
244
 
245
- #: includes/meta.php:370
246
  msgid "Slider center"
247
  msgstr ""
248
 
249
- #: includes/meta.php:376
250
  msgid "RTL Enabled"
251
  msgstr ""
252
 
253
- #: includes/meta.php:386
254
  msgid "Animate Out"
255
  msgstr ""
256
 
257
- #: includes/meta.php:389 includes/meta.php:420
258
  msgid "fadeOut"
259
  msgstr ""
260
 
261
- #: includes/meta.php:390 includes/meta.php:421
262
  msgid "bounce"
263
  msgstr ""
264
 
265
- #: includes/meta.php:391 includes/meta.php:422
266
  msgid "flash"
267
  msgstr ""
268
 
269
- #: includes/meta.php:392 includes/meta.php:423
270
  msgid "pulse"
271
  msgstr ""
272
 
273
- #: includes/meta.php:395 includes/meta.php:425
274
  msgid "Shake"
275
  msgstr ""
276
 
277
- #: includes/meta.php:396 includes/meta.php:426
278
  msgid "Swing"
279
  msgstr ""
280
 
281
- #: includes/meta.php:397 includes/meta.php:427
282
  msgid "Tada"
283
  msgstr ""
284
 
285
- #: includes/meta.php:398 includes/meta.php:428
286
  msgid "Wobble"
287
  msgstr ""
288
 
289
- #: includes/meta.php:399 includes/meta.php:429
290
  msgid "flip"
291
  msgstr ""
292
 
293
- #: includes/meta.php:400 includes/meta.php:430
294
  msgid "flipInX"
295
  msgstr ""
296
 
297
- #: includes/meta.php:401 includes/meta.php:431
298
  msgid "flipInY"
299
  msgstr ""
300
 
301
- #: includes/meta.php:402 includes/meta.php:432
302
  msgid "fadeIn"
303
  msgstr ""
304
 
305
- #: includes/meta.php:403 includes/meta.php:433
306
  msgid "fadeInDown"
307
  msgstr ""
308
 
309
- #: includes/meta.php:404 includes/meta.php:434
310
  msgid "fadeInUp"
311
  msgstr ""
312
 
313
- #: includes/meta.php:405 includes/meta.php:435
314
  msgid "bounceIn"
315
  msgstr ""
316
 
317
- #: includes/meta.php:406 includes/meta.php:436
318
  msgid "bounceInDown"
319
  msgstr ""
320
 
321
- #: includes/meta.php:407 includes/meta.php:437
322
  msgid "bounceInUp"
323
  msgstr ""
324
 
325
- #: includes/meta.php:417
326
  msgid "Animate In"
327
  msgstr ""
328
 
329
- #: includes/meta.php:445
330
  msgid "Slider Stop on Hover"
331
  msgstr ""
332
 
333
- #: includes/meta.php:456
334
- msgid "Slider Navigation"
335
- msgstr ""
336
-
337
- #: includes/meta.php:457
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:465
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:467
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:468
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:469
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:479
358
- msgid "Slider Pagination"
359
  msgstr ""
360
 
361
- #: includes/meta.php:480
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:489
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:492
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:495
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:511
378
- msgid "Slide Speed"
379
- msgstr ""
380
-
381
- #: includes/meta.php:516
382
  msgid "Pagination Slide Speed"
383
  msgstr ""
384
 
385
- #: includes/meta.php:522
386
  msgid "Slider Touch Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:534
390
  msgid "Slider Mouse Drag Enabled"
391
  msgstr ""
392
 
393
- #: includes/meta.php:548
394
  msgid "Themes for slider"
395
  msgstr ""
396
 
397
- #: includes/meta.php:571
398
- msgid "Slider Ribbon"
399
  msgstr ""
400
 
401
- #: includes/meta.php:642
402
  msgid "Container options"
403
  msgstr ""
404
 
405
- #: includes/meta.php:643
406
  msgid "Padding: (ex: 10px)"
407
  msgstr ""
408
 
409
- #: includes/meta.php:646
410
  msgid "Background color:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:649
414
  msgid "Background image:"
415
  msgstr ""
416
 
417
- #: includes/meta.php:654
418
  msgid "Clear"
419
  msgstr ""
420
 
421
- #: includes/meta.php:679
422
  msgid "Items Options"
423
  msgstr ""
424
 
425
- #: includes/meta.php:680
426
- msgid "Items Background color"
427
  msgstr ""
428
 
429
- #: includes/meta.php:683
430
- msgid "Items Padding"
431
  msgstr ""
432
 
433
- #: includes/meta.php:695
434
- msgid "Empty Thumbnail"
435
  msgstr ""
436
 
437
- #: includes/meta.php:696
438
- msgid "Custom thumbnail image url"
439
  msgstr ""
440
 
441
- #: includes/meta.php:765
442
  msgid "Query order"
443
  msgstr ""
444
 
445
- #: includes/meta.php:768
446
  msgid "Descending"
447
  msgstr ""
448
 
449
- #: includes/meta.php:769
450
  msgid "Ascending "
451
  msgstr ""
452
 
453
- #: includes/meta.php:781
454
  msgid "Query orderBy"
455
  msgstr ""
456
 
457
- #: includes/meta.php:784
458
  msgid "None"
459
  msgstr ""
460
 
461
- #: includes/meta.php:785
462
  msgid "ID"
463
  msgstr ""
464
 
465
- #: includes/meta.php:786
466
  msgid "Date"
467
  msgstr ""
468
 
469
- #: includes/meta.php:787
470
  msgid "Rand"
471
  msgstr ""
472
 
473
- #: includes/meta.php:788
474
  msgid "Comment Count"
475
  msgstr ""
476
 
477
- #: includes/meta.php:789
478
  msgid "Author"
479
  msgstr ""
480
 
481
- #: includes/meta.php:791
482
  msgid "Name"
483
  msgstr ""
484
 
485
- #: includes/meta.php:792
486
  msgid "Type"
487
  msgstr ""
488
 
489
- #: includes/meta.php:799
490
  msgid "Hide out of stock items"
491
  msgstr ""
492
 
493
- #: includes/meta.php:803
494
- msgid "Yes "
495
- msgstr ""
496
-
497
- #: includes/meta.php:812
498
- msgid "Filter Slider Content."
499
- msgstr ""
500
-
501
- #: includes/meta.php:815
502
- msgid "Display from <b>Recent</b> Published"
503
- msgstr ""
504
-
505
- #: includes/meta.php:816
506
- msgid "Slider items will query from recent published product."
507
- msgstr ""
508
-
509
- #: includes/meta.php:819
510
- msgid "Display from <b>Featured</b> Product"
511
  msgstr ""
512
 
513
- #: includes/meta.php:820
514
- msgid "Slider items will query from featured marked product."
515
  msgstr ""
516
 
517
- #: includes/meta.php:823
518
- msgid "Display from Only <b>Year</b>"
519
- msgstr ""
520
-
521
- #: includes/meta.php:825
522
- msgid "Slider items will query from a year."
523
- msgstr ""
524
-
525
- #: includes/meta.php:830
526
- msgid "Display from <b>Month</b>"
527
- msgstr ""
528
-
529
- #: includes/meta.php:831
530
- msgid "Slider items will query from Month of a year."
531
- msgstr ""
532
-
533
- #: includes/meta.php:843
534
- msgid "Items sort."
535
  msgstr ""
536
 
537
- #: includes/meta.php:844
538
- msgid "Click each items to expand."
539
- msgstr ""
540
-
541
- #: includes/meta.php:845
542
  msgid "Reset"
543
  msgstr ""
544
 
545
- #: includes/meta.php:897
546
  msgid "Slider Thumbnail Size"
547
  msgstr ""
548
 
549
- #: includes/meta.php:900
550
- msgid "Full"
551
- msgstr ""
552
-
553
- #: includes/meta.php:901
554
- msgid "Large"
555
- msgstr ""
556
-
557
- #: includes/meta.php:902
558
- msgid "Medium"
559
- msgstr ""
560
-
561
- #: includes/meta.php:910
562
  msgid "Items thumbnail link's to"
563
  msgstr ""
564
 
565
- #: includes/meta.php:913
566
  msgid "Product"
567
  msgstr ""
568
 
569
- #: includes/meta.php:922
570
  msgid "Slider thumb max hieght(px)"
571
  msgstr ""
572
 
573
- #: includes/meta.php:928
574
  msgid "Display Thumbnail Zoom button"
575
  msgstr ""
576
 
577
- #: includes/meta.php:945
578
- msgid "Items Add to cart button Style"
 
 
 
 
 
 
 
 
579
  msgstr ""
580
 
581
- #: includes/meta.php:946
582
- msgid "You can hide items Add to cart button on slider."
583
  msgstr ""
584
 
585
- #: includes/meta.php:948
586
  msgid "Default"
587
  msgstr ""
588
 
589
- #: includes/meta.php:949
590
  msgid "Custom"
591
  msgstr ""
592
 
593
- #: includes/meta.php:954
594
- msgid "Add to cart Background Color"
595
  msgstr ""
596
 
597
- #: includes/meta.php:960
598
- msgid "Add to cart Text Color"
599
  msgstr ""
600
 
601
- #: includes/meta.php:966
602
- msgid "Items Cart Text Align"
603
  msgstr ""
604
 
605
- #: includes/meta.php:970 includes/meta.php:1023 includes/meta.php:1082
606
- #: includes/meta.php:1107 includes/meta.php:1163 includes/meta.php:1205
607
  msgid "Left"
608
  msgstr ""
609
 
610
- #: includes/meta.php:971 includes/meta.php:1024 includes/meta.php:1083
611
- #: includes/meta.php:1108 includes/meta.php:1164 includes/meta.php:1206
612
  msgid "Right"
613
  msgstr ""
614
 
615
- #: includes/meta.php:972 includes/meta.php:1025 includes/meta.php:1084
616
- #: includes/meta.php:1109 includes/meta.php:1166 includes/meta.php:1207
617
  msgid "Center"
618
  msgstr ""
619
 
620
- #: includes/meta.php:988
621
  msgid "Sale marker icon url"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1007
625
  msgid "Items Title Color"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1012
629
  msgid "Items Title Font Size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1019
633
  msgid "Items Title Text Align"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1038
637
  msgid "Featured marker icon url"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1050
641
  msgid "Price format on slider"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1053
645
  msgid "Full Format"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1054
649
  msgid "Sale price"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1055
653
  msgid "Regular price"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1064
657
- msgid "Items Price Color"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1070
661
- msgid "Items price Font Size"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1078
665
- msgid "Price Text Align"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1103
669
- msgid "Items Rating Text Align"
670
  msgstr ""
671
 
672
- #: includes/meta.php:1116
673
- msgid "Items ratings Font Size"
674
  msgstr ""
675
 
676
- #: includes/meta.php:1123
677
- msgid "Items Ratings Color"
678
  msgstr ""
679
 
680
- #: includes/meta.php:1140
681
  msgid "Excerpt word count"
682
  msgstr ""
683
 
684
- #: includes/meta.php:1146
685
  msgid "Excerpt read more text"
686
  msgstr ""
687
 
688
- #: includes/meta.php:1152
689
- msgid "Items Excerpt Font Size"
690
  msgstr ""
691
 
692
- #: includes/meta.php:1159
693
- msgid "Excerpt Text Align"
694
  msgstr ""
695
 
696
- #: includes/meta.php:1172
697
- msgid "Items Excerpt Font color"
698
  msgstr ""
699
 
700
- #: includes/meta.php:1194
701
- msgid "Items Category Font Size"
702
  msgstr ""
703
 
704
- #: includes/meta.php:1201
705
- msgid "Category Text Align"
706
  msgstr ""
707
 
708
- #: includes/meta.php:1216
709
- msgid "Items Category Font color"
710
  msgstr ""
711
 
712
- #: includes/meta.php:1271
713
  msgid "Custom CSS for this slider."
714
  msgstr ""
715
 
716
- #: includes/meta.php:1272
717
  msgid ""
718
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
719
  "sometime you need use \"!important\" to overrid."
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
  "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
 
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
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
  msgid " Settings"
78
  msgstr ""
79
 
80
+ #: includes/menu/settings.php:67 includes/meta.php:221
81
  msgid "Options"
82
  msgstr ""
83
 
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
 
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."
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: 2016-11-17 09:54+0600\n"
5
- "PO-Revision-Date: 2016-11-17 09:54+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.9\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -17,11 +17,11 @@ msgstr ""
17
  "X-Poedit-SearchPath-1: includes\n"
18
  "X-Poedit-SearchPath-2: templates\n"
19
 
20
- #: includes/class-functions.php:62 includes/meta.php:903
21
  msgid "Thumbnail"
22
  msgstr ""
23
 
24
- #: includes/class-functions.php:63 includes/meta.php:790
25
  msgid "Title"
26
  msgstr ""
27
 
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
- #: includes/class-functions.php:65 includes/meta.php:914
33
  msgid "Category"
34
  msgstr ""
35
 
@@ -49,15 +49,19 @@ msgstr ""
49
  msgid "Sale"
50
  msgstr ""
51
 
 
 
 
 
52
  #: includes/class-settings.php:21
53
  msgid "Settings"
54
  msgstr ""
55
 
56
- #: includes/class-shortcodes.php:143
57
  msgid "No Product to Slide"
58
  msgstr ""
59
 
60
- #: includes/functions.php:84 includes/meta.php:299 includes/meta.php:310
61
  msgid "Shortcode"
62
  msgstr ""
63
 
@@ -73,7 +77,7 @@ msgstr ""
73
  msgid " Settings"
74
  msgstr ""
75
 
76
- #: includes/menu/settings.php:67 includes/meta.php:300
77
  msgid "Options"
78
  msgstr ""
79
 
@@ -85,11 +89,11 @@ msgstr ""
85
  msgid "Track product View"
86
  msgstr ""
87
 
88
- #: includes/menu/settings.php:81 includes/meta.php:802 includes/meta.php:931
89
  msgid "No"
90
  msgstr ""
91
 
92
- #: includes/menu/settings.php:82 includes/meta.php:932
93
  msgid "Yes"
94
  msgstr ""
95
 
@@ -170,550 +174,502 @@ msgstr ""
170
  msgid "Woocommerce Products Slider Options"
171
  msgstr ""
172
 
173
- #: includes/meta.php:301
 
 
 
 
174
  msgid "Style"
175
  msgstr ""
176
 
177
- #: includes/meta.php:302
178
- msgid "Content"
179
  msgstr ""
180
 
181
- #: includes/meta.php:303
 
 
 
 
182
  msgid "Custom CSS"
183
  msgstr ""
184
 
185
- #: includes/meta.php:312
186
  msgid ""
187
  "Copy this shortcode and paste on page or post where you want to display "
188
  "slider."
189
  msgstr ""
190
 
191
- #: includes/meta.php:314
192
  msgid "Use PHP code to your themes file to display slider."
193
  msgstr ""
194
 
195
- #: includes/meta.php:327
196
- msgid "Slider Total Items"
197
- msgstr ""
198
-
199
- #: includes/meta.php:328
200
- msgid "ex: 10"
201
  msgstr ""
202
 
203
- #: includes/meta.php:333
204
- msgid "Slider Column Number"
205
- msgstr ""
206
-
207
- #: includes/meta.php:335
208
  msgid "In Destop: (min:1000px and max)"
209
  msgstr ""
210
 
211
- #: includes/meta.php:338
212
  msgid "In Tablet & Small Desktop: (900px max width)"
213
  msgstr ""
214
 
215
- #: includes/meta.php:341
216
  msgid "In Mobile: (479px max width)"
217
  msgstr ""
218
 
219
- #: includes/meta.php:349
220
  msgid "Slider Auto Play"
221
  msgstr ""
222
 
223
- #: includes/meta.php:354 includes/meta.php:360 includes/meta.php:366
224
- #: includes/meta.php:372 includes/meta.php:380 includes/meta.php:449
225
- #: includes/meta.php:460 includes/meta.php:483 includes/meta.php:498
226
- #: includes/meta.php:527 includes/meta.php:538
227
  msgid "True"
228
  msgstr ""
229
 
230
- #: includes/meta.php:355 includes/meta.php:361 includes/meta.php:367
231
- #: includes/meta.php:373 includes/meta.php:379 includes/meta.php:450
232
- #: includes/meta.php:461 includes/meta.php:484 includes/meta.php:497
233
- #: includes/meta.php:528 includes/meta.php:539
234
  msgid "False"
235
  msgstr ""
236
 
237
- #: includes/meta.php:358
238
  msgid "Slider rewind"
239
  msgstr ""
240
 
241
- #: includes/meta.php:364
242
  msgid "Slider loop"
243
  msgstr ""
244
 
245
- #: includes/meta.php:370
246
  msgid "Slider center"
247
  msgstr ""
248
 
249
- #: includes/meta.php:376
250
  msgid "RTL Enabled"
251
  msgstr ""
252
 
253
- #: includes/meta.php:386
254
  msgid "Animate Out"
255
  msgstr ""
256
 
257
- #: includes/meta.php:389 includes/meta.php:420
258
  msgid "fadeOut"
259
  msgstr ""
260
 
261
- #: includes/meta.php:390 includes/meta.php:421
262
  msgid "bounce"
263
  msgstr ""
264
 
265
- #: includes/meta.php:391 includes/meta.php:422
266
  msgid "flash"
267
  msgstr ""
268
 
269
- #: includes/meta.php:392 includes/meta.php:423
270
  msgid "pulse"
271
  msgstr ""
272
 
273
- #: includes/meta.php:395 includes/meta.php:425
274
  msgid "Shake"
275
  msgstr ""
276
 
277
- #: includes/meta.php:396 includes/meta.php:426
278
  msgid "Swing"
279
  msgstr ""
280
 
281
- #: includes/meta.php:397 includes/meta.php:427
282
  msgid "Tada"
283
  msgstr ""
284
 
285
- #: includes/meta.php:398 includes/meta.php:428
286
  msgid "Wobble"
287
  msgstr ""
288
 
289
- #: includes/meta.php:399 includes/meta.php:429
290
  msgid "flip"
291
  msgstr ""
292
 
293
- #: includes/meta.php:400 includes/meta.php:430
294
  msgid "flipInX"
295
  msgstr ""
296
 
297
- #: includes/meta.php:401 includes/meta.php:431
298
  msgid "flipInY"
299
  msgstr ""
300
 
301
- #: includes/meta.php:402 includes/meta.php:432
302
  msgid "fadeIn"
303
  msgstr ""
304
 
305
- #: includes/meta.php:403 includes/meta.php:433
306
  msgid "fadeInDown"
307
  msgstr ""
308
 
309
- #: includes/meta.php:404 includes/meta.php:434
310
  msgid "fadeInUp"
311
  msgstr ""
312
 
313
- #: includes/meta.php:405 includes/meta.php:435
314
  msgid "bounceIn"
315
  msgstr ""
316
 
317
- #: includes/meta.php:406 includes/meta.php:436
318
  msgid "bounceInDown"
319
  msgstr ""
320
 
321
- #: includes/meta.php:407 includes/meta.php:437
322
  msgid "bounceInUp"
323
  msgstr ""
324
 
325
- #: includes/meta.php:417
326
  msgid "Animate In"
327
  msgstr ""
328
 
329
- #: includes/meta.php:445
330
  msgid "Slider Stop on Hover"
331
  msgstr ""
332
 
333
- #: includes/meta.php:456
334
- msgid "Slider Navigation"
335
- msgstr ""
336
-
337
- #: includes/meta.php:457
338
  msgid "Slider Navigation at Top"
339
  msgstr ""
340
 
341
- #: includes/meta.php:465
342
  msgid "Slider Navigation Position"
343
  msgstr ""
344
 
345
- #: includes/meta.php:467
346
  msgid "Top Right"
347
  msgstr ""
348
 
349
- #: includes/meta.php:468
350
  msgid "Middle"
351
  msgstr ""
352
 
353
- #: includes/meta.php:469
354
  msgid "Middle fixed"
355
  msgstr ""
356
 
357
- #: includes/meta.php:479
358
- msgid "Slider Pagination"
359
  msgstr ""
360
 
361
- #: includes/meta.php:480
362
  msgid "Slider Pagination at Bottom"
363
  msgstr ""
364
 
365
- #: includes/meta.php:489
366
  msgid "Pagination Background Color"
367
  msgstr ""
368
 
369
- #: includes/meta.php:492
370
  msgid "Pagination Text Color"
371
  msgstr ""
372
 
373
- #: includes/meta.php:495
374
  msgid "Pagination Number Counting"
375
  msgstr ""
376
 
377
- #: includes/meta.php:511
378
- msgid "Slide Speed"
379
- msgstr ""
380
-
381
- #: includes/meta.php:516
382
  msgid "Pagination Slide Speed"
383
  msgstr ""
384
 
385
- #: includes/meta.php:522
386
  msgid "Slider Touch Drag Enabled"
387
  msgstr ""
388
 
389
- #: includes/meta.php:534
390
  msgid "Slider Mouse Drag Enabled"
391
  msgstr ""
392
 
393
- #: includes/meta.php:548
394
  msgid "Themes for slider"
395
  msgstr ""
396
 
397
- #: includes/meta.php:571
398
- msgid "Slider Ribbon"
399
  msgstr ""
400
 
401
- #: includes/meta.php:642
402
  msgid "Container options"
403
  msgstr ""
404
 
405
- #: includes/meta.php:643
406
  msgid "Padding: (ex: 10px)"
407
  msgstr ""
408
 
409
- #: includes/meta.php:646
410
  msgid "Background color:"
411
  msgstr ""
412
 
413
- #: includes/meta.php:649
414
  msgid "Background image:"
415
  msgstr ""
416
 
417
- #: includes/meta.php:654
418
  msgid "Clear"
419
  msgstr ""
420
 
421
- #: includes/meta.php:679
422
  msgid "Items Options"
423
  msgstr ""
424
 
425
- #: includes/meta.php:680
426
- msgid "Items Background color"
427
  msgstr ""
428
 
429
- #: includes/meta.php:683
430
- msgid "Items Padding"
431
  msgstr ""
432
 
433
- #: includes/meta.php:695
434
- msgid "Empty Thumbnail"
435
  msgstr ""
436
 
437
- #: includes/meta.php:696
438
- msgid "Custom thumbnail image url"
439
  msgstr ""
440
 
441
- #: includes/meta.php:765
442
  msgid "Query order"
443
  msgstr ""
444
 
445
- #: includes/meta.php:768
446
  msgid "Descending"
447
  msgstr ""
448
 
449
- #: includes/meta.php:769
450
  msgid "Ascending "
451
  msgstr ""
452
 
453
- #: includes/meta.php:781
454
  msgid "Query orderBy"
455
  msgstr ""
456
 
457
- #: includes/meta.php:784
458
  msgid "None"
459
  msgstr ""
460
 
461
- #: includes/meta.php:785
462
  msgid "ID"
463
  msgstr ""
464
 
465
- #: includes/meta.php:786
466
  msgid "Date"
467
  msgstr ""
468
 
469
- #: includes/meta.php:787
470
  msgid "Rand"
471
  msgstr ""
472
 
473
- #: includes/meta.php:788
474
  msgid "Comment Count"
475
  msgstr ""
476
 
477
- #: includes/meta.php:789
478
  msgid "Author"
479
  msgstr ""
480
 
481
- #: includes/meta.php:791
482
  msgid "Name"
483
  msgstr ""
484
 
485
- #: includes/meta.php:792
486
  msgid "Type"
487
  msgstr ""
488
 
489
- #: includes/meta.php:799
490
  msgid "Hide out of stock items"
491
  msgstr ""
492
 
493
- #: includes/meta.php:803
494
- msgid "Yes "
495
- msgstr ""
496
-
497
- #: includes/meta.php:812
498
- msgid "Filter Slider Content."
499
- msgstr ""
500
-
501
- #: includes/meta.php:815
502
- msgid "Display from <b>Recent</b> Published"
503
- msgstr ""
504
-
505
- #: includes/meta.php:816
506
- msgid "Slider items will query from recent published product."
507
- msgstr ""
508
-
509
- #: includes/meta.php:819
510
- msgid "Display from <b>Featured</b> Product"
511
  msgstr ""
512
 
513
- #: includes/meta.php:820
514
- msgid "Slider items will query from featured marked product."
515
  msgstr ""
516
 
517
- #: includes/meta.php:823
518
- msgid "Display from Only <b>Year</b>"
519
- msgstr ""
520
-
521
- #: includes/meta.php:825
522
- msgid "Slider items will query from a year."
523
- msgstr ""
524
-
525
- #: includes/meta.php:830
526
- msgid "Display from <b>Month</b>"
527
- msgstr ""
528
-
529
- #: includes/meta.php:831
530
- msgid "Slider items will query from Month of a year."
531
- msgstr ""
532
-
533
- #: includes/meta.php:843
534
- msgid "Items sort."
535
  msgstr ""
536
 
537
- #: includes/meta.php:844
538
- msgid "Click each items to expand."
539
- msgstr ""
540
-
541
- #: includes/meta.php:845
542
  msgid "Reset"
543
  msgstr ""
544
 
545
- #: includes/meta.php:897
546
  msgid "Slider Thumbnail Size"
547
  msgstr ""
548
 
549
- #: includes/meta.php:900
550
- msgid "Full"
551
- msgstr ""
552
-
553
- #: includes/meta.php:901
554
- msgid "Large"
555
- msgstr ""
556
-
557
- #: includes/meta.php:902
558
- msgid "Medium"
559
- msgstr ""
560
-
561
- #: includes/meta.php:910
562
  msgid "Items thumbnail link's to"
563
  msgstr ""
564
 
565
- #: includes/meta.php:913
566
  msgid "Product"
567
  msgstr ""
568
 
569
- #: includes/meta.php:922
570
  msgid "Slider thumb max hieght(px)"
571
  msgstr ""
572
 
573
- #: includes/meta.php:928
574
  msgid "Display Thumbnail Zoom button"
575
  msgstr ""
576
 
577
- #: includes/meta.php:945
578
- msgid "Items Add to cart button Style"
 
 
 
 
 
 
 
 
579
  msgstr ""
580
 
581
- #: includes/meta.php:946
582
- msgid "You can hide items Add to cart button on slider."
583
  msgstr ""
584
 
585
- #: includes/meta.php:948
586
  msgid "Default"
587
  msgstr ""
588
 
589
- #: includes/meta.php:949
590
  msgid "Custom"
591
  msgstr ""
592
 
593
- #: includes/meta.php:954
594
- msgid "Add to cart Background Color"
595
  msgstr ""
596
 
597
- #: includes/meta.php:960
598
- msgid "Add to cart Text Color"
599
  msgstr ""
600
 
601
- #: includes/meta.php:966
602
- msgid "Items Cart Text Align"
603
  msgstr ""
604
 
605
- #: includes/meta.php:970 includes/meta.php:1023 includes/meta.php:1082
606
- #: includes/meta.php:1107 includes/meta.php:1163 includes/meta.php:1205
607
  msgid "Left"
608
  msgstr ""
609
 
610
- #: includes/meta.php:971 includes/meta.php:1024 includes/meta.php:1083
611
- #: includes/meta.php:1108 includes/meta.php:1164 includes/meta.php:1206
612
  msgid "Right"
613
  msgstr ""
614
 
615
- #: includes/meta.php:972 includes/meta.php:1025 includes/meta.php:1084
616
- #: includes/meta.php:1109 includes/meta.php:1166 includes/meta.php:1207
617
  msgid "Center"
618
  msgstr ""
619
 
620
- #: includes/meta.php:988
621
  msgid "Sale marker icon url"
622
  msgstr ""
623
 
624
- #: includes/meta.php:1007
625
  msgid "Items Title Color"
626
  msgstr ""
627
 
628
- #: includes/meta.php:1012
629
  msgid "Items Title Font Size"
630
  msgstr ""
631
 
632
- #: includes/meta.php:1019
633
  msgid "Items Title Text Align"
634
  msgstr ""
635
 
636
- #: includes/meta.php:1038
637
  msgid "Featured marker icon url"
638
  msgstr ""
639
 
640
- #: includes/meta.php:1050
641
  msgid "Price format on slider"
642
  msgstr ""
643
 
644
- #: includes/meta.php:1053
645
  msgid "Full Format"
646
  msgstr ""
647
 
648
- #: includes/meta.php:1054
649
  msgid "Sale price"
650
  msgstr ""
651
 
652
- #: includes/meta.php:1055
653
  msgid "Regular price"
654
  msgstr ""
655
 
656
- #: includes/meta.php:1064
657
- msgid "Items Price Color"
658
  msgstr ""
659
 
660
- #: includes/meta.php:1070
661
- msgid "Items price Font Size"
662
  msgstr ""
663
 
664
- #: includes/meta.php:1078
665
- msgid "Price Text Align"
666
  msgstr ""
667
 
668
- #: includes/meta.php:1103
669
- msgid "Items Rating Text Align"
670
  msgstr ""
671
 
672
- #: includes/meta.php:1116
673
- msgid "Items ratings Font Size"
674
  msgstr ""
675
 
676
- #: includes/meta.php:1123
677
- msgid "Items Ratings Color"
678
  msgstr ""
679
 
680
- #: includes/meta.php:1140
681
  msgid "Excerpt word count"
682
  msgstr ""
683
 
684
- #: includes/meta.php:1146
685
  msgid "Excerpt read more text"
686
  msgstr ""
687
 
688
- #: includes/meta.php:1152
689
- msgid "Items Excerpt Font Size"
690
  msgstr ""
691
 
692
- #: includes/meta.php:1159
693
- msgid "Excerpt Text Align"
694
  msgstr ""
695
 
696
- #: includes/meta.php:1172
697
- msgid "Items Excerpt Font color"
698
  msgstr ""
699
 
700
- #: includes/meta.php:1194
701
- msgid "Items Category Font Size"
702
  msgstr ""
703
 
704
- #: includes/meta.php:1201
705
- msgid "Category Text Align"
706
  msgstr ""
707
 
708
- #: includes/meta.php:1216
709
- msgid "Items Category Font color"
710
  msgstr ""
711
 
712
- #: includes/meta.php:1271
713
  msgid "Custom CSS for this slider."
714
  msgstr ""
715
 
716
- #: includes/meta.php:1272
717
  msgid ""
718
  "Do not use &lt;style>&lt;/style> tag, you can use bellow prefix to your css, "
719
  "sometime you need use \"!important\" to overrid."
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
  "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
 
29
  msgid "Excerpt"
30
  msgstr ""
31
 
32
+ #: includes/class-functions.php:65 includes/meta.php:798
33
  msgid "Category"
34
  msgstr ""
35
 
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
  msgid " Settings"
78
  msgstr ""
79
 
80
+ #: includes/menu/settings.php:67 includes/meta.php:221
81
  msgid "Options"
82
  msgstr ""
83
 
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
 
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."
readme.txt CHANGED
@@ -3,8 +3,8 @@
3
  Donate link: http://pickplugins.com
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.7
7
- Stable tag: 1.12.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -91,6 +91,11 @@ then paste this shortcode anywhere in your page to display slider<br />
91
 
92
  == Changelog ==
93
 
 
 
 
 
 
94
  = 1.12.5 =
95
  * 17/11/2016 update - update owl js & css files version 2.0.1 aseets.
96
 
3
  Donate link: http://pickplugins.com
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.7.3
7
+ Stable tag: 1.12.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
91
 
92
  == Changelog ==
93
 
94
+
95
+ = 1.12.6 =
96
+ * 09/03/2017 update - Admin settings update, added new tab Elements.
97
+ * 09/03/2017 add - on sale product display.
98
+
99
  = 1.12.5 =
100
  * 17/11/2016 update - update owl js & css files version 2.0.1 aseets.
101
 
templates/layer-media.php CHANGED
@@ -17,10 +17,6 @@ if ( ! defined('ABSPATH')) exit; // if direct access
17
  include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
18
  }
19
  }
20
-
21
-
22
-
23
-
24
-
25
  //include wcps_plugin_dir.'/templates/wcps-thumb.php';
26
  $html.='</div>';
17
  include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
18
  }
19
  }
20
+
 
 
 
 
21
  //include wcps_plugin_dir.'/templates/wcps-thumb.php';
22
  $html.='</div>';
templates/query.php CHANGED
@@ -8,55 +8,39 @@
8
  if ( ! defined('ABSPATH')) exit; // if direct access
9
 
10
  global $wp_query;
 
 
 
 
 
 
11
 
12
- if(($wcps_content_source=="recent"))
13
- {
 
14
 
15
- $wp_query = new WP_Query(
16
- array (
17
- 'post_type' => 'product',
18
- 'post_status' => 'publish',
19
- 'orderby' => $wcps_query_orderby,
20
- 'order' => $wcps_query_order,
21
- 'posts_per_page' => $wcps_total_items,
22
-
23
- ) );
24
 
25
- }
26
-
27
 
28
- else if(($wcps_content_source=="featured"))
29
- {
30
 
31
- $wp_query = new WP_Query(
32
- array (
33
- 'post_type' => 'product',
34
- 'post_status' => 'publish',
35
- 'orderby' => $wcps_query_orderby,
36
- 'order' => $wcps_query_order,
37
- 'meta_query' => array(
38
- array(
39
  'key' => '_featured',
40
  'value' => 'yes',
41
- )),
42
- 'posts_per_page' => $wcps_total_items,
43
-
44
- ) );
45
-
46
- }
47
 
 
 
48
 
49
- else if(($wcps_content_source=="on_sale"))
50
- {
51
 
52
- $wp_query = new WP_Query(
53
- array (
54
- 'post_type' => 'product',
55
- 'post_status' => 'publish',
56
- 'orderby' => $wcps_query_orderby,
57
- 'order' => $wcps_query_order,
58
- 'posts_per_page' => $wcps_total_items,
59
- 'meta_query' => array(
60
  array(
61
  'key' => '_visibility',
62
  'value' => array('catalog', 'visible'),
@@ -68,203 +52,21 @@ if ( ! defined('ABSPATH')) exit; // if direct access
68
  'compare' => '>',
69
  'type' => 'NUMERIC'
70
  )
71
- ) ));
72
-
73
- }
74
 
 
75
 
76
- else if(($wcps_content_source=="best_selling"))
77
- {
78
-
79
- $wp_query = new WP_Query(
80
- array (
81
- 'post_type' => 'product',
82
- 'post_status' => 'publish',
83
- 'orderby' => 'meta_value',
84
- 'order' => $wcps_query_order,
85
- 'posts_per_page' => $wcps_total_items,
86
- 'meta_key' => 'total_sales',
87
- 'meta_query' => array(
88
- array(
89
- 'key' => '_visibility',
90
- 'value' => array('catalog', 'visible'),
91
- 'compare' => 'IN'
92
- ),
93
- array(
94
- 'key' => 'total_sales',
95
- 'value' => 0,
96
- 'compare' => '>',
97
- 'type' => 'NUMERIC'
98
- ),
99
- )
100
- ) );
101
-
102
- }
103
-
104
-
105
- else if(($wcps_content_source=="top_rated"))
106
- {
107
 
 
 
 
 
 
 
 
108
 
109
- $meta_query = WC()->query->get_meta_query();
110
-
111
- $args = array(
112
- 'post_type' => 'product',
113
- 'post_status' => 'publish',
114
- 'ignore_sticky_posts' => 1,
115
- 'orderby' => 'title',
116
- 'order' => $wcps_query_order,
117
- 'posts_per_page' => $wcps_total_items,
118
- 'meta_query' => $meta_query
119
- );
120
-
121
- add_filter('posts_clauses', array( 'WC_Shortcodes', 'order_by_rating_post_clauses'));
122
- $wp_query = new WP_Query(apply_filters('woocommerce_shortcode_products_query', $args, $atts));
123
- remove_filter( 'posts_clauses', array( 'WC_Shortcodes', 'order_by_rating_post_clauses' ) );
124
-
125
-
126
-
127
- }
128
-
129
-
130
- else if(($wcps_content_source=="year"))
131
- {
132
-
133
- $wp_query = new WP_Query(
134
- array (
135
- 'post_type' => 'product',
136
- 'post_status' => 'publish',
137
- 'year' => $wcps_content_year,
138
- 'orderby' => $wcps_query_orderby,
139
- 'order' => $wcps_query_order,
140
- 'posts_per_page' => $wcps_total_items,
141
- ) );
142
-
143
- }
144
-
145
- else if(($wcps_content_source=="month"))
146
- {
147
-
148
- $wp_query = new WP_Query(
149
- array (
150
- 'post_type' => 'product',
151
- 'post_status' => 'publish',
152
- 'year' => $wcps_content_month_year,
153
- 'monthnum' => $wcps_content_month,
154
- 'orderby' => $wcps_query_orderby,
155
- 'order' => $wcps_query_order,
156
- 'posts_per_page' => $wcps_total_items,
157
-
158
- ) );
159
-
160
- }
161
-
162
-
163
- else if(($wcps_content_source=="sku"))
164
- {
165
-
166
- $wp_query = new WP_Query(
167
- array (
168
- 'post_type' => 'product',
169
- 'post_status' => 'publish',
170
- 'orderby' => $wcps_query_orderby,
171
- 'order' => $wcps_query_order,
172
- 'meta_query' => array(
173
- array(
174
- 'key' => '_sku',
175
- 'value' => $wcps_content_sku,
176
- )),
177
- 'posts_per_page' => $wcps_total_items,
178
-
179
- ) );
180
-
181
- }
182
-
183
-
184
- else if($wcps_content_source=="taxonomy")
185
- {
186
- $wp_query = new WP_Query(
187
- array (
188
- 'post_type' => 'product',
189
- 'post_status' => 'publish',
190
- 'orderby' => $wcps_query_orderby,
191
- 'order' => $wcps_query_order,
192
- 'posts_per_page' => $wcps_total_items,
193
- 'tax_query' => array(
194
- array(
195
- 'taxonomy' => $wcps_taxonomy,
196
- 'field' => 'id',
197
- 'terms' => $wcps_taxonomy_category,
198
- )
199
- )
200
-
201
- ) );
202
- }
203
-
204
-
205
-
206
-
207
- else if(($wcps_content_source=="product_id"))
208
- {
209
-
210
- $wcps_product_ids = explode(',',$wcps_product_ids);
211
-
212
- $wp_query = new WP_Query(
213
- array (
214
- 'post_type' => 'product',
215
- 'post_status' => 'publish',
216
- 'post__in' => $wcps_product_ids,
217
- 'orderby' => $wcps_query_orderby,
218
- 'order' => $wcps_query_order,
219
- 'posts_per_page' => $wcps_total_items,
220
-
221
-
222
- ) );
223
-
224
-
225
- }
226
-
227
-
228
- else if(($wcps_content_source=="recently_viewed"))
229
- {
230
-
231
- $viewed_products = ! empty( $_COOKIE['woocommerce_recently_viewed'] ) ? (array) explode( '|', $_COOKIE['woocommerce_recently_viewed'] ) : array();
232
- $viewed_products = array_filter( array_map( 'absint', $viewed_products ) );
233
-
234
- //var_dump($viewed_products);
235
-
236
-
237
- $wp_query = new WP_Query(
238
- array (
239
- 'post_type' => 'product',
240
- 'post_status' => 'publish',
241
- 'orderby' => $wcps_query_orderby,
242
- 'order' => $wcps_query_order,
243
- //'no_found_rows' => 1,
244
- 'post__in' => $viewed_products,
245
- 'posts_per_page' => $wcps_total_items,
246
-
247
-
248
- ) );
249
-
250
-
251
-
252
-
253
- }
254
-
255
- else
256
- {
257
-
258
- $wp_query = new WP_Query(
259
- array (
260
- 'post_type' => 'product',
261
- 'post_status' => 'publish',
262
- 'orderby' => $wcps_query_orderby,
263
- 'order' => $wcps_query_order,
264
- 'posts_per_page' => $wcps_total_items,
265
-
266
-
267
- ) );
268
 
 
269
 
270
- }
8
  if ( ! defined('ABSPATH')) exit; // if direct access
9
 
10
  global $wp_query;
11
+ $meta_query = array();
12
+
13
+
14
+ if($wcps_hide_out_of_stock=='yes'){
15
+
16
+ $meta_query[] = array(
17
 
18
+ 'key' => '_stock_status',
19
+ 'value' => 'instock',
20
+ );
21
 
22
+ }
23
+
24
+
25
+
26
+
 
 
 
 
27
 
 
 
28
 
29
+
30
+ if($wcps_product_featured=='yes'){
31
 
32
+ $meta_query[] = array(
33
+
 
 
 
 
 
 
34
  'key' => '_featured',
35
  'value' => 'yes',
36
+ );
 
 
 
 
 
37
 
38
+ }
39
+
40
 
41
+ if($wcps_product_on_sale=='yes'){
 
42
 
43
+ $meta_query[] = array(
 
 
 
 
 
 
 
44
  array(
45
  'key' => '_visibility',
46
  'value' => array('catalog', 'visible'),
52
  'compare' => '>',
53
  'type' => 'NUMERIC'
54
  )
55
+ );
 
 
56
 
57
+ }
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
+ $query_args = array (
61
+ 'post_type' => 'product',
62
+ 'post_status' => 'publish',
63
+ 'orderby' => $wcps_query_orderby,
64
+ 'order' => $wcps_query_order,
65
+ 'posts_per_page' => $wcps_total_items,
66
+ 'meta_query' => $meta_query
67
 
68
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ $query_args = apply_filters('wcps_filter_query_args', $query_args);
71
 
72
+ $wp_query = new WP_Query($query_args);
templates/variables.php CHANGED
@@ -41,7 +41,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
41
  $wcps_total_items = 10;
42
  }
43
 
44
- $wcps_total_items_price_format = get_post_meta( $post_id, 'wcps_total_items_price_format', true );
45
 
46
  $wcps_column_number = get_post_meta( $post_id, 'wcps_column_number', true );
47
  if(empty($wcps_column_number)){
@@ -124,21 +124,9 @@ if ( ! defined('ABSPATH')) exit; // if direct access
124
  if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
125
 
126
 
127
- $wcps_content_source = get_post_meta( $post_id, 'wcps_content_source', true );
128
- if(empty($wcps_content_source)){
129
- $wcps_content_source = 'recent';
130
- }
131
-
132
- $wcps_content_year = get_post_meta( $post_id, 'wcps_content_year', true );
133
- $wcps_content_month = get_post_meta( $post_id, 'wcps_content_month', true );
134
- $wcps_content_month_year = get_post_meta( $post_id, 'wcps_content_month_year', true );
135
-
136
- $wcps_content_sku = get_post_meta( $post_id, 'wcps_content_sku', true );
137
-
138
- $wcps_taxonomy = get_post_meta( $post_id, 'wcps_taxonomy', true );
139
- $wcps_taxonomy_category = get_post_meta( $post_id, 'wcps_taxonomy_category', true );
140
 
141
- $wcps_product_ids = get_post_meta( $post_id, 'wcps_product_ids', true );
142
 
143
  $wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
144
  $wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
41
  $wcps_total_items = 10;
42
  }
43
 
44
+ $wcps_items_price_format = get_post_meta( $post_id, 'wcps_items_price_format', true );
45
 
46
  $wcps_column_number = get_post_meta( $post_id, 'wcps_column_number', true );
47
  if(empty($wcps_column_number)){
124
  if(empty($wcps_slider_animatein)){$wcps_slider_animatein = 'flipInX'; }
125
 
126
 
127
+ $wcps_product_featured = get_post_meta( $post_id, 'wcps_product_featured', true );
128
+ $wcps_product_on_sale = get_post_meta( $post_id, 'wcps_product_on_sale', true );
 
 
 
 
 
 
 
 
 
 
 
129
 
 
130
 
131
  $wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
132
  $wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
templates/wcps-featured.php CHANGED
@@ -19,5 +19,5 @@ if ( ! defined('ABSPATH')) exit; // if direct access
19
 
20
  if($wcps_featured=="yes")
21
  {
22
- $html.= '<div '.$wcps_featured_style.' title="'.__('Featured Product','wcps').'" class="wcps-featured"></div>';
23
  }
19
 
20
  if($wcps_featured=="yes")
21
  {
22
+ $html.= '<div '.$wcps_featured_style.' title="'.__('Featured Product', wcps_textdomain).'" class="wcps-featured"></div>';
23
  }
templates/wcps-rating.php CHANGED
@@ -38,7 +38,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
38
 
39
  <div class="rating-list">
40
  <div class="pg-rating woocommerce">
41
- <div class="woocommerce-product-rating"><div class="star-rating" style="padding-bottom:10px;" title="'.__('Rated','wcps').' '.$rating.'"><span style="width:'.$rating.'%;"></span></div></div>
42
  </div>
43
  </div>
44
  </div>';
38
 
39
  <div class="rating-list">
40
  <div class="pg-rating woocommerce">
41
+ <div class="woocommerce-product-rating"><div class="star-rating" style="padding-bottom:10px;" title="'.__('Rated', wcps_textdomain).' '.$rating.'"><span style="width:'.$rating.'%;"></span></div></div>
42
  </div>
43
  </div>
44
  </div>';
templates/wcps-sale.php CHANGED
@@ -16,5 +16,5 @@ if ( ! defined('ABSPATH')) exit; // if direct access
16
 
17
  if(!empty($sale_price))
18
  {
19
- $html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product','wcps').'" class="wcps-items-sale"></div>';
20
  }
16
 
17
  if(!empty($sale_price))
18
  {
19
+ $html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product', wcps_textdomain).'" class="wcps-items-sale"></div>';
20
  }
woocommerce-products-slider.php CHANGED
@@ -3,7 +3,7 @@
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.5
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: woocommerce-products-slider
@@ -27,7 +27,7 @@ class WoocommerceProductsSlider{
27
  define('wcps_conatct_url', 'http://pickplugins.com/contact/' );
28
  define('wcps_qa_url', 'http://pickplugins.com/questions/' );
29
  define('wcps_plugin_name', 'Woocommerce Products Slider' );
30
- define('wcps_plugin_version', '1.12.5' );
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', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );
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.6
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  Text Domain: woocommerce-products-slider
27
  define('wcps_conatct_url', 'http://pickplugins.com/contact/' );
28
  define('wcps_qa_url', 'http://pickplugins.com/questions/' );
29
  define('wcps_plugin_name', 'Woocommerce Products Slider' );
30
+ define('wcps_plugin_version', '1.12.6' );
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', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );