Mike Jolley
8798ade9ca
Only set customer data when changed from default
2013-01-12 13:02:47 +00:00
Mike Jolley
261f413405
Ratings in loops for sort by rating
2013-01-12 10:53:24 +00:00
Mike Jolley
0caca2d401
GET vars for sorting (to work better with cache)
2013-01-12 10:53:08 +00:00
Mike Jolley
8d8b3e3d30
get_post_data from 1.6
2013-01-11 18:30:09 +00:00
James Koster
2e223d8509
Missing $woocommerce #2182
2013-01-10 16:17:25 +00:00
Mike Jolley
2a71d08d44
Wrong email in paypal #2184
2013-01-10 16:03:56 +00:00
Mike Jolley
1766f07c19
Meta_queries Closes #2182 .
2013-01-10 16:02:04 +00:00
Mike Jolley
a7ca2c8717
Fix email settings and put back notification recipient. Closes #2184 .
2013-01-10 15:17:37 +00:00
Mike Jolley
f239a05944
Also suppress errors #2201
2013-01-10 14:56:38 +00:00
Mike Jolley
07a126de3e
check is_resource Closes #2201 .
2013-01-10 14:56:13 +00:00
Coen Jacobs
24b2c47077
Support for non-product post types in WC_Product_Factory #2199
2013-01-10 12:46:39 +01:00
gw0 [http://gw.tnode.com/]
7ff704eabf
Corrected bug if a product variation does not exist anymore.
2013-01-07 20:33:44 +01:00
Mike Jolley
b1e4847e52
$current_user->ID
2013-01-07 17:26:02 +00:00
Mike Jolley
b5e10315aa
Load gateways during checkout + in settings. #2164
2013-01-07 17:23:09 +00:00
Mike Jolley
6a635e6041
Tax class settings fixes Closes #2167 .
2013-01-07 16:35:24 +00:00
Mike Jolley
0786e7f9fc
rejig the order of loading address. Closes #2161 .
2013-01-07 15:58:19 +00:00
Mike Jolley
96721f00d2
kses
2013-01-05 15:21:19 +00:00
WP Lab
1b3b92d1fe
Fixed fatal error in paypal gateway
...
This line should contain use $response instead of the not existing $result.
The error only occurs when debugging is enabled and the communication with Paypal API failed for some reason. But in this case, it results in a fatal php error: Call to a member function get_error_message() on a non-object
2013-01-04 22:51:54 +01:00
Mike Jolley
b6387a152e
New checkout field layout Closes #2120 .
2013-01-03 12:37:07 +00:00
Geert De Deckere
e122c78cab
A few more CSS class updates #2086
2013-01-03 13:21:26 +01:00
Mike Jolley
68af53228a
Fix options. Closes #2116 .
2013-01-03 10:38:59 +00:00
Mike Jolley
43b0c2345b
Merge pull request #2114 from krbvroc1/optional_sort
...
Add 'woocommerce_sort_countries' filter
2013-01-03 02:23:14 -08:00
Ken Bass
9456c80c73
Remove filter after loop
2013-01-02 17:03:14 -05:00
Ken Bass
70d9e6b505
When performing search include post_excerpt
2013-01-02 15:52:04 -05:00
Ken Bass
fb5d1a923f
Fix tabs/whitespace
2013-01-02 15:52:04 -05:00
Ken Bass
835c38fa5b
Add 'woocommerce_sort_countries' filter
2013-01-02 14:32:43 -05:00
Ken Bass
e1ad11e2f7
Fix spelling errors in action/hook names
2013-01-02 11:34:23 -05:00
Mike Jolley
8c821a86ab
Stop infinite loop bug #1765
2013-01-02 13:38:33 +00:00
Mike Jolley
7bd2740ba2
Some code cleanup and comments #1765
2013-01-02 12:59:41 +00:00
James Koster
1622b7b2b7
consistent title on rating
2013-01-02 12:06:15 +00:00
Coen Jacobs
843614f9d0
Fixed array_map issue in settings. Closes #2106 #2104
2013-01-02 12:32:26 +01:00
Mike Jolley
5486ebb737
Shortcodes/Widgets -> classes, autoload classes to reduce memory, only load gateways when needed, change gateway admin to match shipping #1765
2012-12-31 18:25:09 +00:00
Mike Jolley
144bd5c054
Settings API - get_option to load setting value or get default (to prevent notices and remove the need to load form fields during construct). #1765
2012-12-31 12:07:48 +00:00
Mike Jolley
4c7ea6a016
Load admin mo, and updated GB translation.
2012-12-30 13:48:27 +00:00
Mike Jolley
00499e7574
wp_insert_user Closes #2069 .
2012-12-28 18:45:06 +00:00
Mike Jolley
5507e8453f
Remove depricated jQuery Closes #2039
2012-12-28 13:02:12 +00:00
Mike Jolley
51ab134142
Added thai states ( Closes #2064 ), added files per state which get loaded only when the country is allowed, and hidden the informal setting unless needed for the lang.
...
Also moved languages and added an i18n folder for this kind of stuff.
2012-12-28 10:54:09 +00:00
Mike Jolley
d89b2aa66f
Set_stock for product class Closes #2042 .
2012-12-28 09:59:20 +00:00
Mike Jolley
f464957639
Set the variables and renamed to prevent confusion with the session naming. Closes #2055 .
2012-12-27 19:24:37 +00:00
Mike Jolley
087c4cd983
Notices. Closes #2053 .
2012-12-27 18:46:22 +00:00
Jesús Ángel del Pozo Domínguez
425cf474f8
Yoda conditions for debug tests:
...
Before:
if ( $this->debug == 'yes' )
After:
if ( 'yes' == $this->debug )
2012-12-27 11:44:58 +01:00
Jesús Ángel del Pozo Domínguez
47db520256
Edited code in last commit to obey WP coding standards.
...
Fixed wrong HTML code generated when the gateway isn't valid in the
user's country. The div tag couldn't be placed inside table tag:
<table class="form-table">
<div class="inline error"><p> ... </p></div>
</table>
2012-12-27 11:20:04 +01:00
Jesús Ángel del Pozo Domínguez
404ccaad63
Check for spoofed IPN response
2012-12-26 22:45:53 +01:00
Mike Jolley
29660779eb
Merge pull request #2040 from andreibarabas/master
...
Remove the $_SESSION #2022
2012-12-23 09:01:01 -08:00
Andrei Barabas
6dbdb872d9
remove the $_SESSION usage
2012-12-23 17:16:04 +02:00
Mike Jolley
e0a67b3387
rounding fixes for #2020
2012-12-20 15:10:27 +00:00
Mike Jolley
9ab2b8b4c7
tweak queries to support all registered taxonomies of products
2012-12-20 13:57:38 +00:00
Mike Jolley
927693351a
sync prices when empty
2012-12-20 12:54:02 +00:00
Mike Jolley
d877086ffe
get price, not ex price
2012-12-20 12:44:11 +00:00
Mike Jolley
c7fd3e85a6
More class cleanup
2012-12-20 11:54:38 +00:00