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
6
votes
1 answer

Changing WooCommerce cart item names

The goal is to change the name of the item as it gets passed to our payment gateway, but leave it as-is for display on our product pages. I've tried this in my functions.php: function change_item_name( $item_name, $item ) { $item_name =…
Drew Angell
  • 25,968
  • 5
  • 32
  • 51
6
votes
3 answers

Move payment methods in Woocommerce checkout page

I have to move the payment methods in the checkout page of a Woocommerce website above the order review, but I don't know how. The problem is, that I tried using the following code: remove_action( 'woocommerce_checkout_order_review',…
Dino9
  • 95
  • 2
  • 8
6
votes
1 answer

Adding a hidden fields to checkout and process it through order

I would like to add an verification code to the checkout process that is read-only ( or invisible) and pre-filled, pinned on an order. The Customer Need this Code to verifiy the Order. I add a custom Array to the Billing Field at the…
Marv
  • 63
  • 1
  • 1
  • 3
6
votes
1 answer

Add a custom field to WooCommerce Billing form?

I get this code to add a custom field to the WooCommerce Billing form. The field is shown but the problem is that the field has not label nor placeholder nor class name. What am I missing here? I added this code to functions.php in my child…
JPashs
  • 13,044
  • 10
  • 42
  • 65
6
votes
3 answers

How to add a heading in between checkout fields of WooCommerce

I am customizing the WooCommerce checkout page fields. I want to add a heading (text) in between the fields. I have reordered the fields like this add_filter('woocommerce_checkout_fields', 'ac_checkout_reorder_fields'); function…
Ayanize
  • 485
  • 1
  • 4
  • 21
6
votes
2 answers

Check if ANY coupon code is applied in WooCommerce

How do I check if ANY coupon is applied to a product in WooCommerce at checkout? Everything I see checks for ID or slug, or an array of them, but I want to adjust some fields at checkout based on whether or not there's a coupon, any coupon. Thanks…
Torque2
  • 87
  • 1
  • 2
  • 8
6
votes
3 answers

WooCommerce - how can I dynamically load checkout page using ajax?

I'd like to display checkout in the lightbox/modal window, so it would be quickly accessible from every shop page. Any ideas how to do this? The shop will be integrated witha paypal (maybe express) and Stripe plugin.
user2929594
  • 252
  • 1
  • 3
  • 10
6
votes
2 answers

Woocommerce: help replacing html output

My checkout-billing-fields and shipping-fields are output in html with 3 different row alignements. first, last and wide. I only want to set them to be first, and last - so that each input is next to the other. Original:
6
votes
4 answers

How to change WooCommerce text shipping in checkout

I am trying to change a text in the WooCommerce checkout page from Shipping to Delivery from Your Order Section. I tried to open the core files in FTP and tried to change it manually but I couldn't find the text anywhere. Any help on how to change…
Aaron
  • 87
  • 1
  • 2
  • 9
6
votes
2 answers

Stripe checkout - how to bind submit event?

I'm using the Stripe checkout JS library in my webpage. I'd need to show a blocking "I'm processing your request" message as soon as the token is being submitted to my server I need it because my serverside processing may require more than 5 seconds…
alexcasalboni
  • 1,726
  • 1
  • 16
  • 26
6
votes
2 answers

stripe checkout custom button not charging

I am trying to get Stripe's Checkout Custom Button to charge a credit card but all it does is minimize after I enter the credit card details. I am using the code found in the documentation but I can't get it to work. The simple button is easy to use…
JJJ
  • 3,314
  • 4
  • 29
  • 43
6
votes
3 answers

How to make checkbox checked by default? In Woocommerce checkout

Have a wordpress site with woocommerce I installed the Getresponse Woocommerce Integration plugin and really need the checkbox at checkout to be TICKED by default (they tick a box "sign up to our newsletter" to join our email list) Been trying…
apemusic
  • 101
  • 2
  • 5
6
votes
2 answers

PayPal Checkout Buttons and Custom Variables

I have created a rather simple photo gallery that I wish to apply PayPal Checkout buttons. The basics are simple enough, but what I want to do is to at least pre-populate the named fields as part of the button or pass variables contained in each…
Tyson Navarre
  • 461
  • 2
  • 7
  • 11
6
votes
2 answers

GetExpressCheckoutDetails returns session expired (10411 error) in asp.net (only on some computers)

I got Paypal integrated in my asp.net web site, Its works perfectly on some computers, while others it doesnt. EDIT: found the problem but looking for a solution The problem is as fallowing: Things seem to work fine I can pay with paypal and then…
Ovi
  • 2,459
  • 9
  • 50
  • 72
6
votes
7 answers

Magento guest checkout option not showing up regardless of allow guest checkout setting

I’m having a strange problem with my fresh magento installation. There is no option for guest checkout even though I have Disable Onepage Checkout: NO, and Allow Guest Checkout: YES. I’ve looked at the core_config_data in the db and can’t find…
mwalsher
  • 2,790
  • 2
  • 33
  • 41