Barry Kooij
e41841cee3
Round net_sales in API to 2 decimals
2015-01-30 14:33:13 +01:00
Barry Kooij
105d891411
Changelog update API changes
2015-01-30 14:30:46 +01:00
Barry Kooij
7a92094b72
Added net_sales to API reports response.
2015-01-30 14:29:10 +01:00
Barry Kooij
5435c16a3b
API code standards
2015-01-30 14:28:53 +01:00
Barry Kooij
746a46778d
Fixed sales data in API so it matches the WC reports page.
...
Fixes #7233
2015-01-30 14:28:35 +01:00
Claudio Sanches
242dbe1bc0
[API] product visible by default
2015-01-30 11:08:17 -02:00
Claudio Sanches
129f78a761
Merge branch 'master' of github.com:woothemes/woocommerce
2015-01-30 11:01:08 -02:00
Claudio Sanches
ce569c153b
[API] Set default product visibility
2015-01-30 11:00:57 -02:00
Mike Jolley
9f8a7d1199
Remove datepicker icon's and use focus event
2015-01-30 12:54:33 +00:00
Claudio Sanches
1a3617c55b
Improved the select fields in webhooks ui
2015-01-30 10:31:43 -02:00
James Koster
758aa7d714
table double border
2015-01-30 11:37:54 +00:00
Claudio Sanches
83e4ef330f
Merge pull request #7244 from bryceadams/patch-7243
...
Update URL to link to review form
2015-01-30 09:35:32 -02:00
Bryce
171f189f70
Update URL to link to review form
...
Closes #7243
2015-01-30 18:26:01 +07:00
Mike Jolley
1ae1c7a975
Trigger change event to clear state box. Closes #7240
2015-01-30 10:58:53 +00:00
Claudio Sanches
def250e912
Display taxes labels in order totals when order has refunded, closes #7229
2015-01-29 18:50:08 -02:00
Claudio Sanches
e8bb986b59
Fixed taxes display in cart totals
2015-01-29 16:48:51 -02:00
Claudio Sanches
d0f4b43c96
Fixed payment actions executing multiple times, closes #7226
2015-01-29 16:36:05 -02:00
Claudio Sanches
d3ac28fbb3
Check if product is published, closes #7220
2015-01-29 16:30:07 -02:00
Remi Corson
b2c60ee50d
fix button styling / CSS moved to activation.css
2015-01-29 17:11:18 +01:00
Remi Corson
e7d964a007
fixed underlined links
2015-01-29 15:39:38 +01:00
Claudio Sanches
afb19715d4
Prevented XSS in urls
2015-01-29 12:33:06 -02:00
Claudio Sanches
7890095ba0
Fixed the webhooks topic saving, closes #7236
2015-01-29 11:11:35 -02:00
Claudio Sanches
7eb3ec9a4a
Admin footer text improvements #7234
...
@BFTrick @mikejolley
2015-01-29 10:41:39 -02:00
Claudio Sanches
85adccb416
Merge pull request #7234 from BFTrick/iss-7213
...
Adding Please Rate Our Plugin Footer Text
2015-01-29 10:37:28 -02:00
Claudio Sanches
f7e24c0b77
Fixed more typos
2015-01-29 01:31:03 -02:00
Claudio Sanches
80b70c79f1
Fixed a typo in status report
2015-01-29 00:54:46 -02:00
Claudio Sanches
da68b4fd9c
Minify country-select.js for #7235
2015-01-29 00:16:59 -02:00
Claudio Sanches
9f627f85fc
Merge pull request #7235 from DevinWalker/master
...
Swap .change for .on method in country-select.js
2015-01-29 00:16:29 -02:00
devin
dfecc22126
Removed .change method for .on( 'change') so that if this field is ever replaced via ajax then the country select still works as expected
2015-01-28 16:42:11 -08:00
Patrick Rauland
e7224cdc1d
using wc_get_screen_ids instead of manually typing them out. see #7213
2015-01-28 17:20:38 -07:00
Patrick Rauland
ee11ac6080
adding please rate our plugin footer text. closes #7213
2015-01-28 17:13:13 -07:00
Mike Jolley
c2c1e733ba
Typo #7216
2015-01-28 21:03:09 +00:00
Mike Jolley
64775e92f1
Someone forgot to bump the version
2015-01-28 19:46:09 +00:00
Mike Jolley
15fa903537
install() is triggered after includes, so these includes are not needed
2015-01-28 19:46:09 +00:00
Claudio Sanches
385b39a0e5
Merge pull request #7231 from thenbrent/fix_paypal_identify_token
...
[2.3] Fix "Undefined variable: identity_token"
2015-01-28 17:09:53 -02:00
Brent Shepherd
3702b77c74
Fix "Undefined variable: identity_token"
...
And make sure the identify token is passed to `WC_Gateway_Paypal_PDT_Handler`
2015-01-28 10:59:48 -08:00
Mike Jolley
74e44b55c7
Revert plugins_loaded idea (@725d5e2) until 2.4 so devs can be warned. #blameclaudio
...
Keeping the methods and small tidyup.
2015-01-28 18:01:30 +00:00
Mike Jolley
725d5e28d8
Additional tweaks to @b2c573ed8a04a8d425a73e018a450179514cbdc7
...
- Load API with other includes
- Register activation hook early
- Include autoloader early
cc @claudiosmweb
2015-01-28 17:50:58 +00:00
Mike Jolley
f3cc45cfa9
Grammar corrections
...
Closes #7216
2015-01-28 17:15:48 +00:00
Mike Jolley
8a42b1c211
Revert earlier change where PayPal IPN was on or off depending on PDT.
...
Because IPN is used for future events such as refunds it should not be
disabled. @claudiosmweb
2015-01-28 17:15:48 +00:00
Mike Jolley
b2c573ed8a
Rather than include all files on construct, include files after plugins_loaded
...
This ensures functions intended to be pluggable actually are, and
prevents race conditions. Seen some authors mess with the plugin load
order to work around this and it’s horrible.
This hook has priority 5 to ensure existing plugins using WC
functionality on plugins_loaded do not break.
cc @claudiosmweb @barrykooij
2015-01-28 17:15:48 +00:00
Claudio Sanches
d4ce1a5ebd
Merge branch 'master' of github.com:woothemes/woocommerce
2015-01-28 15:10:43 -02:00
Claudio Sanches
a723cfb256
Fix the cleanup of reviews transients, closes #7214
...
@mikejolley
Please enter the commit message for your changes. Lines starting
2015-01-28 15:09:37 -02:00
James Koster
4026e37b34
variation and cart totals table borders. closes #7223
2015-01-28 12:58:04 +00:00
Claudio Sanches
7bc853c452
Merge pull request #7224 from thenbrent/fix_session_expired_notice
...
[2.3] Fix session expired notice on checkout
2015-01-27 21:34:16 -02:00
Brent Shepherd
3a1dc68ff9
Fix typo
2015-01-27 14:42:36 -08:00
Claudio Sanches
56d40dcf55
Fixed conflits
2015-01-27 20:16:36 -02:00
Claudio Sanches
f4c64c12c7
Updated scripts
2015-01-27 20:15:49 -02:00
Brent Shepherd
60a161aa93
Fix session expired notice on checkout
2015-01-27 14:14:17 -08:00
Mike Jolley
59359ef9b4
Try catch block in add_to_cart to allow plugins to abort the add to cart event
...
cc @claudiosmweb @barrykooij
2015-01-27 16:02:57 +00:00