forked from jigoshop/jigoshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
executable file
·976 lines (843 loc) · 62.9 KB
/
readme.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
=== Jigoshop ===
Contributors: Jigoshop
License: GNU General Public License v3
Tags: 2checkout, 2co, affiliate, authorize, cart, checkout, commerce, coupons, e-commerce,ecommerce, gifts, moneybookers, online, online shop, online store, paypal, paypal advanced,Paypal Express, paypal pro, physical, reports, sagepay, sales, sell, shipping, shop,shopping, stock, stock control, store, tax, virtual, weights, widgets, wordpress ecommerce, wp e-commerce, woocommerce
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=finance%40jigoshop%2ecom&lc=US&item_name=Jigoshop%20%2d%20Wordpress%2eorg%20donation%20link&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
Requires at least: 4.0
Tested up to: 4.7.1
Stable tag: 1.18.3
A feature-packed eCommerce plugin built upon WordPress core functionality ensuring excellent performance and customizability.
== Description ==
= Please note: Jigoshop 1.x has been replaced by <a href="https://wordpress.org/plugins/jigoshop-ecommerce/">Jigoshop eCommerce</a>. Please use Jigoshop eCommerce plugin instead or upgrade if you are using Jigoshop 1.x already. Support for Jigoshop 1.x will end on the 1st April 2017.
=
Use <a href="https://www.jigoshop.com">Jigoshop</a> to turn your WordPress website into a dynamic eCommerce store.
Jigoshop is led by a motivated development team with years of experience with delivering professional online shops
for global brands. Our number one priority is to make it easy to get professional results for WordPress eCommerce solution.
With the Jigoshop plugin for WordPress you have your very own web store for your website. You have complete control
of your eCommerce shop.
= SETUP IN MINUTES =
Setup your web store in minutes with an extensive amount of shop settings including base country, currency,
catalog options, stock management, unlimited tax settings, shipping and payment gateways out of the box.
Plus there are hundreds of additional extensions to build up Jigoshop to be an even more powerful WP eCommerce
solution.
= PRODUCT TYPES =
Jigoshop includes several product type options for your eCommerce shop. They include:
* Downloadable or Virtual products
* Variable products (e.g. offer Size: S,M,L for one product)
* Affiliate (External) products (i.e. link your Add to cart button off-site)
* Grouped products
= DETAILED REPORTS =
Within the Jigoshop eCommerce plugin are various reporting features to give you real-time insight of your
shops performance. Features include sortable sales graphs and incoming order/review notifications.
= STOCK MANAGEMENT =
Jigoshop has the ability to manage your shops stock. Included is an option to allow Jigoshop to inform you
of low stock once it reaches your set threshold so that your shop never runs out of stock.
= EXTEND YOUR SHOP! =
Sure, Jigoshop runs out of the box! But Jigoshop’s functionality doesn’t have end there. We have over
one hundred extensions for Jigoshop available that will further extend the power of the best eCommerce
plugin ever! They include more Payment Gateways, more Shipping methods and much more.
Jigoshop eCommerce strives to maintain its status as the best WordPress eCommerce plugin ever. We hope you’ll
choose the best to power your eCommerce shop and help us prove to you that we really are the best!
You can take a look at our official extensions here: https://www.jigoshop.com/product-category/extensions/
And our Jigoshop-optimized themes here: https://www.jigoshop.com/product-category/themes/
== Upgrade Notice ==
[Click here for complete changelog](https://wordpress.org/plugins/jigoshop/changelog/ "Jigoshop Changelog")
== Installation ==
= Please note: Jigoshop 1.x has been replaced by <a href="https://wordpress.org/plugins/jigoshop-ecommerce/">Jigoshop eCommerce</a>. Please use Jigoshop eCommerce plugin instead or upgrade if you are using Jigoshop 1.x already. Support for Jigoshop 1.x will end on the 1st April 2017.
=
= Requirements =
* WordPress 4.0 or greater
* PHP version 5.4 or greater
* MySQL version 5.1 or greater
* The mod_rewrite Apache module (for permalinks)
* Some payment gateways require fsockopen support (for IPN access)
* Some extensions require allow_url_fopen enabled (for remote files fetching)
= Installation =
1. Download the Jigoshop plugin file
2. Unzip the file into a folder to your computer
3. Upload the `/jigoshop/` folder to the `/wp-content/plugins/` folder on your site
4. Visit the plugins page in WordPress Admin to activate the Jigoshop plugin
You can also navigate to the <a href="https://www.jigoshop.com/documentation/installation/">more in-depth installation or upgrade</a> guides.
= Setting up Jigoshop =
Take a look through our <a href="https://www.jigoshop.com/documentation" title="Jigoshop usage guide">Jigoshop usage guides</a> to help you setup Jigoshop for the first time.
== Frequently Asked Questions ==
= Please note: Jigoshop 1.x has been replaced by <a href="https://wordpress.org/plugins/jigoshop-ecommerce/">Jigoshop eCommerce</a>. Please use Jigoshop eCommerce plugin instead or upgrade if you are using Jigoshop 1.x already. Support for Jigoshop 1.x will end on the 1st April 2017.
=
= Will Jigoshop work with X theme? =
Jigoshop will in theory work with any theme, but of course, certain parts may need to be styled using CSS to make them match up. We've added default styling for Twenty Ten (the WordPress default theme) and we also offer <a href="https://www.jigoshop.com/product-category/themes/">premium themes optimised for Jigoshop</a>.
If you need a theme built, or have a theme that needs styling, <a href="https://www.jigoshop.com/contact/">give us a shout</a> and we may be able to assist.
= Can I have Jigoshop in my language =
Jigoshop comes with a .po file and is localisation ready in over 10 languages.
You can also <a href="https://www.jigoshop.com/documentation/localization-tutorial/">create your own translations</a> for Jigoshop.
= Which payment gateways do you have? =
Take a look through <a href="https://www.jigoshop.com/documentation/payment-gateways/">our list of payment gateways</a>. There are some free ones that are included with Jigoshop, and even more are available <a href="https://www.jigoshop.com/product-category/payment-gateways/">on jigoshop.com</a>.
= Will tax settings work in my country? =
Jigoshop has a flexible tax rule system which allows you to define tax rates per country - it should allow you to do what you want.
= I need hosting! =
You're in luck! We offer <a href="https://www.jigoshop.com/">optimised hosting packages</a> starting from 10 GBP per month.
= I need help! =
We have <a href="https://www.jigoshop.com/documentation/" title="Jigoshop Documentation">documentation</a> for seeking information.
However, if you want priority, dedicated support from Jigoshop staff, we dp offer <a href="https://www.jigoshop.com/support/" title="Jigoshop Premium Support">premium support packages</a>.
== Screenshots ==
1. Jigoshop admin dashboard
2. Admin product edit page
3. Jigoshop Demo store homepage on a premium theme
4. Example customer checkout page
5. Product page
6. Jigoshop Reports
7. Example category page
== Changelog ==
= 1.18.3 - 2017.01.17 =
* Fix: Added important note about JSE.
= 1.18.2 - 2016.10.26 =
* Fix: Disable uninstallation.
= 1.18.1 - 2016.10.12 =
* Fix: Getting data from jigoshop.com.
* Fix: New guide link.
* Fix: Messages on migration information.
= 1.18 - 2016.08.02 =
* New: Migration information.
= 1.17.16 - 2016.07.05 =
* Fix: Emails no showing state names.
* Fix: Now saving customer details on user edit page.
= 1.17.15 - 2016.04.22 =
* Fix: Fixed adding attributes when 'demo' attribute exist.
= 1.17.14 - 2016.04.01 =
* Fix: Admin user edit page.
* Fix: vulnerability problems.
= 1.17.13 - 2016.03.31 =
* Fix: Dashboard css.
= 1.17.12 - 2016.03.31 =
* Fix: changed tested up to 4.5
= 1.17.11 - 2016.01.8 =
* Fix: sending emalis from cron jobs.
= 1.17.10 - 2015.12.21 =
* Fix: No more warrnings about missing tax definition.
* Improved: Allow to change download link amount.
* Improved: Added separated css classs for report csv link. Thanks to newash!
* Improved: Integrate Variation Sale Scheduler.
* Improved: Added hook for additional Analytics settings.
= 1.17.9 - 2015.09.28 =
* Improved: Display product addons in email order table.
* Improved: Optimize tax select in jigoshop settings.
* Improved: Improve eu vat validation.
= 1.17.8 - 2015.09.03 =
* Improved: Shipping country now doesn't change on prage reload.
* Improved: EU Vat is now avaliable to edit.
* Improved: Allow to select free shipping method automatically after successful coupon validation.
* Improved: Added State/Province select for United Kingdom.
* Fix: Variations select.
* Fix: Subtotal update in cart.
* Fix: `[sale_products]` shortcode
= 1.17.7 - 2015.06.16 =
* Improved: Default email template for change order status from waiting for payment to processing.
* Improved: Email templating. Thanks to newash!
* Improved: Used inline styles in email template.
* Improved: Allow to save custom order data. Thanks to newash!
* Improved: Jigoshop core is now more customizable for other plugins.
* Fix: Too long table key.
* Fix: Checkout number format issue.
* Fix: Typo. Thanks to newash!
= 1.17.6 - 2015.05.08 =
* Fix: Jigoshop License Validator.
= 1.17.5.1 - 2015.05.06 =
*Fix: Customer session.
= 1.17.5 - 2015.05.05 =
* Improved: Optimized scripts.
* Improved: Replaced old screenshots.
* Fix: Email download link.
= 1.17.4 - 2015.04.28 =
* Improved: Possibility to show reports for last 30 days and for all orders.
* Improved: Possibility to show reports for specified order statuses.
* Improved: Possibility to sort available variations on products page.
* Improved: Product reports show sold quantity.
* Improved: Category reports show horizontal lines.
* Improved: Reports page displays properly values.
* Improved: Custom themes compatibility.
* Fix: JS error in Checkout page.
* Fix: Hidden login box in my account page.
* Fix: `[order_items_table]` shortcode.
= 1.17.3 - 2015-04-20 =
* Improved: Reports page.
* Fix: Scripts and compatibility with JRTO.
* Fix: Doubled tip messages.
= 1.17.2 - 2015-04-18 =
* Fix: Scripts and compatibility with JRTO.
= 1.17.1 - 2015-04-17 =
* Improved: COD gateway allows to choose which status should be set to order.
* Fix: Scripts and compatibility with JRTO.
* Fix: Notices, warnings and error on reports page.
= 1.17 - 2015-04-16 =
* New: Improved Reports page.
* New: Improved System Info page.
* New: Jigoshop Extensions page.
* New: Remove Jigoshop Web Optimization System in favor of new Jigoshop Round Trip Optimizer extension.
* Improved: Ability to set handling fee for Local Pickup.
* Improved: Reformatted and checked Free Shipping and Local Pickup shipping methods.
* Improved: Display "Out of stock" for variable products without any available variation.
* Improved: PHP Execution Time in System Info page.
* Improved: Cart items check before displaying.
* Improved: All out of stock products, can be properly removed from shop page.
* Improved: Invalid license key can be properly deactivated.
* Improved: Updated www.jigoshop.com links.
* Fixed: "Apply coupon" button in checkout no longer places the order.
= 1.16.1 - 2015-03-18 =
* Improved: Ability to enable/disable HTML emails.
* Improved: `[order_items_table]` code for HTML order items table. Used by default now.
* Fixed: Improper items formatting in new HTML emails.
= 1.16 - 2015-03-16 =
* New: Completely new default HTML emails.
* New: "Waiting for payment" transaction status for Cash on Delivery, Bank Transfer and Cheque payments.
* New: More actions for emails - now available all actions for both customers and admins.
* New: Default email templates are now translatable.
* New: Order status variable for emails - included by default in admin new order email.
* New: Better support for Cash on Delivery, Bank Transfer and Cheque payment methods in emails.
* New: Better support for Local Pickup shipping methods in emails.
* New: Ability to add multiple fields to product category (only text or number). Thanks to newash!
* Improved: Proper HTML for sale prices `<del>Old price</del><ins>New price</ins>` with `<span class="discount">Discount</span>` if applicable.
* Improved: Trimming spaces from memory values before checking.
* Improved: Remove ID from Jigoshop nonce fields.
* Improved: More variables for your emails!
* Improved: Nice icon for Jigoshop Emails.
* Improved: Link to "Manage licences" page for not activated products.
* Improved: Properly size and align product thumbnails on product list page.
* Improved: Jigoshop Reports page shows properly product value with taxes.
* Improved: Jigoshop Reports page indicates that Total Sales are with discounts, taxes and shipping included.
* Improved: Jigoshop images were optimized. Thanks to @Dade88 (#1036)
* Fix: Selected values issue on checkout and edit address pages. Thanks to @ipatenco!
* Fix: Show "Password changed" message after successful change.
* Fix: Warning for network installations of Jigoshop.
* Fix: Change name of SplClassLoader to avoid issues with other plugins/themes.
* Fix: "Order failed" untranslatable text is not translatable!
* Fix: Bigger headers in Jigoshop Settings.
* Fix: Double loading of `frontend.css` when custom theme used.
* Fix: Behaviour of product thumbnails.
= 1.15.5 - 2015-02-09 =
* Improved: JavaScript action is triggered after variation is shown: `jigoshop.variation.show` on `div.single_variation`.
* Improved: Better loading of checkout JavaScript files.
* Improved: cURL checking in System Info page.
* Fixed: Users can now properly select default tax classes and default taxing status for new products.
= 1.15.4 - 2015-01-12 =
* Improved: [is_bank_transfer], [bank_info], [billing_euvatno] and [all_tax_classes] variables in order emails. Thanks to newash!
* Improved: Email shortcode parser to work with new variable.
* Fix: Bulk edit now can change price to not announced. Thanks to newash!
= 1.15.3 - 2015-01-06 =
* Fix: Missing vendor files.
* Fix: JWOS for ssl websites.
= 1.15.2 - 2014-12-23 =
* Fix: JS error in tinymce shortcodes.
* Improved: Rewrote favicon cart count module.
= 1.15.1 - 2014-12-19 =
* Fix: Fatal error on cart page.
* Fix: JS error in favicon cart notification.
= 1.15 - 2014-12-18 =
* New: Favicon cart count notification
* New: Easy add Jigoshop shortcodes in TinyMCE
* Improved: Downloadable products links are showing as hyperlinks.
* Fix: Download links now shows only in processing or completed order email notifications.
* Fix: Reset pending Orders and Complete processing Orders will no longer send emails.
* Fix: Video played via prettyPhoto now loads properly.
* Fix: `shipping_dropdown.php` and `payment_methods.php` now can be replaced in theme files.
* Fix: Product total price after ajax update in cart now is calculated properly.
= 1.14 - 2014-12-11 =
* New: Used Coupon column on Orders page.
* New: Email variables.
* New: Draggable categories.
* New: Option in general tab, 'Use custom product category order'.
* Improved: Report is generated based on completed orders.
* Improved: Email templates are showing now customer note.
* Improved: Recent orders in admin dashboard shows order number instead of order id.
* Fixed: Creating orders in `jigoshop_orders` class. Thanks to @newash for pointing out.
* Fixed: Allow to install emails only on Jigoshop Settings page in admin panel. Thanks to @newash.
* Fixed: Load emails data on admin only. Thanks to @newash.
= 1.13.3 - 2014-12-01 =
* Improved: [shipping] variable was divided into [shipping_cost] and [shipping_method].
* Improved: Order item is now passed to `jigoshop_order_product_title` filter as 3rd argument. Thanks to @ermx
* Fix: Default emails now install properly on jigoshop update.
* Fix: Urls for dummy products.
= 1.13.2 - 2014-11-26 =
* Improved: Additional email variables `[total_tax]`, `[is_local_pickup]`, `[checkout_url]`, `[payment_method]`.
* Improved: Coupons now can be added or removed in checkout.
* Fix: Some html errors.
* Fix: Typo in default email
* Fix: Removed ex. tax label from subtotal in cart when shop admin decide to show prices without tax.
* Fix: Generate default emails button no longer generates warning.
= 1.13.1 - 2014-11-21 =
* Fix: Warnings in email module.
* Fix: Email templates now installs properly after jigoshop activation.
= 1.13 - 2014-11-21 =
* New: Ability to select whether to show prices with or without tax in cart.
* New: Ability to select user when creating new order manually in admin panel.
* New: Brand, GTIN, MPN fields for product.
* New: Shortcode product_tag.
* Improved: Disabled options in select now are hidden.
* Improved: Stock status shows ':' instead of dash.
* Improved: Sku variable is no longer showing in emails when sku is disabled.
* Improved: Shop administrator is able to not set price for variables.
* Improved: Shop emails are now customizable.
* Fix: Disappearing items from cart after login.
= 1.12.3 - 2014-10-27 =
* Improved: Automatic plugin update mechanism uses as low HTTP requests as possible.
= 1.12.2 - 2014-10-17 =
* Improved: Show plugin updates even when licence is not activated.
* Improved: Checking for updates is now 5 times faster.
* Fix: Changing state or country in checkout will properly trigger recalculation of cart taxes.
* Fix: Countries with not defined states, will properly shown as selected.
* Fix: Email notifications about product stock status can be properly disabled.
* Fix: JS problems on admin user profile page.
* Fix: Date on Reports Page can be properly picked.
* Fix: Redirecting from my account pages will no longer generate errors.
* Fix: Worldpay payment page now will be correctly loaded.
* Fix: Coupon warnings about division by 0.
* Fix: Adding new tax will show properly buttons which are assigned to country/state select.
= 1.12.1 - 2014-10-07 =
* Fix: Phone number in order email.
* Fix: Updated polish translation.
* Fix: Triggering `jigoshop.cart.update` now properly passes data.
* Fix: `jigoshop.cart.update` gets called before data is updated (or removed).
* Fix: Pass properly rounded discount values to PayPal.
= 1.12 - 2014-09-30 =
* New: User fields in user's profile.
* New: Support for disabled elements in admin settings.
* New: `Jigoshop_Options` new methods `get`, `set`, `add`, `delete` and `exists` - replaces ones with `_option` in the name.
* New: `jigoshop_enqueue_settings_scripts` action.
* New: `jigoshop.cart.update` on `.form-cart-items` after Ajax cart update.
* New: Cart quantity changes are immediately saved!
* New: Ability to select exact hour when sales starts and ends.
* New: WordPress memory limit check.
* New: Actions in each product panel for additional fields.
* New: Customer email notification after placing order when getting to on-hold status.
* Improved: Emails: shop details header, tax number in company details.
* Improved: Formatted code of jigoshop emails.
* Improved: Removed invalid email about processing order when going to on-hold status.
* Improved: Grouped products are checking parent group for sales dates.
* Improved: Shipping calculator always works with data set in My Account page.
* Improved: Products do not need to have tax classes selected.
* Fix: Variation SKU fetching.
* Fix: Order total minimum requirement for coupons.
* Fix: Shipping taxes are calculated for each applicable tax class.
* Fix: Proper calculation of taxes after coupons have been applied.
* Fix: Memory checking when provided lowercase.
* Fix: Monthly report and reports are showing the same data now.
= 1.11.9 - 2014-09-16 =
* Fix: EU VAT handling for same country orders.
* Fix: Tax for shipping is properly added on new orders using PayPal standard.
= 1.11.8 - 2014-09-12 =
* Fix: Paying for pending orders.
* Fix: Proper checkbox saving in admin panel.
* Fix: Adding variations JavaScripts.
* Fix: Notice when related products are enabled.
* Improved: `get_sku()` method on product variation object will now return variation SKU (if not available - product SKU).
* Improved: Added `number` option type.
* Improved: Replaced `range` items with `number` ones - better to use (visible values).
= 1.11.7 - 2014-09-09 =
* Fix: Select2 errors on product, order and coupon pages.
* Fix: Notice about `WYSIJA` constant.
* Fix: Re-add `jigoshop_form` class for Groups integration plugin.
* Fix: Clearing multiple select fields.
* Improved: Add "Allow URL fopen" to System Info page.
* Improved: Handling of Jigoshop Settings scripts.
= 1.11.6 - 2014-09-05 =
* Fix: PayPal invalid amounts.
* Fix: JWOS with WordPress 4.0 compatibility.
* Fix: Admin styles with WordPress 4.0
* Improved: Preventing from displaying the same data twice with `jigoshop_get_formatted_variation()` function.
* Improved: Flush rewrite rules as earlier update introduced small changes.
* Improved: Update checkout on load to ensure tax is properly calculated.
= 1.11.5 - 2014-09-04 =
* Fix: Warning when free shipping is selected.
* Fix: Free shipping method will correctly calculate minimum value to let it work.
* Improved: Saving order tax information into database.
* Improved: Added short open tag check to System Info page.
* Improved: Reformatted write panels admin file with removal of deprecated classes and functions.
* Improved: Link to support in footer of every Jigoshop page.
= 1.11.4 - 2014-08-28 =
* Fix: Unknown postcode rules are not invalid.
* Fix: Permalink options now works properly.
* Fix: Remove all items sorting, it leaves only categories ordering working.
* Improved: Strengthened postcode validation to exact match.
* Improved: Compatibility with WooCommerce themes not created by WooThemes.
* Improved: Update prettyPhoto to 3.1.5
= 1.11.3 - 2014-08-21 =
* Fix: Problems with styling of posts not on Jigoshop pages.
* Fix: Warnings when adding or editing product attributes.
* Fix: Problems with line breaks inside tags on checkout.
* Fix: Redirection problems when using checkout without JavaScript.
* Improved: Ability to select whether to use billing or shipping for taxing. Thanks for the tip @elitistdogg
= 1.11.2 - 2014-08-19 =
* Fix: Removed duplicated "Settings" link in plugins panel.
* Fix: Proper handling of errors on checkout.
* Fix: Proper total tax fetching. Thanks to @newash
* Fix: Double `product_type` parameter when editing categories and tags from admin.
* Fix: Overlapping Y-axis values in Jigoshop Report.
* Improved: Hide shipping and tax from cart if customer country is not set.
* Improved: Jigoshop toolbar items based on user capabilities.
* Improved: `jigoshop_get_order` filter also gets `$this` as 3rd parameter. Thanks to @newash
= 1.11.1- 2014-08-07 =
* Fix: Proper selecting of shipping rate.
* Fix: Proper grouped and variable product price displaying.
* Fix: Removing price from products is now available again.
* Improved: Ability to set when messages and error disappear.
= 1.11 - 2014-08-06 =
* New: Compatibility with WooThemes themes.
* New: Check for PHP accelerators as they might cause problems.
* New: Support for variable products in Price Filter widget.
* New: `jigoshop_report_widgets` action to add custom report boxes.
* New: `jQuery.payment()` function to ease payment redirection.
* New: Ability to always select "All of" in country dropdown.
* New: Replaced old ThickBox with WordPress Media Gallery.
* Improved: "Edit Product Category" and "Edit Product Tag" admin bar links now works properly.
* Improved: Better message and error disappearing times.
* Fix: Invalid formatting of shipping dropdown.
* Fix: Displaying multiple select fields.
* Fix: Properly calculate tax for shipping.
* Fix: Licence validator now checks if plugin URL is correct.
= 1.10.6 - 2014-07-30 =
* Fix: Security issue on comments feed.
* Fix: Add obeying validate postcode setting in JavaScript validation.
* Fix: Validating of GB postcodes.
* Fix: Properly check EU VAT for billing country.
= 1.10.5 - 2014-07-28 =
* Fix: States changing in Edit Address and Cart pages.
* Fix: Small typo in `my_account` shortcode template when user is not logged in.
* Fix: Page jumping when messages are shown.
* Improved: Jigoshop widgets reformatting.
* Improved: Add ability to Jigoshop widgets to work together (i.e. Price Filter and Search).
= 1.10.4 - 2014-07-24 =
* Improved: Reformat and fix states changing script.
* Improved: Ability to check if current page is payment confirmation, "Thank you" and "My account" page.
* Improved: Edit address shortcode now has back button.
* Improved: Shortened and simplified JavaScript for checkout.
* Fix: Postcode validation.
* Fix: After address save page renders properly. Thanks to Jeff Grossman
* Fix: Product Categories widget properly handles showing counts option.
= 1.10.3 - 2014-07-21 =
* Fix: Memory checking typo.
* Fix: Stock status checking for products.
* Fix: PHP pre-5.3 main file compatible (for proper PHP version checking).
* Fix: Invalid shortcode attribute managing in add to cart shortcode (thanks to Josh Virkler).
* Improved: Memory checking error message is just a warning.
= 1.10.2 - 2014-07-21 =
* Fix: Memory check is not a fatal error anymore - plugin will continue to work.
* Fix: As memory is not a fatal error - required memory is downgraded to 64 MB.
= 1.10.1 - 2014-07-21 =
* Fix: Memory checking for some users. Thanks to freyaluna for finding it.
= 1.10 - 2014-07-21 =
* New: `jigoshop_countries::get_countries()` function - returns alphabetically sorted list of translated country names.
* New: `jigoshop_countries::has_country()` and `jigoshop_countries::has_state()` methods introduced.
* New: `jigoshop_render()` and `jigoshop_render_result()` functions - easy templates rendering.
* New: `jigoshop_product_list` shortcode.
* New: Check for minimum, required PHP version.
* New: Check for minimum, required WordPress version.
* New: Check for minimum, required memory size - currently 128 MB.
* New: Support and Docs links in Plugins list.
* New: Ability to define default customer country.
* New: Introduce Jigoshop menu to WordPress admin toolbar.
* New: `jigoshop_remove_script()` function and its support in JWOS.
* New: Provinces for Poland and Philippines. Thanks to Kristoffer Cheng
* New: `JIGOSHOP_URL` constant - for easy access to Jigoshop files from other plugins.
* New: `jigoshop_is_minimum_version()` function - for checking if Jigoshop matches at least specified version using `version_compare()` PHP function.
* New: `jigoshop_add_required_version_notice()`function - for adding preformatted notice when plugin requires higher version of Jigoshop.
* Improved: JWOS now supports PHP 5.3 with `short_open_tag` disabled.
* Improved: Reformatted main Jigoshop file.
* Improved: Proper variation price sanitization.
* Improved: Removed use of deprecated methods from Jigoshop cart, introduced payment methods template.
* Improved: Extracted account templates from shortcodes - now users can override them in their templates!
* Improved: PayPal decimal errors for HUF, JPN and TWD currencies. Thanks to newash
* Improved: Default look of checkout form.
* Improved: "Tel" and "County" are now "Phone" and "Province" in admin panel.
* Improved: Updating order status is at the end of saving the order. Thanks to newash
* Improved: Admin settings uses JWOS now.
* Improved: Jigoshop class information functions returns values from constants as they should.
* Improved: Reformatted WorldPay gateway class.
* Improved: New Google Analytics code using Universal Analytics. Thanks to Ragnar Karlsson for a tip!
* Fix: Warning when saving product meta.
* Fix: Removed Wordpress TwentyFourteen theme fix as it causes problems with real shops.
* Fix: HTTPS warnings for external fonts removed.
* Fix: Strict standards warning on edit address page.
* Fix: Reports chart properly scales Y-Axis ticks.
= 1.9.6 - 2014.06.11 =
* New: Add version constant to `jigoshop` class for easy checking in plugins.
* New: Javascript triggers `jigoshop.update_checkout` on body element when `update_checkout()` method is called. Useful for payment gateways.
* Fix: Properly convert asset URLs to directory paths in JWOS.
* Fix: Tax warnings when country is with states and no taxes are available for it.
* Fix: Properly include ThickBox for uploads.
* Fix: Taxes are applied to billing country instead of shipping country if product is shippable.
* Fix: Checking if specific countries are set properly before updating tax classes.
* Improved: Jigoshop styles on TwentyFourteen.
* Improved: Better recognition of SSL usage.
* Improved: Better recognition of available country and state on checkout.
* Improved: Review order template fixes.
* Improved: Jigoshop Countries class - now it has `get_country($country_code)` and `get_state($country_code, $state_code)` functions.
* Improved: Check if there is shipping and payment method before displaying it in orders list.
* Improved: Reformat of PayPal Standard gateway.
* Improved: Introduced `JIGOSHOP_VERSION` and `JIGOSHOP_DB_VERSION` (old `JIGOSHOP_VERSION`) constants - use them instead of jigoshop::jigoshop_version() function.
* Improved: Removed deprecated qualifier on product's `get_title()` function and updated the function.
== About Jigoshop ==
* <a href="https://www.jigoshop.com/new-tour-page/">Why Should you use Jigoshop?</a>
* <a href="https://www.jigoshop.com/showcase/">Showcase</a>
* <a href="https://www.jigoshop.com/documentation/">Documentation</a>
* <a href="https://www.jigoshop.com/getting-started-guide/">Getting Started Guide</a>
* <a href="https://www.jigoshop.com/blog/">Blog</a>
* <a href="https://www.jigoshop.com/contact/">Contact</a>
== Support ==
= About Support =
* <a href="https://www.jigoshop.com/support/">Free Support</a>
* <a href="https://www.jigoshop.com/compare-support-packages/">Compare Support Packages</a>
= Enterprise Level Support =
* <a href="https://www.jigoshop.com/product/enterprise-level-ad-hoc-emergency-support/">Enterprise Level – Ad-Hoc Emergency Support</a>
* <a href="https://www.jigoshop.com/product/ecommerce-ent-basic-support/">Enterprise Level – Basic Support</a>
* <a href="https://www.jigoshop.com/product/ent-level-full-website-management/">Enterprise Level – Full Website Management</a>
* <a href="https://www.jigoshop.com/product/ecommerce-ent-full-website-support/">Enterprise Level – Full Website Support</a>
* <a href="https://www.jigoshop.com/product/ecommerce-ent-premium-support/">Enterprise Level – Premium Support</a>
= Support for Small Business =
* <a href="https://www.jigoshop.com/product/ecommerce-smb-emergency-support/">SMB Level – Ad-Hoc Emergency Support</a>
* <a href="https://www.jigoshop.com/product/ecommerce-smb-basic-support/">SMB Level – Basic Support</a>
* <a href="https://www.jigoshop.com/product/ecommerce-smb-full-website-management/">SMB Level – Full Website Management</a>
* <a href="https://www.jigoshop.com/product/ecommerce-smb-full-website-support/">SMB Level – Full Website Support</a>
* <a href="https://www.jigoshop.com/product/ecommerce-smb-premium-support/">SMB Level – Premium Support</a>
== Themes ==
= Official Themes =
* <a href="https://www.jigoshop.com/product/corellian/">Corellian</a>
* <a href="https://www.jigoshop.com/product/jigoshop-reddish/">Jigoshop Reddish</a>
* <a href="https://www.jigoshop.com/product/jigotheme/">Jigotheme</a>
* <a href="https://www.jigoshop.com/product/origin/">Origin</a>
* <a href="https://www.jigoshop.com/product/overload/">Overload</a>
* <a href="https://www.jigoshop.com/product/serenum/">Serenum</a>
* <a href="https://www.jigoshop.com/product/stitched/">Stitched</a>
* <a href="https://www.jigoshop.com/product/trend-shop/">Trend Shop</a>
== Extensions ==
= Free Extensions =
* <a href="https://www.jigoshop.com/product/affiliates-jigoshop-integration-light/">Affiliates Integration Light</a>
* <a href="https://www.jigoshop.com/product/basic-bundle-shipping/">Basic Bundle Shipping</a>
* <a href="https://www.jigoshop.com/product/bluepay-for-jigoshop/">BluePay for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/jigoshop-catalyst-connect/">Catalyst Connect</a>
* <a href="https://www.jigoshop.com/product/clickdesk-live-support/">ClickDesk Live Support</a>
* <a href="https://www.jigoshop.com/product/credimax-payment-gateway/">CrediMax Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/custom-payment-gateway/">Custom Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/dibs-payment-gateway/">DIBS Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/doc-it/">Doc It</a>
* <a href="https://www.jigoshop.com/product/genesis-connect-for-jigoshop/">Genesis Connect for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/german-full-translation-language-pack/">German Full Translation Language Pack</a>
* <a href="https://www.jigoshop.com/product/headway-connect/">Headway Connect</a>
* <a href="https://www.jigoshop.com/product/iadvize-live-chat/">iAdvize Live Chat</a>
* <a href="https://www.jigoshop.com/product/intuitive-custom-post-order/">Intuitive Custom Post Order</a>
* <a href="https://www.jigoshop.com/product/jigoshop-and-pagelines-integration/">Jigoshop & PageLines Integration</a>
* <a href="https://www.jigoshop.com/product/jigoshop-additional-admin-emails/">Jigoshop Additional Admin Emails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-admin-bar/">Jigoshop Admin Bar</a>
* <a href="https://www.jigoshop.com/product/jigoshop-basic-weight-shipping/">Jigoshop Basic Weight Shipping</a>
* <a href="https://www.jigoshop.com/product/jigoshop-csv-product-importer/">Jigoshop CSV Product Importer</a>
* <a href="https://www.jigoshop.com/product/jigoshop-easy-print-button/">Jigoshop Easy Print Button</a>
* <a href="https://www.jigoshop.com/product/jigoshop-photos-product-tab/">Jigoshop Photos Product Tab</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-add-ons/">Jigoshop Product Add-Ons</a>
* <a href="https://www.jigoshop.com/product/jigoshop-putler-connector/">Jigoshop Putler Connector</a>
* <a href="https://www.jigoshop.com/product/jigoshop-smart-send-shipping/">Jigoshop Smart Send Shipping</a>
* <a href="https://www.jigoshop.com/product/jigoshop-software-addon/">Jigoshop Software Addon</a>
* <a href="https://www.jigoshop.com/product/jigoshop-statistics-2/">Jigoshop Statistics</a>
* <a href="https://www.jigoshop.com/product/jigoshop-video-product-tab/">Jigoshop Video Product Tab</a>
* <a href="https://www.jigoshop.com/product/mailcheck-for-jigoshop/">Mailcheck for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/mailpoet-jigoshop-add/">MailPoet Jigoshop Add-on</a>
* <a href="https://www.jigoshop.com/product/multi-currency-converter-lite/">Multi Currency Converter Lite</a>
* <a href="https://www.jigoshop.com/product/pagseguro-payment-gateway/">PagSeguro Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/pinterest/">Pinterest</a>
* <a href="https://www.jigoshop.com/product/rbk-money-for-jigoshop/">RBK Money for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/robokassa-payment-gateway-for-jigoshop/">Robokassa Payment Gateway for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/shipworks-connector/">ShipWorks Connector</a>
* <a href="https://www.jigoshop.com/product/skrill/">Skrill</a>
* <a href="https://www.jigoshop.com/product/suffusion-commerce/">Suffusion Commerce</a>
* <a href="https://www.jigoshop.com/product/wanttt-com-button/">Wanttt.com Button</a>
* <a href="https://www.jigoshop.com/product/woocommerce-to-jigoshop-converter/">WooCommerce to Jigoshop Converter</a>
* <a href="https://www.jigoshop.com/product/wp-e-commerce-to-jigoshop-converter/">WP e-Commerce to Jigoshop Converter</a>
* <a href="https://www.jigoshop.com/product/wp-menu-cart/">WP Menu Cart</a>
* <a href="https://www.jigoshop.com/product/wpml-jigoshop-multi-language/">WPML Jigoshop Multi-Language</a>
* <a href="https://www.jigoshop.com/product/youtube-video-product-tab/">YouTube Video Product Tab</a>
= Translation =
* <a href="https://www.jigoshop.com/product/german-full-translation-language-pack/">German Full Translation Language Pack</a>
* <a href="https://www.jigoshop.com/product/jigoshop-norway-custom-emails/">Jigoshop Norway Custom Emails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-price-by-role/">Jigoshop Price by Role</a>
* <a href="https://www.jigoshop.com/product/wpml-jigoshop-multi-language/">WPML Jigoshop Multi-Language</a>
= Import / Export =
* <a href="https://www.jigoshop.com/product/campaign-monitor/">Campaign Monitor</a>
* <a href="https://www.jigoshop.com/product/csv-order-and-client-export/">CSV Order and Client Export</a>
* <a href="https://www.jigoshop.com/product/google-product-feed/">Google Product Feed</a>
* <a href="https://www.jigoshop.com/product/installation-of-jigoshop-extension/">Installation of Jigoshop Extension</a>
* <a href="https://www.jigoshop.com/product/jigoshop-csv-product-importer/">Jigoshop CSV Product Importer</a>
* <a href="https://www.jigoshop.com/product/jigoshop-filtering/">Jigoshop Filtering</a>
* <a href="https://www.jigoshop.com/product/product-csv-suite/">Jigoshop Official CSV Importer</a>
* <a href="https://www.jigoshop.com/product/jigoshop-quickbooks-integration/">Jigoshop QuickBooks Integration</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sorting/">Jigoshop Sorting</a>
* <a href="https://www.jigoshop.com/product/mailchimp/">MailChimp</a>
* <a href="https://www.jigoshop.com/product/jigoshop-duplicate-product/">Official Duplicate Product</a>
* <a href="https://www.jigoshop.com/product/sequential-order-numbers/">Sequential and Custom Order Numbers</a>
* <a href="https://www.jigoshop.com/product/woocommerce-to-jigoshop-converter/">WooCommerce to Jigoshop Converter</a>
* <a href="https://www.jigoshop.com/product/wp-e-commerce-to-jigoshop-converter/">WP e-Commerce to Jigoshop Converter</a>
= Other =
* <a href="https://www.jigoshop.com/product/access-coupons/">Access Coupons</a>
* <a href="https://www.jigoshop.com/product/account-funds/">Account Funds</a>
* <a href="https://www.jigoshop.com/product/ajax-content-browser/">Ajax Content Browser</a>
* <a href="https://www.jigoshop.com/product/attach-orders-to-users/">Attach Orders to Users</a>
* <a href="https://www.jigoshop.com/product/best-tree/">Best Tree</a>
* <a href="https://www.jigoshop.com/product/bulk-order-change/">Bulk Order Change</a>
* <a href="https://www.jigoshop.com/product/bulk-update-variations/">Bulk Update Variations</a>
* <a href="https://www.jigoshop.com/product/buy-selected/">Buy Selected</a>
* <a href="https://www.jigoshop.com/product/category-pages-and-thumbnails/">Category Pages and Thumbnails</a>
* <a href="https://www.jigoshop.com/product/checkout-modal-message-box/">Checkout Modal Message Box</a>
* <a href="https://www.jigoshop.com/product/clickdesk-live-support/">ClickDesk Live Support</a>
* <a href="https://www.jigoshop.com/product/custom-attributes-tinymce/">Custom Attributes TinyMCE</a>
* <a href="https://www.jigoshop.com/product/customer-discounts/">Customer Discounts</a>
* <a href="https://www.jigoshop.com/product/end-of-product-sale/">End Of Product Sale</a>
* <a href="https://www.jigoshop.com/product/extended-category-widget/">Extended Category Widget</a>
* <a href="https://www.jigoshop.com/product/extended-external-products/">Extended External Products</a>
* <a href="https://www.jigoshop.com/product/gateway-fees-integration-for-jigoshop/">Gateway Fees Integration for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/genesis-connect-for-jigoshop/">Genesis Connect for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/gravity-forms-integration/">Gravity Forms Integration</a>
* <a href="https://www.jigoshop.com/product/grouped-products-pro/">Grouped Products Pro</a>
* <a href="https://www.jigoshop.com/product/iadvize-live-chat/">iAdvize Live Chat</a>
* <a href="https://www.jigoshop.com/product/intuitive-custom-post-order/">Intuitive Custom Post Order</a>
* <a href="https://www.jigoshop.com/product/jigoshop-add-custom-button/">Jigoshop Add Custom Button</a>
* <a href="https://www.jigoshop.com/product/jigoshop-add-redirect-button/">Jigoshop Add Redirect Button</a>
* <a href="https://www.jigoshop.com/product/jigoshop-add-to-cart-ajax-validation/">Jigoshop Add To Cart Ajax Validation</a>
* <a href="https://www.jigoshop.com/product/jigoshop-additional-admin-emails/">Jigoshop Additional Admin Emails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-address-book/">Jigoshop Address Book</a>
* <a href="https://www.jigoshop.com/product/jigoshop-admin-bar/">Jigoshop Admin Bar</a>
* <a href="https://www.jigoshop.com/product/jigoshop-bookings/">Jigoshop Bookings</a>
* <a href="https://www.jigoshop.com/product/jigoshop-catalog-deluxe/">Jigoshop Catalog Deluxe</a>
* <a href="https://www.jigoshop.com/product/jigoshop-catalog-page-rollover-effect/">Jigoshop Catalog Page Rollover Effect</a>
* <a href="https://www.jigoshop.com/product/jigoshop-category-slider/">Jigoshop Category Slider</a>
* <a href="https://www.jigoshop.com/product/jigoshop-convert-complete/">Jigoshop Convert To Complete</a>
* <a href="https://www.jigoshop.com/product/jigoshop-cookie-bar/">Jigoshop Cookie Bar</a>
* <a href="https://www.jigoshop.com/product/jigoshop-coupon-purchasers/">Jigoshop Coupon Purchasers</a>
* <a href="https://www.jigoshop.com/product/jigoshop-currency-converter-widget/">Jigoshop Currency Converter Widget</a>
* <a href="https://www.jigoshop.com/product/jigoshop-drag-drop-cart/">Jigoshop Drag & Drop Cart</a>
* <a href="https://www.jigoshop.com/product/jigoshop-duplicate-order/">Jigoshop Duplicate Order</a>
* <a href="https://www.jigoshop.com/product/jigoshop-filtering/">Jigoshop Filtering</a>
* <a href="https://www.jigoshop.com/product/jigoshop-multiple-currencies/">Jigoshop Multiple Currencies</a>
* <a href="https://www.jigoshop.com/product/jigoshop-partial-orders/">Jigoshop Partial Orders</a>
* <a href="https://www.jigoshop.com/product/jigoshop-photos-product-tab/">Jigoshop Photos Product Tab</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-add-ons/">Jigoshop Product Add-Ons</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-add-ons-premium/">Jigoshop Product Add-Ons Premium</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-attributes-on-lists/">Jigoshop Product Attributes On Lists</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-comparison/">Jigoshop Product Comparison</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-variation-images/">Jigoshop Product Variation Images</a>
* <a href="https://www.jigoshop.com/product/jigoshop-recaptcha/">Jigoshop reCAPTCHA</a>
* <a href="https://www.jigoshop.com/product/jigoshop-request-a-quote/">Jigoshop Request A Quote</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sold/">Jigoshop Sold Graphic Icon</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sorting/">Jigoshop Sorting</a>
* <a href="https://www.jigoshop.com/product/jigoshop-split-paypal-sales/">Jigoshop Split Paypal Sales</a>
* <a href="https://www.jigoshop.com/product/learndash-learning-management-platform/">LearnDash Learning Management Platform</a>
* <a href="https://www.jigoshop.com/product/mailcheck-for-jigoshop/">Mailcheck for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/mailchimp-signup-widget/">MailChimp Signup Widget</a>
* <a href="https://www.jigoshop.com/product/mailpoet-jigoshop-add/">MailPoet Jigoshop Add-on</a>
* <a href="https://www.jigoshop.com/product/mini-cart-deluxe/">Mini Cart Deluxe</a>
* <a href="https://www.jigoshop.com/product/minimum-orders/">Minimum Orders</a>
* <a href="https://www.jigoshop.com/product/multiple-admin-emails/">Multiple Admin Emails</a>
* <a href="https://www.jigoshop.com/product/new-product-badge/">New Product Badge</a>
* <a href="https://www.jigoshop.com/product/jigoshop-duplicate-product/">Official Duplicate Product</a>
* <a href="https://www.jigoshop.com/product/pdf-invoices-and-packing-slips/">Official PDF Invoices</a>
* <a href="https://www.jigoshop.com/product/custom-product-tabs/">Official Product Tab Manager</a>
* <a href="https://www.jigoshop.com/product/product-accessories-premium/">Product Accessories Premium</a>
* <a href="https://www.jigoshop.com/product/responsive-swipe-product-slider-and-carousel/">Responsive Swipe Product Slider and Carousel</a>
* <a href="https://www.jigoshop.com/product/shipworks-connector/">ShipWorks Connector</a>
* <a href="https://www.jigoshop.com/product/subscriptions/">Subscriptions</a>
* <a href="https://www.jigoshop.com/product/suffusion-commerce/">Suffusion Commerce</a>
* <a href="https://www.jigoshop.com/product/wp-e-commerce-to-jigoshop-converter/">WP e-Commerce to Jigoshop Converter</a>
* <a href="https://www.jigoshop.com/product/wp-menu-cart/">WP Menu Cart</a>
= Media =
* <a href="https://www.jigoshop.com/product/ajax-content-browser/">Ajax Content Browser</a>
* <a href="https://www.jigoshop.com/product/bulk-update-variations/">Bulk Update Variations</a>
* <a href="https://www.jigoshop.com/product/buy-selected/">Buy Selected</a>
* <a href="https://www.jigoshop.com/product/jigoshop-catalyst-connect/">Catalyst Connect</a>
* <a href="https://www.jigoshop.com/product/category-pages-and-thumbnails/">Category Pages and Thumbnails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-compatible-touch-carousel/">Compatible Touch Carousel</a>
* <a href="https://www.jigoshop.com/product/custom-attributes-tinymce/">Custom Attributes TinyMCE</a>
* <a href="https://www.jigoshop.com/product/extended-category-widget/">Extended Category Widget</a>
* <a href="https://www.jigoshop.com/product/fancy-product-preview/">Fancy Product Preview</a>
* <a href="https://www.jigoshop.com/product/headway-connect/">Headway Connect</a>
* <a href="https://www.jigoshop.com/product/iadvize-live-chat/">iAdvize Live Chat</a>
* <a href="https://www.jigoshop.com/product/jigoshop-and-pagelines-integration/">Jigoshop & PageLines Integration</a>
* <a href="https://www.jigoshop.com/product/jigoshop-add-to-cart-ajax-validation/">Jigoshop Add To Cart Ajax Validation</a>
* <a href="https://www.jigoshop.com/product/jigoshop-ajax-layered-nav/">Jigoshop AJAX Layered Nav</a>
* <a href="https://www.jigoshop.com/product/jigoshop-ajax-private-message/">Jigoshop Ajax Private Message</a>
* <a href="https://www.jigoshop.com/product/jigoshop-category-slider/">Jigoshop Category Slider</a>
* <a href="https://www.jigoshop.com/product/jigoshop-currency-converter-widget/">Jigoshop Currency Converter Widget</a>
* <a href="https://www.jigoshop.com/product/jigoshop-drag-drop-cart/">Jigoshop Drag & Drop Cart</a>
* <a href="https://www.jigoshop.com/product/jigoshop-html-emails/">Jigoshop HTML Emails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-list-view/">Jigoshop List View</a>
* <a href="https://www.jigoshop.com/product/jigoshop-magnify/">Jigoshop Magnify</a>
* <a href="https://www.jigoshop.com/product/jigoshop-name-your-price-charity-donations/">Jigoshop Name Your Price / Charity / Donations</a>
* <a href="https://www.jigoshop.com/product/jigoshop-opening-times/">Jigoshop Opening Times</a>
* <a href="https://www.jigoshop.com/product/jigoshop-photos-product-tab/">Jigoshop Photos Product Tab</a>
* <a href="https://www.jigoshop.com/product/jigoshop-post-layout/">JigoShop Post Layout</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-attributes-images/">Jigoshop Product Attributes Images</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-attributes-on-lists/">Jigoshop Product Attributes On Lists</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-colorizer/">Jigoshop Product Colorizer</a>
* <a href="https://www.jigoshop.com/product/jigoshop-products-of-the-month/">Jigoshop Products of the Month</a>
* <a href="https://www.jigoshop.com/product/jigoshop-qr-codes/">Jigoshop QR Codes</a>
* <a href="https://www.jigoshop.com/product/jigoshop-quickview/">Jigoshop Quickview</a>
* <a href="https://www.jigoshop.com/product/jigoshop-recaptcha/">Jigoshop reCAPTCHA</a>
* <a href="https://www.jigoshop.com/product/jigoshop-rich-snippets/">Jigoshop Rich Snippets</a>
* <a href="https://www.jigoshop.com/product/jigoshop-smart-coupons/">Jigoshop Smart Coupons</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sorting/">Jigoshop Sorting</a>
* <a href="https://www.jigoshop.com/product/jigoshop-video-product-tab/">Jigoshop Video Product Tab</a>
* <a href="https://www.jigoshop.com/product/jigoshop-zoom-plugin/">Jigoshop Zoom Plugin</a>
* <a href="https://www.jigoshop.com/product/magic-magnify-plus-for-jigoshop/">Magic Magnify Plus for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/minimum-orders/">Minimum Orders</a>
* <a href="https://www.jigoshop.com/product/custom-product-tabs/">Official Product Tab Manager</a>
* <a href="https://www.jigoshop.com/product/product-accessories-premium/">Product Accessories Premium</a>
* <a href="https://www.jigoshop.com/product/product-badges/">Product Badges</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-image-watermark/">Product Image Watermark</a>
* <a href="https://www.jigoshop.com/product/product-slider-carousel/">Product Slider Carousel</a>
* <a href="https://www.jigoshop.com/product/responsive-swipe-product-slider-and-carousel/">Responsive Swipe Product Slider and Carousel</a>
* <a href="https://www.jigoshop.com/product/sale-flash-options/">Sale Flash Options</a>
* <a href="https://www.jigoshop.com/product/social-buttons-for-jigoshop/">Social Buttons for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/video-links/">Video Links</a>
* <a href="https://www.jigoshop.com/product/wp-menu-cart/">WP Menu Cart</a>
* <a href="https://www.jigoshop.com/product/youtube-video-product-tab/">YouTube Video Product Tab</a>
* <a href="https://www.jigoshop.com/product/youtube-video-tab/">YouTube Video Tab</a>
= Networking =
* <a href="https://www.jigoshop.com/product/amazon-estore-affiliates-for-jigoshop/">Amazon eStore Affiliates for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/clockwork-sms-notifications-extension/">Clockwork SMS Notifications Extension</a>
* <a href="https://www.jigoshop.com/product/facebook-products-tab/">Facebook Products Tab</a>
* <a href="https://www.jigoshop.com/product/german-full-translation-language-pack/">German Full Translation Language Pack</a>
* <a href="https://www.jigoshop.com/product/google-product-feed/">Google Product Feed</a>
* <a href="https://www.jigoshop.com/product/iadvize-live-chat/">iAdvize Live Chat</a>
* <a href="https://www.jigoshop.com/product/jigoshop-ajax-private-message/">Jigoshop Ajax Private Message</a>
* <a href="https://www.jigoshop.com/product/jigoshop-category-purchasers/">Jigoshop Category Purchasers</a>
* <a href="https://www.jigoshop.com/product/jigoshop-cookie-bar/">Jigoshop Cookie Bar</a>
* <a href="https://www.jigoshop.com/product/jigoshop-coupon-share/">Jigoshop Coupon for Share</a>
* <a href="https://www.jigoshop.com/product/jigoshop-enhanced-search/">Jigoshop Enhanced Search</a>
* <a href="https://www.jigoshop.com/product/jigoshop-price-by-role/">Jigoshop Price by Role</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-enquiry-form/">Jigoshop Product Enquiry Form</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-purchasers/">Jigoshop Product Purchasers</a>
* <a href="https://www.jigoshop.com/product/jigoshop-putler-connector/">Jigoshop Putler Connector</a>
* <a href="https://www.jigoshop.com/product/jigoshop-smart-coupons/">Jigoshop Smart Coupons</a>
* <a href="https://www.jigoshop.com/product/mailchimp-signup-widget/">MailChimp Signup Widget</a>
* <a href="https://www.jigoshop.com/product/mailpoet-jigoshop-add/">MailPoet Jigoshop Add-on</a>
* <a href="https://www.jigoshop.com/product/pinterest/">Pinterest</a>
* <a href="https://www.jigoshop.com/product/sendloop/">Sendloop</a>
* <a href="https://www.jigoshop.com/product/sendloop-signup-widget/">Sendloop Signup Widget</a>
* <a href="https://www.jigoshop.com/product/social-buttons-for-jigoshop/">Social Buttons for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/social-login/">Social Login</a>
* <a href="https://www.jigoshop.com/product/subscriptions/">Subscriptions</a>
* <a href="https://www.jigoshop.com/product/wanttt-com-button/">Wanttt.com Button</a>
= Marketing =
* <a href="https://www.jigoshop.com/product/affiliates-jigoshop-integration-light/">Affiliates Integration Light</a>
* <a href="https://www.jigoshop.com/product/affiliates-pro-integration-pack/">Affiliates Pro Integration Pack</a>
* <a href="https://www.jigoshop.com/product/amazon-estore-affiliates-for-jigoshop/">Amazon eStore Affiliates for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/aweber-newsletter-for-jigoshop/">AWeber Newsletter for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/campaign-monitor/">Campaign Monitor</a>
* <a href="https://www.jigoshop.com/product/discfoo/">Discfoo</a>
* <a href="https://www.jigoshop.com/product/end-of-product-sale/">End Of Product Sale</a>
* <a href="https://www.jigoshop.com/product/filtering-premium/">Filtering Premium</a>
* <a href="https://www.jigoshop.com/product/gravity-forms-integration/">Gravity Forms Integration</a>
* <a href="https://www.jigoshop.com/product/grouped-products-pro/">Grouped Products Pro</a>
* <a href="https://www.jigoshop.com/product/intuitive-custom-post-order/">Intuitive Custom Post Order</a>
* <a href="https://www.jigoshop.com/product/jigoshop-add-custom-button/">Jigoshop Add Custom Button</a>
* <a href="https://www.jigoshop.com/product/jigoshop-category-purchasers/">Jigoshop Category Purchasers</a>
* <a href="https://www.jigoshop.com/product/jigoshop-configurable-products/">Jigoshop Configurable Products</a>
* <a href="https://www.jigoshop.com/product/jigoshop-custom-availability/">Jigoshop Custom Availability</a>
* <a href="https://www.jigoshop.com/product/jigoshop-html-emails/">Jigoshop HTML Emails</a>
* <a href="https://www.jigoshop.com/product/jigoshop-linnworks-integration/">Jigoshop Linnworks Integration</a>
* <a href="https://www.jigoshop.com/product/jigoshop-opening-times/">Jigoshop Opening Times</a>
* <a href="https://www.jigoshop.com/product/jigoshop-price-on-request/">Jigoshop Price On Request</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-accessories/">Jigoshop Product Accessories</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-changes-notification/">Jigoshop Product Changes Notification</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-comparison/">Jigoshop Product Comparison</a>
* <a href="https://www.jigoshop.com/product/jigoshop-product-purchasers/">Jigoshop Product Purchasers</a>
* <a href="https://www.jigoshop.com/product/jigoshop-products-of-the-day/">Jigoshop Products Of The Day</a>
* <a href="https://www.jigoshop.com/product/jigoshop-products-of-the-month/">Jigoshop Products of the Month</a>
* <a href="https://www.jigoshop.com/product/jigoshop-quantity-on-lists/">Jigoshop Quantity On Lists</a>
* <a href="https://www.jigoshop.com/product/jigoshop-seo-deluxe-plugin/">Jigoshop SEO Deluxe Plugin</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sold/">Jigoshop Sold Graphic Icon</a>
* <a href="https://www.jigoshop.com/product/jigoshop-split-paypal-sales/">Jigoshop Split Paypal Sales</a>
* <a href="https://www.jigoshop.com/product/jigoshop-statistics-2/">Jigoshop Statistics</a>
* <a href="https://www.jigoshop.com/product/jigoshop-wish-list/">Jigoshop Wish List</a>
* <a href="https://www.jigoshop.com/product/learndash-learning-management-platform/">LearnDash Learning Management Platform</a>
* <a href="https://www.jigoshop.com/product/limited-time-deals/">Limited Time Deals</a>
* <a href="https://www.jigoshop.com/product/mailchimp/">MailChimp</a>
* <a href="https://www.jigoshop.com/product/mailchimp-signup-widget/">MailChimp Signup Widget</a>
* <a href="https://www.jigoshop.com/product/mailpoet-jigoshop-add/">MailPoet Jigoshop Add-on</a>
* <a href="https://www.jigoshop.com/product/new-product-badge/">New Product Badge</a>
* <a href="https://www.jigoshop.com/product/product-commissions/">Product Commissions</a>
* <a href="https://www.jigoshop.com/product/random-product-widget/">Random Product Widget</a>
* <a href="https://www.jigoshop.com/product/responsive-swipe-product-slider-and-carousel/">Responsive Swipe Product Slider and Carousel</a>
* <a href="https://www.jigoshop.com/product/sale-flash-options/">Sale Flash Options</a>
* <a href="https://www.jigoshop.com/product/shipworks-connector/">ShipWorks Connector</a>
* <a href="https://www.jigoshop.com/product/simple-seo-meta-tags/">Simple SEO Meta Tags</a>
* <a href="https://www.jigoshop.com/product/up-sells-cross-sells/">Up-sells & Cross-sells</a>
* <a href="https://www.jigoshop.com/product/viral-coupon-for-jigoshop/">Viral Coupon for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/youtube-video-tab/">YouTube Video Tab</a>
= Shipping =
* <a href="https://www.jigoshop.com/product/add-flat-rate-shipping/">Add Flat Rate Shipping</a>
* <a href="https://www.jigoshop.com/product/basic-bundle-shipping/">Basic Bundle Shipping</a>
* <a href="https://www.jigoshop.com/product/bring-shipping-method/">Bring Shipping Method</a>
* <a href="https://www.jigoshop.com/product/bundle-rate-shipping/">Bundle Rate Shipping</a>
* <a href="https://www.jigoshop.com/product/fedex-shipping-rates/">Fedex Shipping Rates</a>
* <a href="https://www.jigoshop.com/product/jigoshop-basic-weight-shipping/">Jigoshop Basic Weight Shipping</a>
* <a href="https://www.jigoshop.com/product/jigoshop-delivery-periods/">Jigoshop Delivery Periods</a>
* <a href="https://www.jigoshop.com/product/jigoshop-delivery-times/">Jigoshop Delivery Times</a>
* <a href="https://www.jigoshop.com/product/jigoshop-ups-shipping/">Official UPS Shipping</a>
* <a href="https://www.jigoshop.com/product/per-product-shipping/">Per Product Shipping</a>
* <a href="https://www.jigoshop.com/product/premium-shipping/">Premium Shipping</a>
* <a href="https://www.jigoshop.com/product/royal-mail-shipping/">Royal Mail Shipping</a>
* <a href="https://www.jigoshop.com/product/sequential-order-numbers/">Sequential and Custom Order Numbers</a>
* <a href="https://www.jigoshop.com/product/shipping-details-plugin-for-jigoshop/">Shipping Details Plugin</a>
* <a href="https://www.jigoshop.com/product/specific-country-states-delivery/">Specific Country and States Delivery</a>
* <a href="https://www.jigoshop.com/product/table-rate-shipping/">Table Rate Shipping</a>
* <a href="https://www.jigoshop.com/product/usps-advanced-shipping/">USPS Advanced Shipping</a>
= Payment Gateways =
* <a href="https://www.jigoshop.com/product/2checkout-payment-form/">2Checkout Payment Form</a>
* <a href="https://www.jigoshop.com/product/anz-egate/">ANZ eGate</a>
* <a href="https://www.jigoshop.com/product/authorize-net-pro/">Authorize.Net PRO</a>
* <a href="https://www.jigoshop.com/product/beanstream-payment-gateway/">BeanStream Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/checkout-by-amazon-payment-gateway/">Checkout by Amazon Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/click-buy-payment-gateway/">Click-and-Buy Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/commonwealth-bank-payment-gateway-extension/">Commonwealth Bank Payment Gateway Extension</a>
* <a href="https://www.jigoshop.com/product/credimax-payment-gateway/">CrediMax Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/custom-payment-gateway/">Custom Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/cybersource-payment-gateway/">CyberSource Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/dotpay-payment-gateway/">DotPay Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/dwolla-gateway-for-jigoshop/">Dwolla Gateway for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/ebs-gateway/">EBS Gateway</a>
* <a href="https://www.jigoshop.com/product/egopay-gateway-for-jigoshop/">EgoPay Gateway for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/eway-payment-gateway/">eWAY Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/fat-zebra-gateway/">Fat Zebra Gateway</a>
* <a href="https://www.jigoshop.com/product/firstdata-global-payment-gateway/">FirstData Global Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/freshbooks-for-jigoshop/">Freshbooks for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/google-checkout/">Google Checkout</a>
* <a href="https://www.jigoshop.com/product/ideal-payment-gateway/">iDEAL Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/intuit-innovative-payment-gateway/">Intuit Innovative Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/ipay88-payment-gateway/">iPay88 Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-amazon-simple-gateway/">Jigoshop Amazon Simple Pay Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-authorize-net-cim-payment-gateway/">Jigoshop Authorize.Net CIM Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-payjunction-gateway/">Jigoshop PayJunction Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-paypal-advanced/">Jigoshop PayPal Advanced</a>
* <a href="https://www.jigoshop.com/product/jigoshop-paypal-express-gateway/">Jigoshop PayPal Express Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-paypal-payflow-pro-gateway/">Jigoshop PayPal Payflow Pro Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-postfinance-credit-card-module/">Jigoshop PostFinance Credit Card Module</a>
* <a href="https://www.jigoshop.com/product/jigoshop-saferpay-credit-card-module/">Jigoshop Saferpay Credit Card Module</a>
* <a href="https://www.jigoshop.com/product/jigoshop-sagepay-direct/">Jigoshop SagePay Direct</a>
* <a href="https://www.jigoshop.com/product/korta-gateway/">Korta Gateway</a>
* <a href="https://www.jigoshop.com/product/login-pay-amazon/">Login and Pay with Amazon</a>
* <a href="https://www.jigoshop.com/product/netbanx-payment-gateway/">Netbanx Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/netbilling-payment-gateway/">NETbilling Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/nmi-payments-gateway/">NMI Payments Gateway</a>
* <a href="https://www.jigoshop.com/product/nochex-payment-gateway/">Nochex Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/offline-credit-card-processing/">Offline Credit Card Processing</a>
* <a href="https://www.jigoshop.com/product/payfast-payment-gateway/">PayFast Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/jigoshop-paypal-pro/">PayPal Pro</a>
* <a href="https://www.jigoshop.com/product/paytrace-gateway/">PayTrace Gateway</a>
* <a href="https://www.jigoshop.com/product/payu-payment-gateway/">PayU for Poland Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/payza-payment-gateway/">Payza Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/plugn-pay-direct-gateway-for-jigoshop/">Plug’n Pay Direct Gateway for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/przelewy24-payment-gateway/">Przelewy24 Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/quantum-payment-gateway/">Quantum Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/quickbooks-payment-gateway/">QuickBooks Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/realex-payment-gateway/">Realex Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/sagepay-go/">SagePay Go</a>
* <a href="https://www.jigoshop.com/product/sagepay-server-integration/">SagePay Server integration</a>
* <a href="https://www.jigoshop.com/product/skrill/">Skrill</a>
* <a href="https://www.jigoshop.com/product/stripe-for-jigoshop/">Stripe for Jigoshop</a>
* <a href="https://www.jigoshop.com/product/swipe-hq-payment-gateway/">Swipe HQ Payment Gateway</a>
* <a href="https://www.jigoshop.com/product/usa-epay-gateway/">USA ePay gateway</a>
* <a href="https://www.jigoshop.com/product/virtual-merchant-gateway/">Virtual Merchant Gateway</a>