PluginProbe
PostNL for WooCommerce / 3.1.4
PostNL for WooCommerce v3.1.4
5.9.12 5.9.11 5.9.10 5.9.9 5.9.8 5.9.7 5.9.6 trunk 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.1.4 3.1.5 3.1.6 3.1.7 4.0.0 4.0.1 4.0.2 4.3.2 4.3.3 4.4.0 4.4.1 All 72 releases
woo-postnl / readme.txt

readme.txt in PostNL for WooCommerce 3.1.4, at readme.txt

477 lines 19.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === Plugin Name ===
2 Tags: woocommerce, WooCommerce, export, Orders, orders, Bestellingen, bestellingen, Delivery, delivery options, bezorgopties, Packages, packages, PostNL, postnl, PostNL
3 Requires at least: 3.5.1 & WooCommerce 2.0+
4 Tested up to: 5.1.0
5 Stable tag: trunk
6 Requires PHP: 5.4
7 License: GPLv3 or later
8 License URI: http://www.opensource.org/licenses/gpl-license.php
9
10 Export your WooCommerce orders to PostNL (www.postnl.nl) and print labels directly from the WooCommerce admin
11
12 == Description ==
13
14 This WooCommerce extension allows you to export your orders to the PostNL service (www.postnl.nl).
15
16 **Online Manual (in Dutch):** https://postnl.github.io/woocommerce/
17
18 = Main features =
19 - Delivery options integrated in your checkout
20 - Export your WooCommerce orders to PostNL with a simple click, single orders or in batch
21 - Print shipping labels directly (PDF)
22 - Create multiple shipments for the same order
23 - Choose your package type (Parcel, mailbox package or unpaid letter)
24 - Define preset PostNL shipping options (signature required, extra insurance, etc.)
25 - Modify the PostNL shipping options per order before exporting
26 - Extra checkout fields to separate street name, house number and house number suffix for more precise address data
27 - View the status of the shipment in the order details page
28 - Add track&trace link to the order confirmation email
29
30 A PostNL API account is required for this plugin! Contact your PostNL account manager for the API key.
31
32 == Installation ==
33
34 = Automatic installation =
35 Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't even need to leave your web browser. To do an automatic install of WooCommerce PostNL, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.
36
37 In the search field type "WooCommerce PostNL" and click Search Plugins. You can install it by simply clicking Install Now. After clicking that link you will be asked if you're sure you want to install the plugin. Click yes and WordPress will automatically complete the installation.
38
39 = Manual installation via the WordPress interface =
40 1. Download the plugin zip file to your computer
41 2. Go to the WordPress admin panel menu Plugins > Add New
42 3. Choose upload
43 4. Upload the plugin zip file, the plugin will now be installed
44 5. After installation has finished, click the 'activate plugin' link
45
46 = Manual installation via FTP =
47 1. Download the plugin file to your computer and unzip it.
48 2. Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation's wp-content/plugins/ directory.
49 3. Activate the plugin from the Plugins menu within the WordPress admin.
50
51 = Setting up the plugin =
52 1. Go to the menu `WooCommerce > PostNL`.
53 2. Fill in your API Details.
54 3. Under 'Default export settings' you can set options that should be set by default for the export. You can change these settings per order at the time of export.
55 4. The plugin is ready to be used!
56
57 = Testing =
58 We advise you to test the whole checkout procedure once to see if everything works as it should. Pay special attention to the following:
59
60 The PostNL plugin adds extra fields to the checkout of your webshop, to make it possible for the client to add street name, number and optional additions separately. This way you can be sure that everything is entered correctly. Because not all checkouts are configured alike, it's possible that the positioning/alignment of these extra fields have to be adjusted.
61
62 Moreover, after a label is created, a track&trace code is added to the order. When the order is completed from WooCommerce, this track & trace code is added to the email (when this is enabled in the settings). Check that the code is correctly displayed in your template. You can read how to change the text in the FAQ section.
63
64 == Frequently Asked Questions ==
65
66 **Online Manual (in Dutch):** https://postnl.github.io/woocommerce/
67
68 = How do I get an API key? =
69 For the api key, you must be contacting PostNL.
70
71 = How do I change the track&trace email text? =
72 You can change the text (which is placed above the order details table by default) by applying the following filter:
73 `
74 add_filter( 'wcpostnl_email_text', 'wcpostnl_new_email_text' );
75 function wcpostnl_new_email_text($track_trace_tekst) {
76 // Tutoyeren ipv vousvoyeren
77 $nieuwe_tekst = 'Je kunt je bestelling volgen met het volgende PostNL track&trace nummer:';
78 return $nieuwe_tekst;
79 }
80 `
81
82 == Screenshots ==
83
84 1. Export or print postnl label per order
85 2. Bulk export or print postnl labels
86 3. Change the shipment options for an order
87 4. postnl actions on the order overview page
88 5. postnl information on the order details page
89
90 == Changelog ==
91
92 = 3.1.4 (2019-03-19)
93 * Improvement: Renewed checkout that takes the look & feel of the template.
94 * Improvement: The titles of the checkout can be changed.
95 * Improvement: Age check 18+ is now available.
96 * Improvement: € 100 and € 250 insured is possible.
97 * Improvement: Support the standard WooCommerce address fields.
98 * Improvement: Place the PostNL delivery options at every position.
99 * Improvement: Belgium support.
100
101 = 3.1.3 (2019-02-26) =
102 * Fix: Showing delivery date in the order when consumer using safari
103 * Fix: Scrolling of the order overview when an input is clicked.
104
105 = 3.1.2 (2019-02-19) =
106 * Improvement: 18+ check
107 * Fix: Standard delivery text
108 * Fix: showing checkout
109
110 = 3.1.1 (2019-01-30) =
111 * Fix: Remove some styling code
112 * Fix: Text changes
113 * Fix: Hide delivery options
114 * Fix: Get the total weight on a later moment
115 * Fix: Unset weight by mailbox package
116 * Fix: Since WooCommerce 3.0, logging can be grouped by context (error code 0 when exporting / printing)
117 * Fix: The checkout is still loading when change the country.
118
119 * Improvement: Add maxlength to number suffix field
120 * Improvement: Translate all text inside the checkout
121 * Improvement: The option to give a discount on the shipping method ( negative amounts)
122
123 = 3.1.0 (2018-12-12) =
124 * Hotfix: Show delivery options when checkout form already filled in.
125
126 = 3.0.10 (2018-12-05) =
127 * Hotfix: Flashing of the order summary.
128
129 = 3.0.9 (2018-12-04) =
130 * Hotfix: Get mailbox delivery option and save it into the order.
131
132 = 3.0.8 (2018-12-04) =
133 * Fix: The multiple calls that are made to retrieve the shipping data.
134 * Fix: The option for Pick up extra early
135 * Fix: Wrong house number / postcode message and the possibility to adjust the address in the postnl checkout
136 * Fix: Woocommerce tabel rates
137 * Improvement: Better support the default WooCommerce checkout address fields
138
139 = 3.0.7 (2018-11-20) =
140 * Fix: Set default values for dropoff days and delivery days window
141
142 = 3.0.6 (2018-11-16) =
143 * Fix: Remove concatenation from constant (causes an error on php version < 5.6)
144 * Fix: No more double address fields with delivery options disabled
145
146 = 3.0.5 (2018-11-15) =
147 * Fix: Error message about money_format
148 * Fix: Add the priority to the checkout field for support WooCommerce 3.5.1
149 * Fix: The PostNL logo is not visible with all browsers
150 * Improvement: Support Channel Engine
151 * Improvement: Information inside the checkout and the translations
152 * Improvement: Support WooCommerce default shipping fields (_address_1 and _address_2)
153
154 = 3.0.4 (2018-10-23) =
155 * Fix: mollie payments
156 * Improvement: Check for minimum php version (php 5.4)
157 * Improvement: Hide automatic pickup express if pickup is not enabled
158
159 = 3.0.3 (2018-10-09) =
160 * Fix: Problem with WooCommerce PDF Invoices & Packing Slips
161 * Fix: error about "Bewaar barcode in een notitie" size
162 * Fix: Turn of the option allow Pickup Express
163 * Fix: Save settings with a new update
164 * Improvement: PostNL delivery header titel
165 * Improvement: Support WooCommerce 3.5.0
166 * Improvement: add preliminary support for "digitale postzegel"
167
168 = 3.0.2 (2018-10-09) =
169 * Fix: Error a non-numeric value encountered in class-wcmp-frontend-settings.php
170 * Fix: Notice Undefined index: checkout_position
171 * Fix: Add version number after the nl-checkout.css call
172
173 = 3.0.0 (2018-10-09) =
174 * Changes: The whole checkout has a new look. A choice has been made to go back to the basic checkout. The checkout is designed so that he will take the styling of the website.
175
176 These are the biggest changes:
177 * No use of libraries (only jQuery)
178 * No iframe is used
179 * The checkout is more stable
180 * Easier to implement improvements
181
182 * Fix: Use street and house number fields for export a Belgium order
183 * Fix: The at home or at work delivery title inside the checkout
184 * Fix: The default settings
185 * Improvement: The option to change the position of the checkout (edited)
186
187 = 3.0.0-beta.2 (2018-09-08) =
188 * Fix: at home delivery title
189 * Fix: Export Belgium delivery, use the street/number input fields
190
191 = 2.4.14 (2018-07-03) =
192 * Fix: Select the correct package type inside admin when there is one shipping used.
193
194 = 2.4.13 (2018-07-26) =
195 * Fix: Tabel rate shipping witch WooCommerce Table Rate Shipping by Automattic / Bolder Elements 4.0 / Bolder Elements 4.1.3
196 * Fix: The option to show the checkout only when he is linked to package
197
198 = 2.4.12 (2018-07-09) =
199 * Fix: #102 change Iceland to world shipping
200 * Fix: #106 tabel rates shipping
201 * Improvement: #94 support legacy consignment and tracktrace data
202 * Improvement: #95 Speed up order list view
203 * Improvement: #104 Add reference identifier, that is always the order id
204 = 2.4.11 (2018-04-30) =
205 * Fix: Export shipment labels
206
207 = 2.4.10 (2018-04-26) =
208 * Improvement: Support Effect Connect, you can place the barcode inside a note of the order
209
210 = 2.4.9 (2018-04-03) =
211 * Fix: Scrolling when changing package type in orderview
212 * Fix: Select the correct delivery methode inside the checkout
213 * Improvement: Support Cloudflare
214
215 = 2.4.8 (2018-02-27) =
216 * Fix: The array error from the userAgent (https://wordpress.org/support/topic/parse-error-syntax-error-unexpected-in-wp-content-plugins-woocommerce-post/)
217 * Fix: The countries Norway, Turkey, Switzerland changed to world country
218 * Fix: Changing Type from Order List (https://wordpress.org/support/topic/changing-type-from-order-list/#post-10020043)
219
220 = 2.4.7 (2018-02-07) =
221 * Improvement: WooCommerce 3.3.1 compatibility
222
223 = 2.4.6 (2018-02-01) =
224 * Improvement: WooCommerce 3.3 compatibility
225 * Feature: The option to print the label on A4 and A6 format
226
227 = 2.4.5 (2018-01-10) =
228 * Fix: Export an order with an old delivery date
229 * Refactor: Error about rest api (https://wordpress.org/support/topic/error-in-woocommerce/)
230 ```des/class-wcmp-rest-api-integration.php): failed to open stream```
231
232 = 2.4.4 (2018-01-09) =
233 * Fix:Error about rest api (https://wordpress.org/support/topic/error-in-woocommerce/)
234 ```des/class-wcmp-rest-api-integration.php): failed to open stream```
235
236 = 2.4.3 (2018-01-05) =
237 * Fix: Add postnl fields to REST api to create order request
238 * Fix: Hide days when the pickup delivery is selected
239
240 = 2.4.2 (2017-10-29) =
241 * Fix: Price changes for 2018
242
243
244 = 2.4.1 (2017-10-12) =
245 * Fix: WooCommerce 3.2 compatibility
246
247 = 2.4.0 (2017-09-25) =
248 * Feature: Export world shipments + customs declaration form
249 * Feature: Show delivery options on thank you page
250 * Feature: Use WC logger when possible
251 * Fix: Return shipment error
252 * Fix: Order details layout for pickup location
253 * Fix: Delete cache of admin notices
254 * Fix: Display of negative delivery options price
255 * Fix: Improved tax handling on delivery options fees
256
257 = 2.3.3 (2017-06-27) =
258 * Fix: Pickup locations in Safari
259
260 = 2.3.2 (2017-06-26) =
261 * Fix: Delivery options header order
262 * Feature: Support for region (=state) in international addresses
263 * Feature: Hide Delivery options if PostNL service is unavailable
264
265 = 2.3.1 (2017-06-12) =
266 * Fix: Table Rate Shipping + WooCommerce 2.6 (error in settings)
267
268 = 2.3.0 (2017-06-12) =
269 * Feature: WooCommerce Table Rate Shipping support (woocommerce.com & Bolder Elements 4.0)
270 * Feature: Support for monday delivery
271 * Feature: Start print position
272 * Feature: Individual label printing from the order details page
273 * Fix: Delivery options checkout in Edge browser
274 * Fix: HTTPS issue with google fonts
275 * Fix: Multi-colli printing
276 * Fix: Delivery options tax in WC3.0
277 * Fix: Disable 'signature on delivery' & 'recipient only' when switching to pickup location in checkout
278 * Fix: Improve order-based calculation of highest shipping class
279
280 = 2.2.0 (2017-04-03) =
281 * WooCommerce 3.0 compatible
282 * **Requires PHP version 5.3 or higher**
283 * Feature: Validate NL postcodes
284 * Fix: Multistep checkout
285 * Fix: Email text translation typo
286 * Fix: Remove spin button (arrows) for house number checkout field
287 * Fix: Issues creating return shipments
288 * Fix: Clear delivery options (&costs) when no longer available or deselected
289 * Fix: Error exporting foreign addresses & PayPal Express checkout
290
291 = 2.1.3 =
292 * Feature: Option to autoload google fonts in delivery options
293 * Feature: [DELIVERY_DATE] placeholder on label
294 * Various minor fixes
295
296 = 2.1.2 =
297 * Fix: Script error on the Thank You page (interfered with Facebook/Google tracking)
298 * Fix: Don't show delivery date (backend/emails) if delivery days window is 0 (=disabled)
299 * Tweak: Notice for BE shop owners
300 * Tweak: Sanity check for delivery options
301
302 = 2.1.1 =
303 * Fix: Delivery options iPad/iPhone issues
304 * Fix: Ignore badly formatted delivery options data
305 * Fix: Don't show delivery options when cart doesn't need shipping (downloads/virtual items)
306 * Fix: Delivery options container not found (explicitly uses window scope)
307 * Tweak: Shipping column width/float in order backend
308 * Tweak: Page reloading & print dialogue flow optimizations
309
310 = 2.1.0 =
311 * Feature: Select combinations of Flat Rate & Shipping Class to link parcel settings & delivery options display
312 * Feature: Option to show delivery options for all shipping methods (except foreign addresses)
313 * Feature: Pick colors for the delivery options
314 * Feature: Set custom styles (CSS) for delivery options
315 * Feature: Enter '0' for the delivery days window to hide dates in the delivery options
316 * Fix: Don't apply 'only recipient' fee for morning & night delivery (already included)
317 * Fix: Order search issues
318 * Fix: 404 header on delivery options
319 * Tweak: Several delivery options style adjustments
320 * Tweak: Reload page after exporting
321
322 = 2.0.5 =
323 * Fix default insurance selection
324 * Tweak: Show shipping 'method title' instead of 'title' in settings (with fallback to title)
325 * Tweak: added `$order` object to `wcpostnl_email_text` filter
326
327 = 2.0.4 =
328 * Improved theme compatibility
329
330 = 2.0.3 =
331 * Fix: Checkout option fees tax
332 * Fix: Settings page conditional options display
333 * Improved settings migration from previous versions
334
335 = 2.0.2 =
336 * Fix order search
337 * Default delivery options background to white
338
339 = 2.0.1 =
340 * Completely revamped settings & export interface
341 * New delivery options replaces old 'Pakjegemak':
342 * Postponed delivery (pick a delivery date)
343 * Home address only option
344 * Signature on delivery option
345 * Evening or morning delivery option
346 * PostNL Pickup & Early PostNL Pickup
347 * Possibility to assign cost to the above delivery options
348 * Create return labels from the WooCommerce backend
349 * Uses new PostNL API
350
351 = 1.5.6 =
352 * Fix: Disable pakjegemak if 'ship to different address' is disabled after selecting Pakjegemak location
353 * Fix: Use billing postcode for Pakjegemak Track & Trace
354
355 = 1.5.5 =
356 * Fix: Foreign postcodes validation fix.
357
358 = 1.5.4 =
359 * Fix: Various Pakjegemak related issues (now saves & sends pakjegemak address separately to PostNL)
360 * Fix: Postcode validation issues with Portugal
361
362 = 1.5.3 =
363 * Feature: Edit postnl address fields on user profile page
364 * Fix: Bug with automatic order completion
365
366 = 1.5.2 =
367 * Feature: Option to keep old consignments when re-exporting
368 * Feature: Use billing name for pakjegemak (when empty)
369 * Feature: store pakjegemak choice
370 * Fix: prevent illegal export settings/combinations
371 * Tweak: Better error reporting
372 * Tweak: Small text changes (backend)
373
374 = 1.5.1 =
375 * Tweak: Added error when no consignments available when trying to print labels
376 * Tweak: Tip for direct processing of labels (when not enabled)
377 * Tweak: admin styles
378
379 = 1.5.0 =
380 * Feature: Shipment type setting (Pakket/Brievenbuspakje/Ongefrankeerd label)
381 * Feature: Multi-colli support
382 * Feature: More advanced insurance options
383 * Feature: Allow overriding pakjegemak passdata file via child theme (place in /woocommerce/)
384 * Fix: Backend address formatting/styles
385 * Fix: Unexpected output at first activation
386 * Tweak: Hide parcel settings for other shipment types
387 * Tweak: Remove deprecated comments field
388 * Tweak: Settings now under WooCommerce top menu
389 * Tweak: better error logging
390 * Dev: Code refactor
391
392 = 1.4.6 =
393 * Fix: Foreign Track & Trace link updated
394
395 = 1.4.5 =
396 * Tweak: Prevent label creation if direct processing is disabled. NOTE! If you had this setting disabled and were used to downloading the labels directly, you need to change this in the settings.
397 * Tweak: Remove required tags in checkout for disabled fields.
398
399 = 1.4.4 =
400 * Fix: error for missing shipping fields
401
402 = 1.4.3 =
403 * Fix: WooCommerce 2.2+ compatibility
404
405 = 1.4.2 =
406 * Fix: weight unit is now properly taken into account
407 * Tweak: different bulk action hook (for better compatibility)
408
409 = 1.4.1 =
410 * Fix: Broken special characters (ë, û, à etc.)
411 * Tweak: different API communication mode for secure configuration
412
413 = 1.4.0 =
414 * Feature: Print order number on label
415 * Feature: PakjeGemak integration
416 * Feature: Option to autocomplete order after successful export to PostNL
417 * Feature: Option to display Track & Trace link on my account page
418
419 = 1.3.8 =
420 * Fix: Big exports now run without any warnings/problems (was limited by the server)
421 * Fix: Names, cities etc. with quotes (')
422 * Fix: Error on combined foreign & Dutch exports
423 * Fix: IE9 compatibility
424
425 = 1.3.7 =
426 * Fix: Checkout placeholder data was being saved in older versions of Internet Explorer
427
428 = 1.3.6 =
429 * Feature: Option to download PDF or display in browser
430 * Fix: warnings when debug set to true & downloading labels directly after exporting
431 * Fix: WooCommerce 2.1 bug with copying foreign address data
432
433 = 1.3.5 =
434 * Fix: Errors when trashing & restoring trashed orders
435
436 = 1.3.4 =
437 * Fix: Errors on foreign country export
438 * Fix: legacy address data is now also displayed properly
439 * Tweak: background scrolling locked when exporting
440
441 = 1.3.3 =
442 * Fix: Checks for required fields
443 * Tweak: Improved address formatting
444 * Tweak: Removed placeholders on house number & suffix for better compatibility with old browsers
445
446 = 1.3.2 =
447 * Fix: Description labels for Custom ID ('Eigen kenmerk') & Message ('Optioneel bericht')
448
449 = 1.3.1 =
450 * Fix: button image width
451
452 = 1.3.0 =
453 * New PostNL icons
454 * Prepare & PDF buttons compatible with WC2.1 / MP6 styles
455 * Button styles are now in CSS instead of inline
456
457 = 1.2.0 =
458 * Feature: The postnl checkout fields (street name / house number) can now also be modified on the my account page
459 * Fix: WooCommerce 2.1 compatibility (checkout field localisation is now in WC core)
460 * Updated PostNL tariffs
461
462 = 1.1.1 =
463 * Fix: Labels for Custom id ('Eigen kenmerk') & Message ('Optioneel bericht') in the export window were reversed
464 * Fix: Removed depricated functions for better WooCommerce 2.1 compatibility
465
466 = 1.1.0 =
467 * Made extra checkout fields exclusive for dutch customers.
468 * Show process indicator during export.
469 * Various bugfixes.
470
471 = 1.0.0 =
472 * First release.
473
474 == Upgrade Notice ==
475 = 2.1 =
476 **Important!** Version 2.0 was a big update for this plugin, we recommend testing in a test environment first, before updating on a live site!
477