Version Description
- Bug with Custom Price Labels, affecting Plus version, fixed
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- includes/class-wcj-price-labels.php +3 -3
- readme.txt +14 -5
- woocommerce-jetpack.php +1 -1
includes/class-wcj-price-labels.php
CHANGED
@@ -173,15 +173,15 @@ class WCJ_Price_Labels {
|
|
173 |
break;
|
174 |
|
175 |
case '_before':
|
176 |
-
$price =
|
177 |
break;
|
178 |
|
179 |
case '_between':
|
180 |
-
$price =
|
181 |
break;
|
182 |
|
183 |
case '_after':
|
184 |
-
$price =
|
185 |
break;
|
186 |
}
|
187 |
|
173 |
break;
|
174 |
|
175 |
case '_before':
|
176 |
+
$price = apply_filters( 'wcjpc_filter', $price, $custom_label . $price );
|
177 |
break;
|
178 |
|
179 |
case '_between':
|
180 |
+
$price = apply_filters( 'wcjpc_filter', $price, str_replace( '</del> <ins>', '</del>' . $custom_label . '<ins>', $price ) );
|
181 |
break;
|
182 |
|
183 |
case '_after':
|
184 |
+
$price = apply_filters( 'wcjpc_filter', $price, $price . $custom_label );
|
185 |
break;
|
186 |
}
|
187 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://algoritmika.com/donate/
|
|
4 |
Tags: woocommerce,jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 3.9
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -12,13 +12,19 @@ Supercharge your WordPress WooCommerce site with these awesome powerful features
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
WooCommerce Jetpack is a WordPress plugin that supercharges your
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
= Feedback =
|
20 |
* We are open to your suggestions and feedback - Thank you for using or trying out one of our plugins!
|
21 |
-
* Drop us a line at [www.
|
22 |
|
23 |
= More =
|
24 |
* Vist the [WooCommerce Jetpack plugin page](http://woojetpack.com/)
|
@@ -41,6 +47,9 @@ To unlock all WooCommerce Jetpack features, please install additional <a href="h
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
44 |
= 1.0.0 =
|
45 |
* Initial Release
|
46 |
|
4 |
Tags: woocommerce,jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 3.9
|
7 |
+
Stable tag: 1.0.1
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
WooCommerce Jetpack is a WordPress plugin that supercharges your site with awesome powerful features. Features are absolutely required for anyone using excellent WordPress WooCommerce platform.
|
16 |
+
|
17 |
+
**What features does it have?**
|
18 |
+
|
19 |
+
* Custom Price Labels – Create any custom price label for any product.
|
20 |
+
* Call for Price – Create any custom price label, like “Call for price”, for all products with empty price.
|
21 |
+
* Currencies – Add all world currencies, change currency symbol.
|
22 |
+
* More Sorting Options – Add more sorting options or remove sorting (including default) at all.
|
23 |
+
* Old Slugs – Remove old product slugs.
|
24 |
|
25 |
= Feedback =
|
26 |
* We are open to your suggestions and feedback - Thank you for using or trying out one of our plugins!
|
27 |
+
* Drop us a line at [www.woojetpack.com](http://woojetpack.com/contact-us/)
|
28 |
|
29 |
= More =
|
30 |
* Vist the [WooCommerce Jetpack plugin page](http://woojetpack.com/)
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.0.1 =
|
51 |
+
* Bug with Custom Price Labels, affecting Plus version, fixed
|
52 |
+
|
53 |
= 1.0.0 =
|
54 |
* Initial Release
|
55 |
|
woocommerce-jetpack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
-
Version: 1.0.
|
7 |
Author: Algoritmika Ltd.
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
+
Version: 1.0.1
|
7 |
Author: Algoritmika Ltd.
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|