Version Description
- 17/10/2015 fix - sale marker issue fixed.
Download this release
Release Info
Developer | paratheme |
Plugin | Woocommerce Products Slider |
Version | 1.9 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.9
- includes/wcps-meta.php +1 -1
- readme.txt +5 -1
- templates/wcps-sale.php +1 -1
- themes/theme6/{index - Copy.php → index-old.php} +0 -0
- themes/theme6/index.php +2 -2
- woocommerce-products-slider.php +2 -2
includes/wcps-meta.php
CHANGED
@@ -869,7 +869,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
869 |
</div>
|
870 |
|
871 |
<div class="option-box">
|
872 |
-
<p class="option-title">
|
873 |
<p class="option-info"></p>
|
874 |
<input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php if(!empty($wcps_sale_icon_url)) echo $wcps_sale_icon_url; else echo ""; ?>" />
|
875 |
</div>
|
869 |
</div>
|
870 |
|
871 |
<div class="option-box">
|
872 |
+
<p class="option-title">Custom sale marker icon url</p>
|
873 |
<p class="option-info"></p>
|
874 |
<input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php if(!empty($wcps_sale_icon_url)) echo $wcps_sale_icon_url; else echo ""; ?>" />
|
875 |
</div>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Tags: product slider,carousel, product, slider, woocommerce, carousel slider, woocommerce slider, Woocommerce Product slider, featured product slider, sale product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.3.1
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -92,6 +92,10 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
92 |
|
93 |
== Changelog ==
|
94 |
|
|
|
|
|
|
|
|
|
95 |
= 1.8 =
|
96 |
* 17/10/2015 fix - ssl issue fixed.
|
97 |
|
4 |
Tags: product slider,carousel, product, slider, woocommerce, carousel slider, woocommerce slider, Woocommerce Product slider, featured product slider, sale product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.3.1
|
7 |
+
Stable tag: 1.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
92 |
|
93 |
== Changelog ==
|
94 |
|
95 |
+
|
96 |
+
= 1.9 =
|
97 |
+
* 17/10/2015 fix - sale marker issue fixed.
|
98 |
+
|
99 |
= 1.8 =
|
100 |
* 17/10/2015 fix - ssl issue fixed.
|
101 |
|
templates/wcps-sale.php
CHANGED
@@ -16,5 +16,5 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
16 |
|
17 |
if(!empty($sale_price) && $wcps_sale_display == 'yes')
|
18 |
{
|
19 |
-
$html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product','wcps').'" class="wcps-items-sale"></div>';
|
20 |
}
|
16 |
|
17 |
if(!empty($sale_price) && $wcps_sale_display == 'yes')
|
18 |
{
|
19 |
+
$html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product','wcps').'" class="wcps-items-sale wcps-sale"></div>';
|
20 |
}
|
themes/theme6/{index - Copy.php → index-old.php}
RENAMED
File without changes
|
themes/theme6/index.php
CHANGED
@@ -102,12 +102,12 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
102 |
|
103 |
$html.= '<div class="wcps-items" >';
|
104 |
include wcps_plugin_dir.'/templates/wcps-thumb.php';
|
105 |
-
|
106 |
$html.= '<div class="items-info">';
|
107 |
|
108 |
foreach($wcps_grid_items as $item_key=>$item){
|
109 |
|
110 |
-
if($item_key!='thumb'){
|
111 |
|
112 |
if(empty($wcps_grid_items_hide[$item_key])){
|
113 |
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
102 |
|
103 |
$html.= '<div class="wcps-items" >';
|
104 |
include wcps_plugin_dir.'/templates/wcps-thumb.php';
|
105 |
+
include wcps_plugin_dir.'/templates/wcps-sale.php';
|
106 |
$html.= '<div class="items-info">';
|
107 |
|
108 |
foreach($wcps_grid_items as $item_key=>$item){
|
109 |
|
110 |
+
if($item_key!='thumb' && $item_key!='sale'){
|
111 |
|
112 |
if(empty($wcps_grid_items_hide[$item_key])){
|
113 |
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
woocommerce-products-slider.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Woocommerce Products Slider
|
4 |
Plugin URI: http://paratheme.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.
|
7 |
Author: paratheme
|
8 |
Author URI: http://paratheme.com
|
9 |
License: Custom support@paratheme.com
|
@@ -26,7 +26,7 @@ class WoocommerceProductsSlider{
|
|
26 |
define('wcps_conatct_url', 'http://paratheme.com/contact/' );
|
27 |
define('wcps_qa_url', 'http://paratheme.com/qa/' );
|
28 |
define('wcps_plugin_name', 'Woocommerce Products Slider' );
|
29 |
-
define('wcps_plugin_version', '1.
|
30 |
define('wcps_customer_type', 'free' ); // pro & free
|
31 |
define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
32 |
define('wcps_tutorial_video_url', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );
|
3 |
Plugin Name: Woocommerce Products Slider
|
4 |
Plugin URI: http://paratheme.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.9
|
7 |
Author: paratheme
|
8 |
Author URI: http://paratheme.com
|
9 |
License: Custom support@paratheme.com
|
26 |
define('wcps_conatct_url', 'http://paratheme.com/contact/' );
|
27 |
define('wcps_qa_url', 'http://paratheme.com/qa/' );
|
28 |
define('wcps_plugin_name', 'Woocommerce Products Slider' );
|
29 |
+
define('wcps_plugin_version', '1.9' );
|
30 |
define('wcps_customer_type', 'free' ); // pro & free
|
31 |
define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
32 |
define('wcps_tutorial_video_url', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );
|