BrandynL
6ed7278678
add password hover visibility on password inputs with javascript
2019-10-27 16:56:42 -04:00
Rok Sprogar
8f6cb9d058
fixed the jQuery data() caching issue
2019-10-12 19:04:46 +02:00
Adam Jones
0f7398d607
Fixing an issue with an on-body click triggering on pages that do not contain the referenced span.description element. Wrapped it in an if statement to make sure element exists beforehand.
2019-10-02 15:32:36 +01:00
Gerhard Potgieter
dec4a381fe
Merge pull request #24720 from ChromeOrange/master
...
Allow select fields in credit card form to maintain value when the checkout form refreshes
2019-09-30 14:36:16 +02:00
Gerhard Potgieter
27be925552
Merge pull request #24406 from kolyasapphire/add-applied_coupon-trigger-to-checkout
...
Add 'applied_coupon' trigger to checkout.js
2019-09-30 13:59:37 +02:00
Andrew Benbow
d339452bce
Update checkout.js
2019-09-30 10:24:00 +01:00
Andrew Benbow
f8b268d3a0
Update checkout.js
2019-09-30 10:22:08 +01:00
Gerhard Potgieter
e8d617156d
Merge pull request #24665 from miguelfspinto/patch-4
...
Enable append hashes on custom events (like ajax requests)
2019-09-27 13:35:48 +02:00
Miguel Pinto
fff09c9811
Enable append hashes on custom events (like ajax requests)
2019-09-23 16:04:31 +01:00
johntendik
0a9563dacd
fixing indentation
2019-09-10 20:43:13 -04:00
johntendik
366681038f
added unload event to prevent reload during checkout
2019-09-10 20:23:10 -04:00
kolyasapphire
faf05c00c2
Renamed the trigger
...
Changed to applied_coupon_in_checkout to avoid unexpected behaviour
2019-08-23 16:15:57 +03:00
kolyasapphire
fe3395cd6b
Add 'applied_coupon' trigger to checkout.js
...
To check it’s working correctly:
add_action( 'woocommerce_after_checkout_form', 'alert_on_coupon');
add_action( 'woocommerce_after_cart', 'alert_on_coupon');
function alert_on_coupon() { ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
$( document.body ).on( 'applied_coupon', function(event,code){
alert(code);
});
});
$( document.body ).trigger( 'applied_coupon', [ data.coupon_code ] );
2019-08-14 19:09:18 +03:00
vedanshujain
970271d0b7
Remove `blur` event to keep focus on select box.
...
This removes the `blur` call so that focus on select box is maintained for accessibility. This call was added way back in 2012 but from what it looks like, it can be removed safely.
2019-08-06 22:08:00 +05:30
Paul Dechov
e15e51868c
Remove accidental jQuery references in favor of $
2019-08-02 18:10:47 -04:00
Paul Dechov
429161e1c6
Add logic to initialize checkbox based on whether shipping address is different
2019-07-30 18:42:51 -04:00
Paul Dechov
264556be91
Call ship-to-different-address change handler manually in lieu of event trigger
...
Avoids unnecessary update_checkout call on initialization.
2019-07-29 22:39:19 -04:00
Paul Dechov
4a94037c52
Replace update_checkout request on checkout page load with updated_checkout event
2019-07-29 22:32:56 -04:00
Paul Dechov
c3076209c7
Cache checkout fragments and only update DOM on change
2019-07-24 18:00:29 -04:00
Peter Fabian
2f19640ce1
Fixed jshint problems.
2019-07-15 12:59:06 +02:00
Rodrigo Primo
6e3f22fd6c
Tabs should be used for indentation instead of spaces
2019-07-12 10:57:18 -03:00
Rodrigo Primo
0809c96168
Merge branch 'master' into fix/23283
2019-07-12 10:55:43 -03:00
Gerhard Potgieter
9ca6dad11e
Merge pull request #23433 from justlevine/master
...
Preserve State field input classes when selecting a Country.
2019-07-10 15:31:39 +02:00
Gerhard
7038c73ab4
Merge branch 'master' into update/exclude-compiled-assets-from-git
2019-07-09 10:57:40 +02:00
Claudio Sanches
61346720c7
Allow enforce password strength meter on checkout
2019-05-24 15:27:26 -03:00
Gerhard
bb2d38db49
Remove all frontend minified js files
2019-05-07 10:20:28 +02:00
justlevine
78ae91a77d
Add input-classes to preserve user defined classes on change
2019-04-22 19:43:41 +03:00
Mike Jolley
6579972fd3
Minify
2019-04-16 14:36:37 +01:00
Mike Jolley
2e96f4ab3f
override addCaptionHTMLFn
2019-04-16 14:33:41 +01:00
Mike Jolley
81ac8664a9
Avoid update cart on non-cart screens
2019-04-12 12:14:54 +01:00
Mike Jolley
2f9d6ac669
queue remove from cart
2019-04-12 12:05:07 +01:00
Mike Jolley
e9836ef298
Add queue for add to cart requests
2019-04-12 11:58:49 +01:00
David Stone
65c4d7d37c
Allow wc_product_gallery to be called without any arguments.
2019-04-01 22:56:54 -06:00
Mike Jolley
308d08f97e
Run grunt tasks
...
Fixes warnings from grunt so files are minified correctly. Copied fixes that went into release branch but not master earlier this week.
2019-03-20 20:08:52 +00:00
Mike Jolley
7c42ac0a29
Also remove hardcoding of attributes on frontend state fields
2019-03-19 16:59:22 +00:00
Mike Jolley
81a4b81e7c
Merge pull request #23066 from woocommerce/fix/23055
...
preventDefault when dismissing store notices
2019-03-18 11:12:26 +00:00
Gerhard
2b90cf845e
Pass event as parameter.
2019-03-18 13:09:38 +02:00
Mike Jolley
3070961783
Merge branch 'pr/23047'
2019-03-18 11:02:33 +00:00
Mike Jolley
5d22b3a2eb
data check
2019-03-18 11:02:26 +00:00
Gerhard
63f8359491
preventDefault when dismissing store notice, this fixes jumping of page to top when clicking store notices at the bottom of the page.
2019-03-18 10:23:25 +02:00
JeroenSormani
5faab22c77
Merge remote-tracking branch 'upstream/master' into checkout-input-fields
2019-03-16 10:46:49 +01:00
JeroenSormani
772244d82f
Recognize all :input checkout fields with ID, not just input (JS)
2019-03-16 10:46:18 +01:00
Mike Jolley
f90f0203b5
Grunt dev
2019-03-15 12:21:51 +00:00
popala
023d9fe9ed
Fixed "e is null" error on checkout page
...
Fixed "e is null" on checkout page which caused the order panel to be disabled.
2019-03-13 19:37:14 +01:00
Mike Jolley
53a7de5244
Merge pull request #22948 from woocommerce/fix/22940
...
Correctly show state fields after posting the edit address form
2019-03-12 13:20:32 +00:00
Mike Jolley
406364fefb
Tidyup unused vars
2019-03-06 15:33:20 +00:00
Mike Jolley
023217c03d
Remove required when changing to optional
2019-03-06 15:18:27 +00:00
Mike Jolley
9b6ded2cef
Custom init event for state fields
2019-03-06 15:11:39 +00:00
Mike Jolley
e1ff1bfae9
Update from master
2019-03-06 12:37:24 +00:00
Mike Jolley
f707eeda3e
Update from master
2019-03-05 13:31:14 +00:00
Mike Jolley
fc1a274fcb
Check for hover after timeout
2019-02-20 17:22:43 +00:00
Mike Jolley
76b7a4facf
cs
2019-02-20 16:37:40 +00:00
Mike Jolley
afe219d854
Select an option vs state
2019-02-18 11:49:46 +00:00
Mike Jolley
34998caa43
Add time to fragment request
2019-02-15 17:35:44 +00:00
Mike Jolley
e830b42ba7
Remove old safari code
2019-02-15 17:10:17 +00:00
Mike Jolley
b70471448c
Merge fix/21858
2019-02-12 16:19:32 +00:00
Mike Jolley
4b8e808a97
Merge pull request #22664 from woocommerce/fix/21788
...
BlockUI on order form submit
2019-02-12 16:11:08 +00:00
Mike Jolley
8404b644da
Merge pull request #22645 from woocommerce/update/21963
...
Add notice hash to store notice cookie
2019-02-08 13:05:03 +00:00
Gerhard Potgieter
d0898e6a80
Merge pull request #22629 from woocommerce/performance/22260
...
Use `get` instead of `load` on cart page
2019-02-06 15:47:17 +02:00
Mike Jolley
3948e9f83c
BlockUI on order form submit
2019-02-05 11:40:10 +00:00
Mike Jolley
fa9465a2cb
novalidate order review form
2019-02-05 11:23:47 +00:00
Mike Jolley
5f5272ba2e
Merge pull request #22541 from woocommerce/pr/20830
...
Init cart widget when added to sidebar via the customizer
2019-02-05 10:39:29 +00:00
Mike Jolley
1928f34699
Add notice hash to store notice cookie
...
Closes #21963
2019-02-04 13:18:09 +00:00
Mike Jolley
893b33973c
Merge branch 'fix/22147'
2019-02-04 13:05:40 +00:00
Mike Jolley
25a92b1d92
Feedback
2019-02-04 12:51:20 +00:00
Mike Jolley
a5d62b83a8
Merge branch 'enhancement/woocommerce_display_product_attributes'
2019-02-04 11:25:13 +00:00
Mike Jolley
8fde07153a
Use get instead of load
2019-02-01 14:30:42 +00:00
Mike Jolley
9b655c0ba7
Use hasSelectiveRefresh
2019-01-23 21:29:55 +00:00
Mike Jolley
3a94fc6d00
Introduce steps and cleanup variable names for clarity
2019-01-23 18:29:33 +00:00
Mike Jolley
01696d92b0
Add comments and round to 10
2019-01-23 17:34:51 +00:00
Mike Jolley
f96d59ac2b
Merge branch 'pr/21043'
2019-01-23 15:16:50 +00:00
Mike Jolley
987a24afdc
Timeout param
2019-01-23 15:16:40 +00:00
Eric Defore
148e308d38
Have ProductGallery object utilize arguments that are passed into it.
2019-01-18 12:20:13 -05:00
Eric Defore
c1c8a88920
Add before and after Events for Product Galleries on Product Single
2019-01-18 12:08:38 -05:00
Mike Jolley
ac29165892
Merge pull request #22459 from woocommerce/fix/21770
...
Prevent selected payment method description box from sliding up
2019-01-17 13:35:22 +00:00
Claudiu Lodromanean
c2c7cbeccb
Merge pull request #22444 from woocommerce/fix/22119
...
Fix checkout field locales on first load
2019-01-16 09:39:42 -08:00
Ron Rennick
5bba703723
update trigger name to `wc_cart_emptied`
2019-01-16 10:36:35 -04:00
Mike Jolley
2ea7e4fb6a
woocommerce_display_product_attributes filter
2019-01-16 12:25:19 +00:00
Ron Rennick
3fae170c14
notify script plugins that the cart was emptied
2019-01-15 14:44:28 -04:00
Mike Jolley
35a01fd06a
Update select placeholders on locale change
2019-01-15 15:50:55 +00:00
Mike Jolley
ec1d44c742
Prevent selected payment method description box from sliding up
...
Closes #21770
2019-01-15 12:14:55 +00:00
Mike Jolley
f6fe8d1abc
Priority should use integers
...
#22227
2019-01-14 14:58:00 +00:00
Mike Jolley
d83c9c5f5b
When page is ready, make fields update for all country fields
2019-01-14 14:44:54 +00:00
Mike Jolley
3922d186e0
trigger event when ready (wc_address_i18n_ready)
2019-01-14 14:44:14 +00:00
Mike Jolley
a4925ff916
Loop to match text versions of attribute names and avoid problems with entities
2019-01-08 14:08:27 +00:00
Ron Rennick
0456cb7323
update second instance of href reassign in cart.js, props @joshuatf
2018-12-19 11:19:47 -04:00
Ron Rennick
dc41135a05
use reload() instead of reassigning href property
2018-12-19 11:16:59 -04:00
claudiulodro
3fc51354a4
Decode variation html dimensions
2018-11-06 17:10:20 -05:00
Gerhard
ba90c531c7
Remove the change trigger as that is causing other issues as per ##20640
2018-10-31 07:29:35 +02:00
Gerhard
c0acd73d31
Trigger a country select on page load to ensure the address-i18n is fired on first page load.
2018-10-29 13:39:54 +02:00
claudiulodro
24d2948299
Recompile assets
2018-09-28 08:28:45 -07:00
Dominik Krebs
0af4941187
corrected code style
2018-09-26 16:10:37 +02:00
Dominik Krebs
64399b65b9
fixes an issue with additional payment select fields having 'disabled selected'
2018-09-19 13:35:00 +02:00
claudiulodro
4d6ab678c1
Fix linter errors
2018-08-30 09:56:26 -07:00
Florian Ludwig
1d76102395
Adds error event trigger for erroneous fragment retrieval (timeout or server error)
2018-08-14 12:53:04 +02:00
Florian Ludwig
6f03a5fe72
Adds timeout to cart fragment ajax call
2018-08-14 12:24:33 +02:00
Peter Fabian
23623323b7
Change caption of image when variation is selected.
2018-08-09 14:23:29 +02:00
Peter Fabian
caa978cf2d
Use jQuery for scrolling to element for all browsers to avoid special cases.
2018-08-06 19:56:09 +02:00
LuigiPulcini
79cda7c2bc
Update add-to-cart.js
2018-07-23 08:11:21 -07:00
LuigiPulcini
bca7bfe29c
Adding product data to `removed_from_cart` event
...
Adding `$thisbutton.data()` to the arguments sent by the `removed_from_cart` event.
This would help developers easily detect which product has just been removed and alter their theme/plugin accordingly.
2018-07-14 16:11:16 +02:00