Questions tagged [checkout]

Checkout is the process of finishing a transaction after using a shopping application for some time.

In a typical shopping application the user can add part to a shopping cart, before actually buying anything. The actual process of buying is the checkout process. It typically consists of providing or selecting shipping and/or billing address and providing some means of payments.

See also

The term "checkout" is also used in the context of version control systems. For those questions, use the vcs specific tags (e.g ) or

2651 questions
5
votes
3 answers

Set a minimum order amount in WooCommerce

I want to have a minimum order amount in my WooCommerce store. The following code is perfectly showing a notice if the amount isn't reached but the checkout is still possible. How to disable checkout-button when the minimum amount isn't…
Krystian
  • 887
  • 5
  • 21
  • 52
5
votes
1 answer

Display custom checkout address field 2 label in Woocommerce

I found a way to change the placeholder but not the label of the checkout input fields in woocommerce. I would like to change the label for the adress_field_2. Here is my attempt that did not change anything. I tried [label] and [label_class] but…
mika2019
  • 404
  • 4
  • 16
5
votes
2 answers

Choosing a date and time after choosing the WooCommerce delivery method

I need to make a selection of the time and date of delivery of the products, after choosing the method of delivery and place these fields in woocommerce_after_shipping_rate. As I see it. The customer chooses the delivery method, for example,…
Dmitry
  • 119
  • 1
  • 9
  • 38
5
votes
0 answers

How to remove billing address and contact information from paypal express checkout form?

I am currently using the new paypal express checkout button to get payments online paypal-button.png for more information : https://developer.paypal.com/docs/checkout/quick-start/ but the idea is that i want to make the payment so easy for guests…
haydar
  • 111
  • 1
  • 9
5
votes
1 answer

How to change "Have a coupon?" text in Woocommerce checkout page

I'm trying to translate "Have a coupon?" text in Woocommerce checkout page using this code: function custom_strings_translation( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'HAVE A COUPON?' : …
Greg Minaya
  • 139
  • 1
  • 2
  • 10
5
votes
1 answer

Show or hide html element on chosen shipping method change in Woocommerce

I'm trying to show/hide some elements from my checkout page, based on the chosen shipping method. The page elements I'm trying to show/hide come from another plugin, so I tried to change the display properties for them. I've looked to many thread…
5
votes
2 answers

Custom Flat Rate Description Text in Woocommerce checkout page

I have two flat rate shipping methods set up within Shipping Zones. At the checkout both of these shipping methods are available. I'd like to display a text description under each flat rate shipping option. There doesn't seem to be any options to do…
Future Webs
  • 229
  • 4
  • 17
5
votes
0 answers

Magento2 Exception "No such entity with cartId = " on checkout when the customer is logged out

I'm developing a custom theme for Magento2 based on Luma. So, when I open the checkout page without a customer logged I receive this exception. Exception #0 (Magento\Framework\Exception\NoSuchEntityException): No such entity with cartId =…
FrancisGregori
  • 156
  • 1
  • 7
5
votes
1 answer

Add custom checkout fields below the terms and conditions in Woocommerce

I have built an e-commerce site using Woocommerce. I would like to add two more check boxes below the terms and conditions. I have searched everywhere for a working solution and the only thing that I found is a commercial plugin. How to add custom…
Max Loyd
  • 408
  • 6
  • 21
5
votes
1 answer

Change a checkout billing field placeholder in Woocommerce

I'm trying to change the fields placeholder of "billing address 2" in the checkout page, using the following code: add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields',9999 ); // Our hooked in function - $fields is passed…
Gal Hadad
  • 71
  • 1
  • 2
5
votes
2 answers

Add a discount for specific selected payment method in WooCommerce

Without a using coupon functionality I would like to apply a 15% discount for a specific payment method ID like 'xyz'. I would like help identifying which hooks to use. The general idea of what I would like to achieve is: if payment_method_hook ==…
The Dude man
  • 383
  • 6
  • 19
5
votes
1 answer

Remove attribute values from product variation title and show them on separate rows

I have a checkout page where I want to: Remove selected product attribute values from product variation title item. Remove the quantity from item title too. Display the different product attribute value such as size, color and the quantity on…
Jens
  • 135
  • 1
  • 3
  • 9
5
votes
1 answer

Easy start with BlueSnap hosted payment fields;

Hi – I'm looking for a simple script I can Copy&Paste into my website so I can start selling with BlueSnap's HPF fields. The form should include the most basic elements needed to get the token back and charge the shopper, I'm not looking for any…
NJ1988
  • 127
  • 4
5
votes
1 answer

Add a custom checkbox in WooCommerce checkout which value shows in admin edit order

I try to add an which value also shows at the woocommerce backend, so I can see at the end if the costumer ticked the box or not. The checkbox should be below the Payment Methods. Is it possible to add a custom checkbox in…
sHamann
  • 789
  • 3
  • 10
  • 36
5
votes
2 answers

woocommerce change price in checkout and cart page

With woocommerce, in my website I'd like to add in the cart page a select input where the user can select a value between two options, and depending on this value I will change the price. so far, I could get the total and change it using this :…
Hanane
  • 345
  • 1
  • 8
  • 19