Version Description
(22.02.2018) =
- Fix - With the latest WooCommerce version 3.3, the icons for Print were missing. This is fixed.
Download this release
Release Info
Developer | tychesoftwares |
Plugin | WooCommerce Print Invoice & Delivery Note |
Version | 4.4.2 |
Comparing to | |
See all releases |
Code changes from version 4.4 to 4.4.2
- css/admin.css +16 -8
- includes/class-wcdn-print.php +2 -3
- readme.txt +15 -3
- woocommerce-delivery-notes.php +3 -3
css/admin.css
CHANGED
@@ -46,7 +46,8 @@
|
|
46 |
|
47 |
/* All orders */
|
48 |
|
49 |
-
.type-shop_order .column-order_actions .print-preview-button
|
|
|
50 |
display: block;
|
51 |
text-indent: -9999px;
|
52 |
position: relative;
|
@@ -57,7 +58,8 @@
|
|
57 |
width: 2em;
|
58 |
}
|
59 |
|
60 |
-
.type-shop_order .column-order_actions .print-preview-button:before
|
|
|
61 |
font-family: "icons";
|
62 |
speak: none;
|
63 |
font-weight: normal;
|
@@ -78,28 +80,34 @@
|
|
78 |
content: "\e603";
|
79 |
}
|
80 |
|
81 |
-
.type-shop_order .column-order_actions .print-preview-button.invoice:before
|
|
|
82 |
content: "\e602";
|
83 |
}
|
84 |
|
85 |
-
.type-shop_order .column-order_actions .print-preview-button.delivery-note:before
|
|
|
86 |
content: "\e601";
|
87 |
}
|
88 |
|
89 |
-
.type-shop_order .column-order_actions .print-preview-button.receipt:before
|
|
|
90 |
content: "\e604";
|
91 |
}
|
92 |
|
93 |
-
.type-shop_order .column-order_actions .print-preview-button.credit-note:before
|
|
|
94 |
content: "\e600";
|
95 |
}
|
96 |
|
97 |
-
.type-shop_order .column-order_actions span.print-preview-loading
|
|
|
98 |
float: left;
|
99 |
margin-top: 3px;
|
100 |
}
|
101 |
|
102 |
-
.type-shop_order .column-order_actions .print-preview-button span
|
|
|
103 |
display: none;
|
104 |
}
|
105 |
|
46 |
|
47 |
/* All orders */
|
48 |
|
49 |
+
.type-shop_order .column-order_actions .print-preview-button,
|
50 |
+
.type-shop_order .column-wc_actions .print-preview-button {
|
51 |
display: block;
|
52 |
text-indent: -9999px;
|
53 |
position: relative;
|
58 |
width: 2em;
|
59 |
}
|
60 |
|
61 |
+
.type-shop_order .column-order_actions .print-preview-button:before,
|
62 |
+
.type-shop_order .column-wc_actions .print-preview-button:before {
|
63 |
font-family: "icons";
|
64 |
speak: none;
|
65 |
font-weight: normal;
|
80 |
content: "\e603";
|
81 |
}
|
82 |
|
83 |
+
.type-shop_order .column-order_actions .print-preview-button.invoice:before,
|
84 |
+
.type-shop_order .column-wc_actions .print-preview-button.invoice:before {
|
85 |
content: "\e602";
|
86 |
}
|
87 |
|
88 |
+
.type-shop_order .column-order_actions .print-preview-button.delivery-note:before,
|
89 |
+
.type-shop_order .column-wc_actions .print-preview-button.delivery-note:before {
|
90 |
content: "\e601";
|
91 |
}
|
92 |
|
93 |
+
.type-shop_order .column-order_actions .print-preview-button.receipt:before,
|
94 |
+
.type-shop_order .column-wc_actions .print-preview-button.receipt:before {
|
95 |
content: "\e604";
|
96 |
}
|
97 |
|
98 |
+
.type-shop_order .column-order_actions .print-preview-button.credit-note:before,
|
99 |
+
.type-shop_order .column-wc_actions .print-preview-button.credit-note:before {
|
100 |
content: "\e600";
|
101 |
}
|
102 |
|
103 |
+
.type-shop_order .column-order_actions span.print-preview-loading,
|
104 |
+
.type-shop_order .column-wc_actions span.print-preview-loading {
|
105 |
float: left;
|
106 |
margin-top: 3px;
|
107 |
}
|
108 |
|
109 |
+
.type-shop_order .column-order_actions .print-preview-button span,
|
110 |
+
.type-shop_order .column-wc_actions .print-preview-button span {
|
111 |
display: none;
|
112 |
}
|
113 |
|
includes/class-wcdn-print.php
CHANGED
@@ -164,7 +164,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
164 |
</ul>
|
165 |
<?php $package_number++; ?>
|
166 |
</div>
|
167 |
-
<?
|
168 |
endforeach;
|
169 |
}
|
170 |
/**
|
@@ -509,5 +509,4 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
509 |
}
|
510 |
|
511 |
}
|
512 |
-
|
513 |
-
?>
|
164 |
</ul>
|
165 |
<?php $package_number++; ?>
|
166 |
</div>
|
167 |
+
<?php
|
168 |
endforeach;
|
169 |
}
|
170 |
/**
|
509 |
}
|
510 |
|
511 |
}
|
512 |
+
?>
|
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== WooCommerce Print Invoice & Delivery Note ===
|
2 |
|
3 |
-
Contributors: ashokrane, bhavik.kiri, tychesoftwares,
|
4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
5 |
Tags: delivery note, packing slip, pdf invoice, delivery, shipping, print order, woocommerce, woothemes, shop
|
6 |
Requires at least: 4.0
|
7 |
-
Tested up to: 4.9.
|
8 |
Author URI: https://www.tychesoftwares.com/
|
9 |
-
Stable tag: 4.4
|
10 |
License: GPLv3 or later
|
11 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
12 |
|
@@ -83,6 +83,8 @@ When your language is missing you can contribute a translation to the [GitHub re
|
|
83 |
|
84 |
12. **[Export WordPress Menus](https://wordpress.org/plugins/wp-export-menus/ "Export WordPress Menus")**
|
85 |
|
|
|
|
|
86 |
== Installation ==
|
87 |
|
88 |
= Minimum Requirements =
|
@@ -328,6 +330,16 @@ Please [contribute your translation](https://github.com/TycheSoftwares/woocommer
|
|
328 |
|
329 |
= Minimum Requirements: WooCommerce 2.2 =
|
330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
= 4.4 (29.12.2017) =
|
332 |
|
333 |
* This version has 1 bug fix.
|
1 |
=== WooCommerce Print Invoice & Delivery Note ===
|
2 |
|
3 |
+
Contributors: ashokrane, bhavik.kiri, tychesoftwares, rashmim
|
4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
5 |
Tags: delivery note, packing slip, pdf invoice, delivery, shipping, print order, woocommerce, woothemes, shop
|
6 |
Requires at least: 4.0
|
7 |
+
Tested up to: 4.9.5
|
8 |
Author URI: https://www.tychesoftwares.com/
|
9 |
+
Stable tag: 4.4.2
|
10 |
License: GPLv3 or later
|
11 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
12 |
|
83 |
|
84 |
12. **[Export WordPress Menus](https://wordpress.org/plugins/wp-export-menus/ "Export WordPress Menus")**
|
85 |
|
86 |
+
**[Developer Documentation](https://www.tychesoftwares.com/docs/print-invoice-apidocs/index.html "Developer Documentation")**
|
87 |
+
|
88 |
== Installation ==
|
89 |
|
90 |
= Minimum Requirements =
|
330 |
|
331 |
= Minimum Requirements: WooCommerce 2.2 =
|
332 |
|
333 |
+
= 4.4.2 (22.02.2018) =
|
334 |
+
|
335 |
+
* Fix - With the latest WooCommerce version 3.3, the icons for Print were missing. This is fixed.
|
336 |
+
|
337 |
+
= 4.4.1 (29.12.2017) =
|
338 |
+
|
339 |
+
* This version has 1 bug fix.
|
340 |
+
|
341 |
+
* Fix - PHP short tag was inadvertently added in the plugin in v4.4, which was causing an error. This has been fixed.
|
342 |
+
|
343 |
= 4.4 (29.12.2017) =
|
344 |
|
345 |
* This version has 1 bug fix.
|
woocommerce-delivery-notes.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://www.tychesoftwares.com/
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
-
* Version: 4.4
|
9 |
* Author: Tyche Softwares
|
10 |
* Author URI: https://www.tychesoftwares.com/
|
11 |
* License: GPLv3 or later
|
@@ -14,7 +14,7 @@
|
|
14 |
* Domain Path: /languages
|
15 |
* Requires PHP: 5.6
|
16 |
* WC requires at least: 3.0.0
|
17 |
-
* WC tested up to: 3.
|
18 |
*
|
19 |
* Copyright 2015 Tyche Softwares
|
20 |
*
|
@@ -58,7 +58,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
58 |
/**
|
59 |
* Default properties
|
60 |
*/
|
61 |
-
public static $plugin_version = '4.4';
|
62 |
public static $plugin_url;
|
63 |
public static $plugin_path;
|
64 |
public static $plugin_basefile;
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://www.tychesoftwares.com/
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
+
* Version: 4.4.2
|
9 |
* Author: Tyche Softwares
|
10 |
* Author URI: https://www.tychesoftwares.com/
|
11 |
* License: GPLv3 or later
|
14 |
* Domain Path: /languages
|
15 |
* Requires PHP: 5.6
|
16 |
* WC requires at least: 3.0.0
|
17 |
+
* WC tested up to: 3.3.0
|
18 |
*
|
19 |
* Copyright 2015 Tyche Softwares
|
20 |
*
|
58 |
/**
|
59 |
* Default properties
|
60 |
*/
|
61 |
+
public static $plugin_version = '4.4.2';
|
62 |
public static $plugin_url;
|
63 |
public static $plugin_path;
|
64 |
public static $plugin_basefile;
|