Version Description
- Fixed: Prefixing error on a error notice (thanks NicheLabs)
Download this release
Release Info
Developer | visser |
Plugin | WooCommerce – Store Exporter |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.1
- exporter.php +2 -2
- includes/functions.php +1 -1
- readme.txt +5 -2
exporter.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WooCommerce - Store Exporter
|
4 |
Plugin URI: http://www.visser.com.au/woocommerce/plugins/exporter/
|
5 |
Description: Export store details out of WooCommerce into simple formatted files (e.g. CSV, TSV, Excel formats including XLS and XLSX, XML, etc.)
|
6 |
-
Version: 2.0
|
7 |
Author: Visser Labs
|
8 |
Author URI: http://www.visser.com.au/about/
|
9 |
License: GPL2
|
@@ -12,7 +12,7 @@ Text Domain: woocommerce-exporter
|
|
12 |
Domain Path: /languages/
|
13 |
|
14 |
WC requires at least: 2.3
|
15 |
-
WC tested up to: 3.
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
Plugin Name: WooCommerce - Store Exporter
|
4 |
Plugin URI: http://www.visser.com.au/woocommerce/plugins/exporter/
|
5 |
Description: Export store details out of WooCommerce into simple formatted files (e.g. CSV, TSV, Excel formats including XLS and XLSX, XML, etc.)
|
6 |
+
Version: 2.0.1
|
7 |
Author: Visser Labs
|
8 |
Author URI: http://www.visser.com.au/about/
|
9 |
License: GPL2
|
12 |
Domain Path: /languages/
|
13 |
|
14 |
WC requires at least: 2.3
|
15 |
+
WC tested up to: 3.4
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
includes/functions.php
CHANGED
@@ -371,7 +371,7 @@ if( is_admin() ) {
|
|
371 |
$message = '<span style="float:right;"><a href="' . $dismiss_url . '">' . __( 'Dismiss', 'woocommerce-exporter' ) . '</a></span>';
|
372 |
$message .= __( 'It looks like an export is currently running in the background. Unfortunately we cannot tell if the background export has completed just that it hasn\'t yet finished. If you are confident there are no background exports running click Dismiss to hide this notice.', 'woocommerce-exporter' );
|
373 |
$message .= ' (<a href="' . $troubleshooting_url . '" target="_blank">' . __( 'Need help?', 'woocommerce-exporter' ) . '</a>)';
|
374 |
-
|
375 |
}
|
376 |
}
|
377 |
|
371 |
$message = '<span style="float:right;"><a href="' . $dismiss_url . '">' . __( 'Dismiss', 'woocommerce-exporter' ) . '</a></span>';
|
372 |
$message .= __( 'It looks like an export is currently running in the background. Unfortunately we cannot tell if the background export has completed just that it hasn\'t yet finished. If you are confident there are no background exports running click Dismiss to hide this notice.', 'woocommerce-exporter' );
|
373 |
$message .= ' (<a href="' . $troubleshooting_url . '" target="_blank">' . __( 'Need help?', 'woocommerce-exporter' ) . '</a>)';
|
374 |
+
woo_ce_admin_notice_html( $message, 'notice' );
|
375 |
}
|
376 |
}
|
377 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: visser, visser.labs
|
|
4 |
Donate link: https://www.visser.com.au/donations/
|
5 |
Tags: woocommerce, export, export products, export sales, export orders, export subscriptions, csv, xml, xls, xlsx, excel, export customers, export coupons, export users, export attributes
|
6 |
Requires at least: 2.9.2
|
7 |
-
Tested up to: 4.9.
|
8 |
-
Stable tag: 2.0
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Export store details out of WooCommerce into simple formatted files (e.g. CSV, XML, Excel 2007, XLS, etc.).
|
@@ -164,6 +164,9 @@ If you have any problems, questions or suggestions please create a topic here on
|
|
164 |
|
165 |
== Changelog ==
|
166 |
|
|
|
|
|
|
|
167 |
= 2.0 =
|
168 |
* Added: Quick Export button to the Export Types section
|
169 |
* Added: Quick Export button to the Admin bar
|
4 |
Donate link: https://www.visser.com.au/donations/
|
5 |
Tags: woocommerce, export, export products, export sales, export orders, export subscriptions, csv, xml, xls, xlsx, excel, export customers, export coupons, export users, export attributes
|
6 |
Requires at least: 2.9.2
|
7 |
+
Tested up to: 4.9.7
|
8 |
+
Stable tag: 2.0.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Export store details out of WooCommerce into simple formatted files (e.g. CSV, XML, Excel 2007, XLS, etc.).
|
164 |
|
165 |
== Changelog ==
|
166 |
|
167 |
+
= 2.0.1 =
|
168 |
+
* Fixed: Prefixing error on a error notice (thanks NicheLabs)
|
169 |
+
|
170 |
= 2.0 =
|
171 |
* Added: Quick Export button to the Export Types section
|
172 |
* Added: Quick Export button to the Admin bar
|