Version Description
- Fixed fatal error to yit_debug with yit themes
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Wishlist |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- README.txt +11 -2
- init.php +2 -2
- yit-common/yit-functions.php +2 -2
README.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
|
|
4 |
Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -17,7 +17,12 @@ Offer to your visitors a chance to add the products of your woocommerce store to
|
|
17 |
in order to add the products to the wishlist page. The plugin will create you the specific page and the products will be added in this page and
|
18 |
afterwards add them to the cart or remove them.
|
19 |
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
|
23 |
= Installation =
|
@@ -69,6 +74,10 @@ Yes, you can change the colors of background, text and border or apply a custom
|
|
69 |
|
70 |
== Changelog ==
|
71 |
|
|
|
|
|
|
|
|
|
72 |
= 1.0.1 =
|
73 |
|
74 |
* Optimized images
|
4 |
Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 1.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
17 |
in order to add the products to the wishlist page. The plugin will create you the specific page and the products will be added in this page and
|
18 |
afterwards add them to the cart or remove them.
|
19 |
|
20 |
+
Working demo are available:
|
21 |
+
|
22 |
+
**[LIVE DEMO 1](http://demo.yithemes.com/room09/product/africa-style/)** - **[LIVE DEMO 2](http://demo.yithemes.com/bazar/shop/ankle-shoes/)**
|
23 |
+
|
24 |
+
|
25 |
+
Full documentation is available [here](http://yithemes.com/docs-plugins/yith_wishlist/).
|
26 |
|
27 |
|
28 |
= Installation =
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.0.2 =
|
78 |
+
|
79 |
+
* Fixed fatal error to yit_debug with yit themes
|
80 |
+
|
81 |
= 1.0.1 =
|
82 |
|
83 |
* Optimized images
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Wishlist
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
@@ -11,7 +11,7 @@
|
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH WooCommerce Wishlist
|
14 |
-
* @version 1.0.
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
3 |
* Plugin Name: YITH WooCommerce Wishlist
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
|
6 |
+
* Version: 1.0.2
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH WooCommerce Wishlist
|
14 |
+
* @version 1.0.2
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
yit-common/yit-functions.php
CHANGED
@@ -48,7 +48,7 @@ if( ! function_exists( 'yit_get_plugin_basename_from_slug' ) ) {
|
|
48 |
}
|
49 |
}
|
50 |
|
51 |
-
if( ! function_exists( '
|
52 |
/**
|
53 |
* Debug helper function. This is a wrapper for var_dump() that adds
|
54 |
* the <pre /> tags, cleans up newlines and indents, and runs
|
@@ -59,7 +59,7 @@ if( ! function_exists( 'yit_debug') ) {
|
|
59 |
* @param ...
|
60 |
* @return string
|
61 |
*/
|
62 |
-
function
|
63 |
$args = func_get_args();
|
64 |
if( !empty( $args ) ) {
|
65 |
foreach( $args as $k=>$arg ) {
|
48 |
}
|
49 |
}
|
50 |
|
51 |
+
if( ! function_exists( 'yith_debug') ) {
|
52 |
/**
|
53 |
* Debug helper function. This is a wrapper for var_dump() that adds
|
54 |
* the <pre /> tags, cleans up newlines and indents, and runs
|
59 |
* @param ...
|
60 |
* @return string
|
61 |
*/
|
62 |
+
function yith_debug() {
|
63 |
$args = func_get_args();
|
64 |
if( !empty( $args ) ) {
|
65 |
foreach( $args as $k=>$arg ) {
|