-
Notifications
You must be signed in to change notification settings - Fork 23
/
changelog.txt
1121 lines (1001 loc) · 57.9 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Plugin Name: MarketPress
Author: Marko Miljus (Incsub), Aaron Edwards (Incsub), Hoang Ngo (Incsub), Jonathan Cowher (Incsub), Ricardo Freitas (Incsub), Cvetan Cvetanov (Incsub), Julien Zerbib (Incsub), Sabri Bouchaala (Incsub), Emmanuel Laborin (Incsub)
Change Log:
----------------------------------------------------------------------
3.3.0
----------------------------------------------------------------------
- Added: Added new filter mp_media_buttons to disable/enable shortcode buttons in visual editor.
- Added: Greece to PayPal countries list.
- Fix: Always do TLS verification when making curl calls.
- Fix: Fix conflict with Branda.
3.2.9
----------------------------------------------------------------------
- Fix: Conflict with plugins WDP ID header and Dashboard 4.7
- GDPR: Ability to erase user personal data
- GDPR: Ability to export user personal data
- GDPR: Plugin information to default "Private Policy" page during auto-creation of the page
- GDPR: Checkbox with Privacy Policy during checkout
- Enhance: Define DONOTCACHEPAGE constant on plugin pages
- Fix: Paypal Error: 10413 - The totals of the cart item amounts do not match order amounts
- Fix: Highlighting and selecting variation values
- Fix: Add to cart showing Mixed Content error on mapped site in Domain Mapping plugin
- Fix: "OOPS! THAT PAGE CAN’T BE FOUND." message after plugin installation
- Fix: Validation not working for some fields in the Setup Wizard
- Fix: Export to PDF fatal error
- Fix: Remove plugin shortcodes from Customizer text fields
- Fix: Typo in helpers file
3.2.8
----------------------------------------------------------------------
- New: Options for sending all notification types
- Enhance: Isle of Wight added to the country list
- Enhance: Allow to deselect default variation in product edit screen
- Enhance: Remove extra fields from checkout
- Enhance: Users will not be able to order without filling out all required fields on checkout
- Enhance: Add prefixes to css styles so they do not affect non MarketPress pages
- Fix: Shipping tax calculated incorrectly
- Fix: PHP notices when creating variations
- Fix: Wrong symbol for Turkish Lira
- Fix: Tax settings for Canada not being applied correctly
- Fix: Error when adding coupon code on checkout page
- Fix: Error when creating global MarketPress pages on multisite
- Fix: Product page with variations will not auto select the first variation by default
- Fix: Inability to deselect default variation for a product
- Fix: Wrong sale price on products page for variable products
- Fix: Conflict with Domain Mapping plugin
3.2.7
----------------------------------------------------------------------
- Enhance: Update translation strings
- Fixed: Potential php object injection vulnerability
- Fixed: On some occasions products not added to cart when Hummingbird is enabled
- Fixed: Digital products not downloading after payment
- Fixed: Variation images not showing in custom template files
3.2.6
----------------------------------------------------------------------
- Enhance: Allow users to deselect default template in store settings
- Fixed: Products that were not sorted correctly before, will be automatically updated to work correctly
- Fixed: Missing translation strings for field verification on checkout pages
- Fixed: Taxes for digital and physical products
- Fixed: Default template styles
- Fixed: Compatibility with Toolset Types plugin
- Fixed: Coupon code add-on affecting taxes in cart
- Fixed: Warning on products page in admin
- Fixed: Quick setup notice not dismissed first time
- Fixed: Unable to checkout digital products
- Fixed: Save changes button in admin appears multiple time when using different translations
- Fixed: Layout on checkout when billing address does not match shipping address
3.2.5
----------------------------------------------------------------------
- Enhance: Removed @import directives for better compatibility with Hummingbird
- Enhance: Better support for older PHP versions (5.2 and 5.3)
- Fixed: Issue with Upfront navigation on single product pages
- Fixed: Tax rate resetting to 0%
- Fixed: PHP notices on product pages
- Fixed: PHP warning during quick setup
- Fixed: Styles in admin interface
- Fixed: MarketPress disabling front-end page comments
- Fixed: Some orders were not changing status to Paid with Stripe payment gateway
3.2.4
----------------------------------------------------------------------
- Added: Password check for password-protected products
- Added: Settings link on the Plugins page
- Added: Multi-file upload field type
- Added: Add-on to enable product multiple files
- Added: File list in case the product files are more than one
- Fixed: When editing variable products, do not update price if it is not set
- Fixed: Checkout page (sections not opening, inability to continue checkout without inputing zip code, notices on checkout page)
- Fixed: Coupons could not be applied to cart when date format was set to d/m/Y
- Fixed: Issue with conversions not being tracked in Google Analytics
- Fixed: Removed warnings and notices on product page
- Fixed: Various small bug fixes and improvements
- Changed: Simplify will now show message if the payment is declined
- Updated: WePay Payment gateway to use the latest v3 API with the 'address.postal_code' attribute
- Refactored: Download code to cater for multiple files via a parameter
3.2.3
----------------------------------------------------------------------
- Fixed: Product shortcode attributes not applied
- Fixed: HTML tags stripped from product description
- Tweaked: Added county Bristol for UK provinces
3.2.2
----------------------------------------------------------------------
- Fixed: PHP 7.1 Compatibility
- Tweaked: Bulk edit sets price to 0
- Tweaked: Global currency option missing in Store Network Settings
3.2.1
----------------------------------------------------------------------
- Fixed: Fatal error with PHP version lower than 5.5
3.2
----------------------------------------------------------------------
- Added: Option for user registration when force login used
- Fixed: Broken digital products link
- Fixed: Global cart products couldn't locate any orders
- Fixed: Use subsite merchant_email in exist instead of global one
- Fixed: Set default variation on single product page
- Fixed: Product image not updating in variable products
- Fixed: Out of stock product does not hide from product list
- Fixed: Compatibility issues with Divi
- Fixed: Cannot add new Attributes when product already have variations
- Fixed: Remove all MP tables when plugin uninstalled
- Fixed: Product price in cart not updated when coupon used
- Fixed: USPS throwing PHP errors
- Fixed: Wrong products list on email notification with global cart
- Fixed: Use a global currency when global cart active
- Fixed: Pass customer shipping info to Stripe
- Fixed: Special instructions field not saved
- Fixed: Variation product order limit always unlimited
- Fixed: Tax always added to product price
- Refactored: Multiple coupons usage
- Tweaked: Delete variations when product deleted
- Tweaked: Out of stock product set as draft
- Tweaked: Quick setup doesn't recognize state change for shipping
- Tweaked: MP displays mini cart on last updated or created page
- Tweaked: Product image not displayed in mini cart
- Tweaked: Check if a zero-currency is used when paying with Stripe
- Localization: Updated language file (.pot)
3.1.2
----------------------------------------------------------------------
- Added: Upfront Compatibility
- Fixed: 10400 - Order total is missing
- Fixed: Allow coupon calculation on all pages, not only MP pages
- Fixed: Product List widget not working with mp_product post type
- Tweaked: Meta boxes in store pages are not saving changes
- Tweaked: Adding forgot password link in checkout page login box
- Tweaked: Paypal Express mode always sandbox
- Tweaked: Removed second - sign from applied coupon
- Tweaked: Bug with Free Shipping being applied to United States destinations
- Security: Fix XSS Vulnerability
- Localization: Updated language file (.pot)
3.1.1
----------------------------------------------------------------------
- Security: Fix XSS Vulnerability
- Localization: Updated language file (.pot)
3.1
----------------------------------------------------------------------
- Fixed: Various issues with Mollie gateway
- Fixed: Fix checkout problems with Digital Products
- Fixed: Cart product links returning 404
- Fixed: Order confirmation email with Stripe gateway
- Tweaked: UX improvements on product variations
- Tweaked: Performance improvements (variations)
- Localization: Updated language file (.pot)
3.0.0.8
----------------------------------------------------------------------
- Fixed: Instructions field not showing when shipping and billing address were different
- Fixed: Various issues with product description
- Fixed: Compatibility with ACF
- Fixed: Compatibility with PHP 5.2 and PHP 7
- Fixed: States/Countries/Regions not shown for most Countries
- Fixed: Various issues with total cart & taxes
- Fixed: Issues with Cart not working/redirecting using MP Product shortcode
- Fixed: Product images with variations not working properly
- Fixed: Various issues with Product Inventory feature
- Fixed: Coupons codes showing on search results page
- Fixed: Update sales when order is cancelled, deleted, etc.
- Fixed: Various issues with orders on admin
- Fixed: Issue with order status when track inventory is enabled
- Fixed: Various issues with products with variations
- Fixed: Some countries required states to be filled to complete the checkout
- Fixed: MP Product shortcode not hiding meta when meta='0'
- Fixed: Various issues with payments gateways
- Fixed: Various issues with shipping methods
- Fixed: Google Analytics not tracking purchases
- Fixed: Products filter setting override (global vs shortcode)
- Fixed: Product Thumbnails not showing on certain pages (E.g. Order Status)
- Fixed: Various issues with global store & cart
- Fixed: Various issues with coupons
- Fixed: Fixed some reported issues with upgrading from MP 2.9.6.2 to 3.0.0.7
- Fixed: Various issues with notification emails
- Fixed: Issue that breaks MP after changing the Post Type
- Fixed: Issue that don't allow to download from external site (Digital Product)
- Tweaked: Added new States/Provinces/Regions
- Tweaked: Global improvements on UX/UI
- Tweaked: New way for customers to signup during checkout process
- Tweaked: Choose default variation on product edit page
- Tweaked: Add sale price as percentage or fixed amount
- Tweaked: Added the shortcode ORDERID to manual payments metabox
- Tweaked: Added new option to set products as featured as list them using MP shortcode
- Tweaked: Update the API request URL for authorize.net to new Akamai hosted server as recommended by authorize.net
- Localization: Updated language file (.pot)
- Localization: Validation messages are now translate ready
- Other global fixes and tweaks
3.0.0.7
----------------------------------------------------------------------
- Fixed: Issue with PDF Invoice add-on after complete order
- Fixed: Issues with ProSites add-on on multisite/network
- Fixed: Adding related product to cart
- Fixed: Compatibilities issues with Select2 and themes
- Fixed: Products not showing on main/sub-sites on multisite/network
- Fixed: Various issues with Global widgets
- Fixed: Missing company information on orders
- Fixed: Issue with 2Checkout finishing the order
- Fixed: Issues with PayPal chained payments
- Fixed: Issues with some payment gateways when ProSites was enabled
- Fixed: Sort by price when product has variations or special tax
- Fixed: Issues with product prices when special rate/charge shipping had values but weren't enabled
- Fixed: Infinite query loop on mp_product shortcode
- Fixed: Pagination and limits on products shortcode
- Fixed: Special Tax not updating product price on cart/checkout pages
- Fixed: Tax label not showing if prices not inclusive of tax is enabled
- Fixed: Various issues with Tax calculation
- Fixed: Bulk delete product variations not working
- Fixed: Global shortcodes/widgets show only on multisite/network
- Fixed: Compatibility with CP when using table rate shipping
- Tweaked: Load data on checkout fields from registered users
- Tweaked: Send download (Digital Product) on customer email after order
- Tweaked: Order emails content can be set on MP admin for both admin and customer
- Tweaked: Users can now login with username or email
- Tweaked: Hide estimated shipping on various cases (shipping disabled, digital products, etc...)
- Tweaked: Added download link on Digital Products after complete order (order status page)
- Tweaked: Added new option for Digital Products, collect full or basic customer details
- Tweaked: Hide shipping details if collect basic customer details is selected for Digital Products
- Tweaked: Added a notice when quick-setup is not completed
- Tweaked: Quick-setup now runs on new subsites on multisite/network
- Tweaked: More order detailed values on order page (admin)
- Tweaked: Added option to hide/show products filter on products archives pages
- Tweaked: Removed unused CSS files
- Localization: Fixed some missing strings
- Localization: Updated language file (.pot)
- Theming: Fixed some visual issues with themes not using border-box
- Other global fixes and tweaks
3.0.0.6
----------------------------------------------------------------------
- Fixed: Some cases with trashed orders showing on order status page
- Fixed: Sale price was applied when not enabled
- Fixed: Pro Sites add-on status on subsites (network)
- Fixed: Database error sort products by "random"
- Fixed: Coupons not showing on checkout page
- Fixed: Single order URL after checkout/order
- Fixed: Fatal error on activation (network)
- Fixed: Stripe not recognizing coupons
- Fixed: Shipping costs calculation using Weight Rate method
- Localization: Updated language file (.pot)
- Theming: Added mp_buy_button function
- Tweaked: Network widgets only load when network is enabled
- Tweaked: Cart updated after adding/removing coupons
- Tweaked: Clear coupons after removing all items from cart
- Tweaked: Checkout button on cart widget now links to cart page
- Tweaked: Added options to show/hide image, price and quantity on cart widget, mini-cart and cart shortcode
- Tweaked: New options for tax display: show prices with/without taxes and show/hide tax label on shop
- Added: Search orders (admin) by order meta data (SKU, Address, Price, etc...)
- Added: Continue shopping button on cart page
- Other global fixes and tweaks
3.0.0.5
----------------------------------------------------------------------
- Fixed: Paypal checkout order totals mismatch
- Fixed: USPS shipping issue
3.0.0.4
----------------------------------------------------------------------
- Added: Product stock shortcode
- Fixed: Mini-cart displayed several times
- Fixed: Incorrect product added to cart
- Fixed: Couple issues with select2 compatibility
- Fixed: Some compatibility issues (images) with Jetpack
- Fixed: Several coupons issues
- Fixed: Issue showing only one image on single-product
- Fixed: Issue adding product image on product edit page
- Fixed: Product variation images issues
- Fixed: Problems with languages (admin)
- Fixed: Metabox (paypal) saving value
- Fixed: Trashed orders showing on order status page
- Fixed: Prices not showing with decimal point
- Fixed: Pagination on home/front page sing mp_list_products shortcode
- Fixed: Some issues with related products
- Fixed: Related products limit using mp_related_products shortcode
- Fixed: Issue with attributes after saving
- Fixed: Estimated taxes total on cart page
- Fixed: More issues with update from 2.9 (warnings & reset store options)
- Localization: Updated language file (.pot)
- Theming: Added more fixes and checks for old template compatibility
- Tweaked: Cart widget now updates without refreshing page
- Tweaked: Users can show how to display prices on front-end (with or without tax)
- Tweaked: Estimated taxes is not shown on cart page if taxes are disabled
- Tweaked: Product variation popup now shows excerpt variation instead of main product description
- Other global fixes and tweaks
3.0.0.3
----------------------------------------------------------------------
- Added: Show/Hide Mini-Cart
- Added: Cart Widget / Cart Widget Shortcode
- Added: Global Products List Widget
- Added: Global Products Categories Widget
- Added: Global Products Tags Widget
- Fixed: Various issues with update from 2.9.x to 3.x
- Fixed: Issue with saving metabox data
- Fixed: Paypal saving issue
- Fixed: Coupon message for other users (user specific coupons)
- Fixed: Product weight
- Fixed: Load MarketPress styles and scripts on all required pages
- Fixed: Social Links on single product only option
- Fixed: Lightbox/Larger image on single product
- Fixed: mp_product shortcode image set to none
- Fixed: Stripe payment information incomplete
- Fixed: Update order status error
- Fixed: Issue with WP comments open
- Fixed: Buy button shortcode
- Security: Added new rules to prevent user registration SPAM
- Localization: Added .pot support
- Tweaked: Show how many times coupon get applied
- Tweaked: Added option to show/hide excerpt on listing and single product
- Tweaked: Added option to show/hiw product categories and products tags on single product
- Tweaked: Added option to show prices with decimal
- Tweaked: Added option to show/hide order menu when cart is disabled
- Tweaked: Added option to limit by words the excerpt on listings if excerpt is enabled
- Tweaked: Show excerpt bellow the price on single product if "show excerpt" is enabled
- Other global fixes and tweaks (small fixes/tweaks and library updates)
3.0.0.1
----------------------------------------------------------------------
Adding notice for deprecated gateways Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout
3.0
----------------------------------------------------------------------
- TONS of code cleanup/optimizations - 99% of PHP notices/warnings have been cleaned up
- New: Short codes can now be inserted via a popup wizard that is available from within the TinyMCE editor
- New: Product variations have been rebuilt from the ground up
- New: Setup wizard
- New: Regular/Sale price can now be bulk/quick edited
- New: Set store capabilities for all of your user roles
- New: Add-on system
- Coupons are now an add-on and can be disabled if not being used
- Admin interface has been rebuilt from the ground up
- Added new default store style
- Added Bahrain Dinars to the list of available currencies.
- Added links to settings/network settings on plugins page.
- Settings metaboxes now use ajax instead of page refresh where applicable.
- Added screen options tab on orders screen - users can now specify how many orders per page they want.
- Added on-demand (jQuery) data validation on most settings screens.
- Removed Cubepoints payment gateway as it no longer in active development.
- Removed Google Checkout payment gateway.
- Removed BitPay payment gateway.
- Removed iDEAL payment gateway.
- Removed Skrill/Moneybooker payment gateway.
2.9.6.2
----------------------------------------------------------------------
- Fixed issue with collecting billing address for digital products (when "Collect Address on Downloadable Only Cart" is checked and shipping method is not set)
2.9.6.1
----------------------------------------------------------------------
- Fixed issue with Statistics dashboard widget (not showing right previous month)
2.9.6
----------------------------------------------------------------------
- Fixed: South Africa should require zip code during checkout
- Fixed: PHP warnings when using Ultimatum theme
- Fixed: 2Checkout doubling price after being redirected
- Fixed: infinite loop bug in Authorize.net gateway
- Fixed: order-by dropdown doesn't always show default value from presentation settings
- Added: Updated 2Checkout gateway to latest API
2.9.5.9
----------------------------------------------------------------------
- Fixed: Fedex displaying all available services at checkout instead of only the services selected
- Fixed: PayPal Express is only applying coupon to one item
2.9.5.8
----------------------------------------------------------------------
- Added: products are no longer set to "draft" status when using the "hide out of stock products" setting -- instead they're now set to a status of "out_of_stock"
- Fixed: tax being charged on shipping even if tax shouldn't be charged
- Fixed: download url incorrect in order confirmation email for products being transitioned to a draft status due to "hide out of stock products" setting
- Fixed: user can't download purchased files when product is out of stock
- Fixed: bug with pagination when using [mp_list_global_products] on front page
2.9.5.7
----------------------------------------------------------------------
- Fixed: Paymill gateway is using SSL v3 which is suspectible to POODLE vulnerability
2.9.5.6
----------------------------------------------------------------------
- Fixed: products being set to draft status after being ordered
2.9.5.5
----------------------------------------------------------------------
- Added: "mp_imported_products_post_status" filter - gives the ability to set the post status of imported products
- Fixed: when importing products via CSV and products have the same featured image only the first product attaches the image
- Fixed: when using embedded Stripe checkout form the selected currency isn't being reflected in the payment form
- Fixed: bug with mp_list_products short code and pagination
- Fixed: bug with tax calculations due to over-rounding
- Fixed: bug with PayPal Express gateway when tax shipping is enabled
- Fixed: bug with automatic emails some times not being RFC5322 compliant due to line length
2.9.5.4
----------------------------------------------------------------------
- Fixed: Shipping tax not being calculated correctly when using tax-inclusive pricing
- Fixed: Out of stock products are still showing when "Hide out of stock items" is enabled
- Fixed: Extra title showing above the default product image in grid view
- Fixed: Pinterest pin-it button doesn't open in new window/tab
- Fixed: Store menu items regenerate themselves after being deleted
2.9.5.3
----------------------------------------------------------------------
- Fixed: Invalid measurement errors when using UPS shipping and a base country that uses the metric system http://wp.mu/a5s
- Fixed: Incorrect First-class Mail Parcel rates being returned when using USPS shipping
- Fixed: PHP warnings with wp_title_output()
- Fixed: PHP errors in PIN gateway
- Fixed: Nav Menu items classes not being applied correctly
- Fixed: Bug with pagination when displaying products from a given category using [mp_list_products] short code
2.9.5.2
----------------------------------------------------------------------
- Added: BN codes to PayPal gateways
2.9.5.1
----------------------------------------------------------------------
- Added: UPS shipping gateway now allows admin to choose the appropriate pickup type allowing for more accurate rate requests
- Fixed: When using global product list the "buy now" button adds the item to a cart that doesn't exist http://wp.mu/a2i
- Fixed: Shipping costs are being calculated but are not applying when order is processed http://wp.mu/a2h
- Fixed: Unable to deselect shipping options in Fedex shipping gateway settings http://wp.mu/a0s
- Fixed: Unable to deselect "use default embedded form" in Stripe gateway settings http://wp.mu/a0t
- Fixed: Unable to deselect checkboxes in Bitpay gateway settings
- Fixed: Extra characters at end of admin order notification email http://wp.mu/a0u
2.9.5
----------------------------------------------------------------------
- Fixed: When using global cart admin some times loses the ability to change shipping methods
2.9.4.9
----------------------------------------------------------------------
- Fixed: File download issue that some users were reporting
- Fixed: Conflicts with Ultimatum theme http://wp.mu/9tt
- Fixed: Global Product Widget is showing a description under each product even when "content to show" is set to none http://wp.mu/9u8
- Fixed: Shipping not being calculated correctly when using global cart and multiple shipping methods http://wp.mu/a0a
- Fixed: Issue with shipping/billing fields displaying incorrect values in admin http://wp.mu/a0b
- Fixed: Double escaping in global product list widget title http://wp.mu/a0e
2.9 - 1/22/2014 - Aaron Edwards, Arnold, Marko Miljus, Ryan Welcher, Jonathan Cowher
----------------------------------------------------------------------
- Added Coupons for individual categories/products
- Added compatibility with Google Universal Analytics
- Added Stripe embedded form button
- Added Pinterest "Rich Pins" w/advanced oembed endpoint
- Added show related products option
- Added Pickup in-store shipping option
- Added ability to assign a custom per-order limit to a product
- Add setting to turn off downloadable product default 1 per order limit
- Added filters to many template functions
- Minor bugfixes on Simplify gateway
- Deleted orders are now removed from usermeta
- Fixed bug with 2checkout where amount was returning more than 2 decimal places
- Added Russian Rubles to paypal currencies and locale
- Fix php warnings when switching between non-calculated shipping modules
- Fix bug with which gateway is shown when switching global cart in network settings
- Fix possible rounding error in Stripe gateway
- In Calculated Shipping plugins changed so if all weights in an order are zero then show Free Shipping
- In FedEx fixed problem with calculating the correct number of packages.
- Added https support for custom styles in the wp-content/marketpress-styles/ directory.
- Added ajax checkout error flag which is set when ajax starts and reset when ajax is finished. Prevents form submits from aborting shipping lookups.
- Removed apply_filters("mp_shipping_options_... call in extra_shipping_box_label() It passes nulls instead of an address so it can't properly recalculate the options anyway.
- Changes to USPS to standardize across the calculated shipping plugins.
- Make messages visual editor css more specific to avoid conflicts
- Add US Virgin Islands to USPS allowed base country list
- Added 4 new currencies to PayMill payment gateway (BGN, HRK, GIP, RON)
- Added 3 new currencies to PIN payment gateway (SGD, EUR and GBP)
- Added Australian Dollars (AUD) currency to Stripe payment gateway
- Added Norwegian Krone (NOK) currency to Skrill / MoneyBookers payment gateway
- Added 8 new currencies to 2CheckOut payment gateway (AED, ILS, LTL, PHP, RON, RUB, SGD, TRY)
- Added 2 new currencies to Authorize.net AIM payment gateway (AUD and NZD)
- Add filter so certain products can be excluded from GA tracking
- Pass manual gateway instuctions through wpautop() and allow shortcodes in it
- Remove encoded html from PayPal IPN strings http://wp.mu/7s9
- Delay upgrade rewrite flush to end of init hook http://wp.mu/7vt
- Remove retired Google checkout gateway
- Fixed bug with PayPal Express gateway and coupons where totals would be incorrect after being transferred to PayPal
- Updated mp_list_products() function to use WP-style arguments - users can still use existing argument style if they wish
- Added mp_list_products() can now display filters - no need to call mp_products_filter() in your theme template
- Added mp_list_products() can now display pagination
- Added mp_products_nav() to display products pagination
- Fixed some warnings related to shipping fields when checking out
- Fixed premature deletion of csv import file after previously deleting
- Fixed old text in Payflow gateway
- Related products can now be set to use either categories/tags separately or both at the same time
- Fixed bug when using category filter the page title, menu item, etc would not update accordingly http://wp.mu/8l9
- Fixed bug when checking out digital downloads and shipping was enabled the user would still be asked to choose a shipping method http://wp.mu/8mz
2.8.9 - 9/22/2013 - Aaron Edwards, Arnold, Marko Miljus
----------------------------------------------------------------------
- Added PIN payment gateway (beta)
- Added Simplify Commerce gateway by MasterCard
- Add multiple currency support to Payflow Pro gateway
- Add Euro support to Stripe gateway (Ireland)
- Add "Tax Label" setting to customize the tax line item label in the cart
- Removed all the old style PHP 4 constructors (Class name functions)
- Remove help screen when WPMUDEV_REMOVE_BRANDING defined
- Fixed order_confirmation_email() declaration to match it's parent.(Warnings)
- In USPS shipping added maximum box weights to flat rate boxes to improve calculating the number of boxes needed.
- Fixed problem where shipping option could be unselected if the suboption disappeared due to changing the address.
- In FedEx, default to residential delivery. Only allow the customer to change residential to commercial if Allow Commercial checked in settings.
- Changed Continue Checkout buttonform disabled to hide during the shipping rate update.
- Fix admin styles that stopped being included due to a typo
- Avoid errors in the Paypal gateway if 100% coupons are used by making price 0.01
- Don't show confusing subtotal with tax inclusive pricing on
2.8.8 - 7/15/2013 - Aaron Edwards, Arnold, Marko Miljus
----------------------------------------------------------------------
- Add SKU's to admin new order notification email
- Fixed a rounding error with Paypal chained and Tax Inclusive pricing
- Add support for Ireland locale in paypal and not require postal code
- Add support for CAD, EUR and GBP to Authorize.net AIM gateway
- Add support for GBP to Stripe gateway
- Fix store count on global checkout confirmation screen
- Fix coupons datepicker
- Added process_shipping_form call to shipping_sub_options() so that custom fields that can affect shipping will be read. (ie Resedential in FedEx)
- Make custom column code more efficient - props @michael_cannon
- Add a note to table rate shipping that it uses the pre-tax order total
- Add Serbia and Montenegro country codes
- Add mp_product_title() template function
- Add mp_product_description template function
- Add mp_product_meta template function
2.8.7 - 5/24/2013 - Aaron Edwards
----------------------------------------------------------------------
- Make order and payment history times adjust dynamically for the site timezone
- Add Paymill gateway (beta)
- Fix encoded discount display in confirmation emails and PayPal
- Fix products display reverting to grid in list mode when ajax filters are used
- Fix undefined filter_post_kses error for subsite admins in multisite in Manual Payments and Cubepoints gateways
- Fix a Manage Orders page pagination display bug/conflict
- Fix fatal conflict with SEO features of Genesis/Catalyst themes on category pages
- Change text of last checkout breadcrumb to "Order Complete"
- Sanitize price fields in various shipping modules
- Add New Zealand locale to paypal gateways
2.8.6 - 5/8/2013 - Aaron Edwards
----------------------------------------------------------------------
- Fix broken new order emails if % is included in product title
- Fix paypal express documentation links
- Add setting for "Collect Address on Downloadable Only Cart"
- SQL injection hardening
2.8.5 - 4/11/2013 - Aaron Edwards
----------------------------------------------------------------------
- Allow styling of global products by site (blogid in classname)
- Fix sort by price in product list widget http://wp.mu/1r5
- Fix popular products shortcode ordering
- Change Shipping form label when shipping is turned off
- Add CAD to stripe gateway
- Add Israel locale to PayPal gateway
- Fix function name conflict with WP-Client plugin
- Fix mp_product_list shortcode list_view argument
2.8.4 - 3/8/2013 - Aaron, Arnold
----------------------------------------------------------------------
- Added eWay Rapid Payments 3.0 gateway (beta)
- Fixed FedEx no results problem. Shipment in non US countries were treated as International even though the destination was the same country.
- Added "Disable Large Image Display" to Presentatio, which prevents clicking on a product image from displaying a large image. Requested to prevent poaching large gallery images.
- Changed class if Lightbox is disabled so that if another plugin loads lightbox the product images won't use it.
2.8.3 - 3/6/2013 - Aaron, Arnold
----------------------------------------------------------------------
- Fix a fatal error that slipped through when sending emails. Important!
2.8.2 - 3/5/2013 - Aaron, Arnold
----------------------------------------------------------------------
- Add mp_product_sku() template function and shortcode
- Add setting to disable sales tax on digital products if desired
- Add option to set products to draft when out of stock
- Show all gateways to super admins in multisite (avoid confusion)
- Fix rounding errors with tax inclusive pricing (big one!)
- Fix problems with ajax paging with grid on taxonomy archive pages
- Fix css class on product images
- Fix being unable to overwrite shipping information fields with a blank value
- Fix grid bug when no styles are loaded http://wp.mu/h7
- Pass messages settings through wpautop()
- Added check for US country before trimming zip code to 5 characters in calculated shipping modules
- Disabled continue button on shipping form while shipping rates are being updated
- Fix up some notices and warnings on profile page: http://wp.mu/kl
- Reformat various template functions and their documentation
- Fix bug in PayPal/Moneybookers/eWay gateways with shipping method set to none
- Fix iDeal gateway tax inclusive pricing bug by dropping extra tax line item
2.8.1 - 1/21/2013 - Aaron
----------------------------------------------------------------------
- Add very beta Fedex shipping module
- Fix php warning when marking as shipped
- Fix missing orders export box on All orders page: http://wp.mu/ee
- Small fixes to css styles for external links
2.8 - 1/15/2013 - Aaron, Arnold, Cole, Enzo
----------------------------------------------------------------------
- Added UPS Shipping plugin!
- Added built in grid views!
- Add in AJAX dropdown category and order filters to listings pages
- Add optional breadcrumbs to checkout process steps
- Add default product images
- Added ability to trash/delete orders and adjusts stock counts accordingly
- Add featured image import support to the CSV importer
- Add a "clone product" functionality
- Add hooks for custom shipping methods and tracking links
- Major refresh of css styles
- Forced shipping option recalculation when Country changes.
- Fix php warning on category list page old menus
- Fix bug with product list widget when ordering by price or sales
- Fix missing closing tag in global widget breaking drag and drop
- Fix shipping settings save filter for method plugins: http://wp.mu/d7
- Error check in Manual Payments gateway: http://premium.wpmudev.org/forums/topic/bug-with-manual-payment
- Fixed 10525 Paypal errors in global cart checkouts
- Change the "from" price shown on variation listings to the lowest
- Change PayPal generated timestamps for server timezone support
- Fix double trigger of 'mp_order_paid' hook
- Added APO state codes to the marketpress-data.php so addresses can make it past PayPal's address checker,
- Use "APO", "FPO" or "DPO" for the City and 10 digit Zip code.
- Sorted USPS shipping choices in Ascending order so that the lowest price will be the default.
- Changed the Shipping sub options <select> to a select box instead of a dropdown.
- Added code to insure the first item in the Shipping sub options is selected if suboption is blank. Makes sure an item shows in iPad.
- Set minimum "size" on shipping_sub_options select box to 4 for Safari and Chrome quirk.
- Removed Handling charge display from USPS shipping options.
- Let ounces go decimal for shipping weight
- Add hooks to coupon functions
- Added another error passing method for calculated rates. If a suboption key contains 'error' the value is an error message.
- Fix ajax when force admin ssl is on
- Fix conflict with PODS plugin
- Other minor bug/notice fixes
2.7 - 10/03/2012 - Aaron Edwards
----------------------------------------------------------------------
- Include shopping cart item details in orders CSV exports
- fix special instructions in CSV order exports
- Add special instructions to admin new order notification
- Support ecommerce tracking with our Google Analytics plugin on multisite
- Don't require shipping fields when Shipping Modules are turned off
- Display shipping inclusive of tax if tax inclusive pricing is on
- Urlencode paypal url fields to support utf8 store slugs
- Fix an error and debug code in PayPal Express gateway
- Fix custom message showing in cart widget when empty: http://premium.wpmudev.org/forums/topic/shopping-cart-page-message-repeating-in-shopping-cart-widget
- Fix hooks for Affiliate plugin integration with Manual Payments gateway. Props @Rystraum!
- iDeal gateway bugfixes
- Fix rounding problems with tax prices when tax inclusive pricing is on
- Fix bug in flat rate shipping calculations
- Fix issue with shipping being charged for downloadable orders in global cart
2.6.4 - 9/04/2012 - Aaron Edwards
----------------------------------------------------------------------
- Important bugfix with saving Extra Shipping costs and Weights
- Fix bugs in iDeal gateway: http://premium.wpmudev.org/forums/topic/ideal-making-it-work
2.6.3 - 8/29/2012 - Aaron Edwards
----------------------------------------------------------------------
- Add Schema.org microdata to products for SEO, props @aristath!
- Add "from" price label to listings of multiple variation products
- Add cart message even when its empty
- Many many php notice fixes
- Fix major issues with new sites and coupons
- Fix coupons with a number as the code
- Fix rewrite flushing when changing store slugs
- Fix a stripslashes issue with email settings
- Fix unchecking of personalization checkboxes bug
- Fix outdated product urls in orderstatus after slug changes
2.6.2 - 7/13/2012 - Aaron Edwards/Arnold Bailey
----------------------------------------------------------------------
- Added per shipment handling charge to USPS, one for domestic and one for international shipping.
- Add Argentina and Brazil to PayPal gateway countries
- Fix issue with category dropdown widget displaying all products
- Fix some potential problems with new installs and the CubePoints gateway
2.6.1 - 7/13/2012 - Aaron Edwards/Arnold Bailey
----------------------------------------------------------------------
- Display Shipping Option and Shipping Sub Option next to shipping cost on Order Manage Page.
- Added shipping method to the SHIPPINGINFO in email. If mp_shipping_info['method'] not yet set from actual shipping, displays the customer's choice.
- Show Shortcodes and importers tabs in listing only mode
- Major bugfix to gateway plugins settings filters
- Fix stripslashes issue with manual payments gateway
- Fix email filtering for manual payments gateway
- Change order of 'mp_new_order' hook
- Add some more filters for WPML compatibility
- Verify product_ids before adding to cart
- Fix Egypt Pounds currency symbol
- Fix missing labels for custom styles in Network settings
2.6.0 - 6/6/2012 - Aaron Edwards/Paul Menard
----------------------------------------------------------------------
- Added support for per Product and variation custom fields for personalization
- Allow shortcodes to work in custom page messages
- Fix issue with Stripe payment gateway JS conflict. http://premium.wpmudev.org/forums/topic/marketpress-problem-cant-finish-checking-out
- Fix an issue with numbered tags showing all products
- Bug fixes with $content argument in mp_product template function/shortcode
- Wrap prev/next nav links in wrapper for styling
2.5.9 - 5/5/2012 - Aaron Edwards/Arnold
----------------------------------------------------------------------
- Fix problems with USPS shipping module
- Fix stripslashes issue with widget custom content
- Fix issues with single product shortcode attributes
2.5.8 - 4/26/2012 - Aaron Edwards
----------------------------------------------------------------------
- Improvements to coupon handling in PayPal Express gateway
- Add cart details to PayPal Express gateway paypal history
- Fix a bug in chained payments gateway not filling shipping/tax totals
- Internationalize various date strings on the order status pages
- Add UTF-8 BOM to csv exports http://premium.wpmudev.org/forums/topic/export-orders-csv-character-support
2.5.7 - 4/16/2012 - Aaron Edwards
----------------------------------------------------------------------
- Fix issues with PayPal chained payments gateway for sure
- Fix bug in Payflow Pro gateway: http://premium.wpmudev.org/forums/topic/marketpress-payflow-pro-not-sending-info-to-paypal
- Separate AJAX cart and checkout JS: http://premium.wpmudev.org/forums/topic/checkout-button-disappears
2.5.6 - 4/02/2012 - Aaron Edwards
----------------------------------------------------------------------
- Create MP_HIDE_MENUS define to hide store menus
- Add basic error messages for downloads
- Fix ocassional issues with chained payments gateway
2.5.5 - 3/23/2012 - Aaron Edwards
----------------------------------------------------------------------
- Fix shortcodes documentation
- Fix stripslashes issue in cart widget custom text
- Fix bug with x_delim_data in authorize.net gateway
- Fix wrong orderstatus link on global checkout confirmation page
2.5.4 - 3/19/2012 - Aaron Edwards
----------------------------------------------------------------------
- Four new shortcodes! [mp_product] (display a single product anywhere!), [mp_product_image], [mp_buy_button], [mp_product_price]
- Add support for custom css files in /wp-content/marketpress-styles/ folder to avoid overwriting on updates
- Fixed improper switching to V2 rate schedule on foreign orders in USPS module - Arnold Bailey
- Genesis compatibility improvements with it's featured images settings
- Fix bug with message display when there are no products in the product list or shortcode
2.5.3 - 3/09/2012 - Aaron Edwards
----------------------------------------------------------------------
- Fix table/weight rate shipping calculations for Canada - props shaunmacrae
- Minor fixes/updates to the WP ecommerce importer
2.5.2 - 2/29/2012 - Aaron Edwards
----------------------------------------------------------------------
- Minor fix to the Store Styles drop down display
2.5.1 - 2/29/2012 - Aaron Edwards
----------------------------------------------------------------------
- Fix bugs with iDEAL gateway
- Add support for multiple iDEAL banks
- Rename Store Themes to Store Styles to avoid terminology confusion
- Switch lightbox to GPL compatible lumebox
- WPML compatibility fixes
2.5 - 2/16/2012 - Aaron Edwards
----------------------------------------------------------------------
- Add a full CSV product importer!
- Add orders exporting as CSV by year and month
- Add weight based shipping module
- Add support for calculated shipping modules
- Add USPS calculated shipping module!
- Add order statistics dashboard widget
- Add store info to right now widget
- Add Log entry for cubpoints gateway checkouts
- Add "Only show on store pages" option to all widgets
- Add setting to disable excerpts in product lists
- Add per product special tax rates
- Add Pro Sites level recognition for multisite: http://premium.wpmudev.org/forums/topic/feature-request-advanced-integration-of-marketpress-and-pro-sites
- Add Stripe payment gateway! Accept credit cards directly on your site with full PCI compliance
- Add custom API url support to Authorize.net gateway for compatibility with many 3rd party gateways
- Add beta PayPal Payflow Pro gateway
- Add beta iDEAL gateway (ING bank only)
- Add setting to hide Product Image on single pages
- Fix translation issues for gateway and shipping plugin names
- Fix bug with category dropdown widget
- Fix custom menu current item highlighting in WP 3.3
- Fix tax calculation bug with Google Checkout gateway for orders with no tax
- Fix lightbox z-index on Twenty Eleven theme
- Make shipping fields behavior consistent with global cart enabled
- Fix currency rounding problem for large prices with decimals off
- Remove add to cart button when in product listing mode and no custom link set
- Allow $0 sale prices
2.4.2 - 12/16/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix a fatal bug introduced to the PayPal express gateway in 2.4.1. Important update!
- Add sanity checks for long product names into PayPal gateway to prevent errors
2.4.1 - 12/14/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix negative quantities being able to be added to your cart: http://premium.wpmudev.org/forums/topic/marketpress-security-bug
- Fix removing cart items when global is set to on
- Gracefully handle global carts if a seller hasn't configured PayPal by skipping their checkout
- Handle SSL properly on checkout page
- Fix out of stock AJAX message for variation products: http://premium.wpmudev.org/forums/topic/out-of-stock-triggers-when-only-one-of-the-variations-is-sold-out-but-others-are-still-available
- Hook into logout to clear personal session information: http://premium.wpmudev.org/forums/topic/security-issue-with-marketpress
2.4 - 12/12/2011 - Aaron Edwards
----------------------------------------------------------------------
- WP 3.3 Compatibility - Not backwards compatible
- Pro Sites support - level support coming soon...
- Add textdomain to plugin header to translate plugin description
- Change link field to work with low resolution
- Fix bug with icons css theme
- Update the table rate shipping for international support
- Update chained payments documentation
- Add Turkish lira to PayPal gateways
- Make shipping info available to search for on orders page. http://premium.wpmudev.org/forums/topic/search-store-orders-by-name-bug
- Fix global products pagination missing last page
2.3.2 - 10/28/2011 - Aaron Edwards
----------------------------------------------------------------------
- Add JS to dropdown categories shortcode
- Fix image size in global product listings to be correct
- Fix missing title on product list pages
- Fix title incompatibility with Genesis & Catalyst framework based themes
- Style fixes to icons CSS theme
- Fix double email for digital only orders
2.3.1 - 10/17/2011 - Aaron Edwards
----------------------------------------------------------------------
- Still send shipped notification email for download only carts (for gateways with delayed paid confirmations)
- Fix cart widget title getting removed on AJAX add to cart for some themes
- Combine forms on the edit order screen to avoid confusion when saving
- Add back in Inventory Threshold option
- Add action hook to mp_order_status() template function.
- Add points and credits currency types
2.3 - 10/11/2011 - Aaron Edwards
----------------------------------------------------------------------
- Add Table Rate shipping plugin
- Fix tax inclusive display in cart widget
- Fix blank gateway select page for download only carts combined with PayPal Express gateway
- Add back email field for download only carts
- Fix graceful degrading of AJAX cart handling
- Adjust PayPal gateway to gracefully handle carts with free products in them
2.2.1 - 10/03/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fixed small bug in canada tax handling
- Added ajax shipping province dropdown for USA, CAN, AUS
- Fixed small checkout error display bug
- Fixed slashes issue in emails
- Fixed default tax display with tax inclusive pricing on
2.2 - 9/22/2011 - Aaron Edwards
----------------------------------------------------------------------
- Added Cubepoints gateway - Requires the CubePoints plugin: http://wordpress.org/extend/plugins/cubepoints/
- Added eWay Shared Payments gateway
- Add Tax inclusive pricing option
- Add tracking number field to shipping section of Order management
- Add notes field to order management page
- Add special instructions field option for orders that require personalization
- Skip shipping checkout page for digital only orders
- Fix dropdown product category widget
- Fix bug in tax calculation for some countries
- Fix bug in order payment status change to paid
- Fix small bug in global products paging last page
2.1.6 - 9/10/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix sprintf() bug on paypal-express gateway
- Fix rare bug with paypal-express gateway where orders were being duplicated across random blogs
- Usability improvements to settings pages
- Fix problem with network gateway control when listings only are enabled on main site
- Fix Global products listing paging
- Add global products previous/next navigation links
2.1.5 - 9/01/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix global product indexing when trashing/untrashing products
- Fix updating exisiting products in global index
- Fix rewrites to ignore base (example /blog/)
- Up the timeout to 60 seconds for Paypal API requests
2.1.4 - 8/15/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix global cart cookies for some setups
- Fixes to order arguments for shortcodes and template functions
- Fix order sort for all old products
- Fix browse products link in empty cart page
- Attempt to fix occassional "missed a step" message on checkout confirmation
2.1.3 - 7/06/2011 - Aaron Edwards
----------------------------------------------------------------------
- Added a little hack for compatibility with Headway and Genesis themes
2.1.2 - 7/03/2011 - Aaron Edwards
----------------------------------------------------------------------
- WP 3.2 compatibility
- Google Analytics Ecommerce tracking support
- Ability to add define('MP_HIDE_LOGIN_OPTION', true); to hide the login option on checkout
- Fixed redirect bug for login link on checkout
- Many new hooks for WPML full translation capability
- Ability to add add_theme_support('mp_style') to disable frontend css
- Fixed Kenyan Shilling symbol
- Added hooks to the download handler to allow plugins to override
- Fixed bug in drop down menus
2.1.1 - 6/03/2011 - Aaron Edwards
----------------------------------------------------------------------
- Changes to the download script to enable larger files
- Ability to add define('MP_LARGE_DOWNLOADS', true); to wp-config.php to use redirects for very large files
- Some improvements to the WP e-Commerce product importer for old thumbnails
2.1 - 5/25/2011 - Aaron Edwards
----------------------------------------------------------------------
- WP e-Commerce product importer added
- New importer plugin class added for others to easily build importers
- Fix rare bug with permalinks
- Try to prevent other plugins that cache output from stopping downloads
2.0.6 - 5/20/2011 - Aaron Edwards
----------------------------------------------------------------------
- Add configurable store admin email address
- Filter email from and name for store emails
- Add buyer email to order admin notification
- Remove digital flag in PayPal express gateway
- Fix out of order </tbody> tag on cart page
- Remove PHP5 depreciated class assignments
2.0.5 - 5/12/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix slug conflicts with virtual pages and similar permalinks: http://premium.wpmudev.org/forums/topic/checkout-page-redirecting-slug-bug
2.0.4 - 5/10/2011 - Aaron Edwards
----------------------------------------------------------------------
- Add Kuwaiti dinar
- Additional error checks for FrameMarket theme
- Add ZAR to 2Checkout gateway
- Add check for MP_HIDE_ORDERSTATUS_SHIPPING constant
2.0.3 - 5/06/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix another bug with Authorize.net gateway when product names are too long
- Update UK county list
- Fix some style issues
2.0.2 - 5/02/2011 - Aaron Edwards
----------------------------------------------------------------------
- Fix up bugs with Authorize.net gateway
- Bugfixes with storing shipping info on checkout
- Disable ajax cart if domain mapping is set to original backend
- Fix add link popup in messages rich text editors
2.0.1 - 4/29/2011 - Aaron Edwards
----------------------------------------------------------------------
- Change cart cookie name to prevent errors with existing carts on upgrade
2.0 - 4/10/2011 - Aaron Edwards & S H Mohanjith
----------------------------------------------------------------------
- Global carts/checkout - PayPal Express only compatible gateway currently
- Downloadable Products
- Limit download count per purchase
- Product variations
- Per order product limits
- Skipping payment form page if only one gateway allowed
- Hide cart widget on cart pages
- Add cart widget to sidebar on first install
- Option to force login to checkout
- Moneybookers gateway
- Google Checkout gateway
- Many many bugfixes
2.0.4
---------------------------------------------------------------------
- Fixed: Invalid argument /template-functions.php on line 1736