Commit Graph

1135 Commits

Author SHA1 Message Date
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
Mike Jolley 6ee68e063f fix coupon and meta in product class 2012-12-20 11:30:27 +00:00
Mike Jolley e7e12714c1 Tweak style and function names for image handling. 2012-12-20 10:53:34 +00:00
Mike Jolley c8852bcf40 Revised, roduct gallery panel, images stored in meta = more flexibility. 2012-12-20 01:13:06 +00:00
Mike Jolley 41f573a71f Magic methods, avoid loading all meta on construct 2012-12-19 23:04:25 +00:00
Mike Jolley f972501dfa get_post_meta instead of get_post_custom - cut out the middleman. #1765 2012-12-19 21:01:15 +00:00
Mike Jolley 0b7750e55a Attribute taxonomy transiant. #1765 2012-12-19 20:42:25 +00:00
Mike Jolley 10dfba9e74 Tax_display can be passed to the display functions. Lets you choose to show the row inc or ex or taxes. #2020 2012-12-19 19:37:13 +00:00
Mike Jolley 83377af6b4 Finnish translation Closes #2021. 2012-12-19 18:43:35 +00:00
Coen Jacobs 944ea5df3d Use returned coupon error message in cart. Closes #1994 2012-12-19 15:57:46 +01:00
Coen Jacobs 314af74f3d Have all WC_Coupon calls use is_valid() method to check #1994 2012-12-19 15:52:16 +01:00
Coen Jacobs 3d2c18db6b Cleared coupon class of coupon_valid, use is_valid #1994
Will rewrite all internal constructions of WC_Coupon to use the
is_valid() method instead.
2012-12-19 15:39:31 +01:00
Steven Mathias 9387ca6acf Updated to include coupon on woocommerce_item_is_discounted filter. Filters should always include all information used to arrive at the default filtered value. 2012-12-18 11:35:56 -07:00
Mike Jolley 019b207a5e Allow get_catalog_ordering_args to have an order passed to it. Closes #2007 2012-12-18 06:57:49 +00:00
Coen Jacobs c8fa43d7bb Constructors can't return data. Set property instead. Closes #1994
Instead of returning the bool (which is impossible in a constructor)
the WC_Coupon constructor now sets a property coupon_valid during
constructing that can be used to check if the coupon is valid.
2012-12-17 13:20:22 +01:00
Max Rice 30f6b5b798 Fix WC_Shipping_Method::get_fee() PHPDoc 2012-12-16 14:27:07 -05:00
Coen Jacobs 60152139a7 Removed double spaces in WC_Cart class methods 2012-12-15 13:01:42 +01:00
Coen Jacobs 9a92fb48a1 Merge branch 'master' of https://github.com/woothemes/woocommerce
Conflicts:
	classes/class-wc-query.php
	classes/class-wc-tax.php
2012-12-15 13:00:34 +01:00
Coen Jacobs 7b5e74626a Remove pass by reference for objects
Done all files except for external libaries: shareyourcart, cssmin,
lessc

@mikejolley Should we update those libraries as well?
2012-12-15 12:53:32 +01:00
Warren Holmes b5474d0a85 Correct scope.
- class-wc-validation.php
2012-12-15 00:03:34 +02:00
Warren Holmes f2ce67fc47 Correct scope, remove ise of var.
- class-wc-tax.php
2012-12-15 00:03:00 +02:00
Warren Holmes 27e315f494 Correct scope, remove use of var.
- class-wc-seetins-api.php
2012-12-15 00:01:58 +02:00
Warren Holmes 02c8253b93 Change private name. 2012-12-15 00:00:04 +02:00
Warren Holmes ab7e656757 Consistent name convention for private/protected class variables. 2012-12-14 23:57:23 +02:00
Warren Holmes de00354f57 Corect scope, remove use of var.
- class-wc-query.php
2012-12-14 23:55:19 +02:00
Warren Holmes 6b7205a417 Correct scope, remove use of var.
- class-wc-product-variation.php
2012-12-14 23:54:13 +02:00
Warren Holmes 0e491d6ffe Correct scope, remove use of var.
- class-wc-product-variable.php
2012-12-14 23:52:46 +02:00
Warren Holmes 5b0297d181 Correct scope, remove use of var.
- class-wc-product-simple.php
2012-12-14 23:51:27 +02:00
Warren Holmes 5fa9923a48 Correct scope, remove use of var.
- class-wc-product-grouped.php
2012-12-14 23:50:51 +02:00
Warren Holmes 21b09ff9a7 Correct scope, remove use of var.
- class-wc-product-external.php
2012-12-14 23:49:46 +02:00
Warren Holmes b99ba56abc Correct scope. remove use of var.
- class-wc-order.php
2012-12-14 23:48:36 +02:00
Warren Holmes d702e6109e Correct scope.
- class-wc-logger.php
2012-12-14 23:44:43 +02:00