Commit Graph

6808 Commits

Author SHA1 Message Date
James Koster cee534ac8f image optimisation 2014-01-29 17:22:07 +00:00
James Koster ef906de995 remove gear.png 2014-01-29 17:19:59 +00:00
James Koster 7c2778ac6c remove image_watermark 2014-01-29 17:19:02 +00:00
James Koster 29363f8dd8 remove star.png and update star-rating to use new icon font 2014-01-29 17:18:31 +00:00
James Koster 4efb2c6aba remove woocommerce-icons 2014-01-29 17:12:24 +00:00
James Koster 0eebc96eeb remove wc_icon 2014-01-29 17:11:14 +00:00
James Koster 2d6c4470a6 remove menu icons 2014-01-29 17:10:16 +00:00
Mike Jolley 154fae351c Unused assets 2014-01-29 17:07:44 +00:00
Mike Jolley 853b40fcfd POMO updates 2014-01-29 17:01:42 +00:00
Mike Jolley 4abcc331dd Ensure stock status is set for variations after setting to 0 Closes #4587 2014-01-29 14:39:55 +00:00
Mike Jolley 9bc14a4aa5 Merge pull request #4591 from alexbain/do-not-cache
Enhancing nocache helper
2014-01-29 05:10:39 -08:00
Alex Bain 49f935dd8b Enhancing nocache helper
* Adding support for DONOTCACHEOBJECT
* Adding support for DONOTCACHEDB
2014-01-28 10:26:01 -08:00
Mike Jolley ad17813e70 Merge pull request #4590 from toddlahman/master
Removed urldecode from $_GET and $_REQUEST and Removed (document).ready from wc_print_js()
2014-01-28 09:58:59 -08:00
toddlahman 5432d3ac56 Revert "Moved woocommerce_round_tax_total() to Formatting"
This reverts commit 1f7ba8867e.
2014-01-28 09:47:46 -08:00
Mike Jolley 6f3e8c182e Ensure gateways get loaded prior to emailing out Closes #4577 2014-01-28 12:36:20 +00:00
Mike Jolley 663bf25d79 Merge pull request #4569 from helgatheviking/master
add apply_filters to the product filters on the edit.php screen
2014-01-28 04:21:33 -08:00
Mike Jolley 8f2b9afe93 Check for the term object 2014-01-28 12:13:19 +00:00
Mike Jolley 239d673646 Change featured image notation to product Closes #4586 2014-01-28 11:58:20 +00:00
Mike Jolley 5b991cc3e1 Checkout min 2014-01-28 11:26:07 +00:00
Mike Jolley 39344f2ed5 Allow gateways to change the checkout place order button text on selection. Closes #4573 2014-01-28 11:25:57 +00:00
Mike Jolley bd76784f97 Merge pull request #4583 from emzo/product-short-description-editor-settings
Filter to allow modification of wp_editor settings for product short description
2014-01-28 03:05:21 -08:00
Mike Jolley 26c3540c87 Merge pull request #4582 from rpeshkov/shared_taxonomy_fix
Added check that product has been requested in WC_Query.product_query.
2014-01-28 03:03:29 -08:00
Kathy Darling 77f5e9cf1d Merge branch 'master' of github.com:woothemes/woocommerce 2014-01-27 19:02:31 +01:00
Emyr Thomas fdc1d81814 Add 'woocommerce_product_short_description_editor_settings' filter to allow modification of the settings for the wp_editor in the product short description meta-box. 2014-01-27 14:23:58 +00:00
Roman Peshkov 16391b7185 Added check that product has been requested in WC_Query.product_query.
When requesting taxonomy term archive for your custom post type and that
taxonomy is shared with product post type, post_type query variable gets
rewritten.
2014-01-27 16:54:21 +04:00
toddlahman 33f2c5b4cd Removed (document).ready from wc_print_js()
jQuery(document).ready(function($) { is equivalent to calling
jQuery(function($) {.

http://api.jquery.com/ready/
2014-01-26 19:37:03 -08:00
Mike Jolley f2ac6df16c check for default Closes #4571 2014-01-26 13:59:10 +00:00
Mike Jolley af5ff5d7e4 Compiled .mo files 2014-01-26 13:57:08 +00:00
Mike Jolley 9d55ede6b1 Merge pull request #4568 from maxrice/rest-api-fixes
More REST API tweaks
2014-01-26 04:33:02 -08:00
Mike Jolley e7c19dc4ac Merge pull request #4572 from splashingpixels/master
Replaced deprecated jQuery live methods with on
2014-01-26 04:19:39 -08:00
toddlahman 2725527d4a Removed urldecode from $_GET and $_REQUEST
The superglobals $_GET and $_REQUEST are already decoded. Using
urldecode() on an element in $_GET or $_REQUEST could have unexpected
and dangerous results.

See Notes:

http://us1.php.net/manual/en/function.urldecode.php
2014-01-26 01:19:17 -08:00
toddlahman 1f7ba8867e Moved woocommerce_round_tax_total() to Formatting
woocommerce_round_tax_total() is not actually a deprecated function. In
WC 2.0, the round() method was used from the WC_Tax class.

Moved woocommerce_round_tax_total() from wc-deprecated-functions.php to
wc-formatting-functions.php.
2014-01-26 00:35:07 -08:00
splashingpixels 8f5bf6dde7 Replaced deprecated jQuery live methods with on 2014-01-24 10:34:48 -08:00
Kathy Darling bf06494efc add apply_filters to the product filters on the edit.php screen 2014-01-24 14:50:04 +01:00
Max Rice f17a52fd3a Make customer data for orders endpoint consistent for guest orders
Simply returning ‘guest’ for the customer property changes the data
type of the response from a dictionary to string which is bad for
clients that should be able to always expect a dictionary. This commit
fixes that by using the same dictionary structure as registered
customer orders, but excluding fields which aren’t applicable. Clients
can determine guest vs. registered customer orders by inspecting the
value of customer ID, which is 0 for guest orders.
2014-01-23 16:38:08 -05:00
Max Rice ac1cd5d23d Fix API keys permissions bug
When API keys were generated for the first time, the permissions
weren’t set, which required an additional save before they were set.
This commit fixes this to set `read` permissions by default when
initially generating API keys.

Part of #4055
2014-01-23 16:24:16 -05:00
Mike Jolley 207ca1e177 Config for transifex
@coenjacobs if you install transfix client, go to the i18n directory in
console and run `tx pull -a`
2014-01-23 14:04:39 +00:00
Mike Jolley 312af99255 Pulled in translations from Transifex. 2014-01-23 14:03:54 +00:00
Mike Jolley a0d123447b trash old langs 2014-01-23 12:48:29 +00:00
Mike Jolley 1dd1629ff9 POT files 2014-01-23 12:28:57 +00:00
Mike Jolley 519037c785 Merge pull request #4563 from splashingpixels/master
coding standards fixes
2014-01-23 03:48:51 -08:00
splashingpixels 454b97080a coding standards fixes 2014-01-22 20:36:24 -08:00
Mike Jolley 1a416875f8 Format prices when using quick edit 2014-01-22 15:36:29 +00:00
Mike Jolley 3958a40b06 No span for checkbox descriptions 2014-01-22 15:27:42 +00:00
Mike Jolley 986f612bf7 tidy up checkbox output 2014-01-22 15:22:58 +00:00
Mike Jolley 15ba1030d6 Merge pull request #4561 from helgatheviking/fix/duplicate-label-for-settings-checkbox
fix for #4547
2014-01-22 07:03:23 -08:00
Mike Jolley f46e6aefd7 Only show taxes in cart when taxes are enabled 2014-01-22 14:10:11 +00:00
Mike Jolley e04fafcba9 Correctly total and loop fee taxes Closes #4559 2014-01-22 14:10:11 +00:00
Kathy Darling f93abb7acb fix for #4547 2014-01-22 13:54:25 +01:00
James Koster ea1a82c612 twentyfourteen bits. closes #4558 2014-01-22 10:44:53 +00:00