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
3 answers

Get billing information in order review section of one page checkout in Magento

I am trying to display the billing and shipping information in the "Order Review" section of One Page Checkout in Magento 1.7.0. However, it just doesn't want to co-operate at all. I tried several methods mentioned in various forums and in SO as…
Vikas
  • 264
  • 3
  • 9
6
votes
2 answers

Extending Magento Shopping Cart

I need to extend the Magento shopping cart to include an extra step for a store locator. I understand that I need to overwrite the core OnePage controller (Mage_Checkout_OnepageController) and blocks (Mage_Checkout_Block_Onepage) but what needs to…
Lyndon Hook
  • 63
  • 1
  • 4
5
votes
1 answer

Custom fields on woocommmerce checkout page

I'm trying to put two custom fields at the top of the woocommerce checkout (ideally it was the cart page but I can't find anything online about this being possible) I've got the two custom fields to appear on the checkout page but with VERY limited…
Kyle
  • 53
  • 4
5
votes
1 answer

How to get Product and Quantity information from payment_intent.succeeded event via Webhooks in Stripe?

Here is how I'm initializing the Checkout Process in Node.js. let email = req.body.email let product_id = req.body.product_id let YOUR_DOMAIN = 'http://localhost:8000' const session = await stripe.checkout.sessions.create({ …
Anirudh
  • 2,767
  • 5
  • 69
  • 119
5
votes
1 answer

WooCommerce checkout display a message based on specific shipping class

I would like to set a message to specific shipping class in Woocommerce checkout page. I tried using: add_action( 'woocommerce_review_order_before_order_total', 'cart_items_shipping_class_message', 20, 1 ); function…
Jan Stavic
  • 53
  • 4
5
votes
1 answer

Customized Woocommerce checkout fields reverting to default after page load

I have renamed the "shipping_country" label of my woocommerce checkout page successfully using this code: add_filter( 'woocommerce_checkout_fields', 'rename_woo_checkout_fields' ); function rename_woo_checkout_fields( $fields ) { …
5
votes
2 answers

Pass customer email to stripe checkout

I'm using Stripe Subscription running under node. I want to create a new checkout prefilling the email address. So I tried to do in the client: // Setup event handler to create a Checkout Session when button is clicked document …
Lelio Faieta
  • 6,457
  • 7
  • 40
  • 74
5
votes
1 answer

Woocommerce WC()->cart->set_cart_contents() not working

I have a custom pricing WP page with pricing table. There I get 3 parameters, namely, $product_id, $quantity, $total_price. I've created the products as normal WC products, gave each an initial price, description...etc, and obtained the IDs. Then…
TDEgypt
  • 85
  • 1
  • 9
5
votes
1 answer

Add a dynamic fee based on a select field in WooCommerce Checkout

I am using Update fee dynamically based on radio buttons in Woocommerce checkout answer code solution that worked very well for me to add checkbox fields with a different price for each one, and the price changes are reflected in the checkout. But I…
kamuran
  • 53
  • 1
  • 3
5
votes
1 answer

Display a checkbox that add a fee in Woocommerce checkout page

In Woocommerce checkout page, I'am trying to add a check box on checkout page I have referred to these articles woocommerce custom checkout field to add fee to order ajax Checkbox field that add / remove a custom fee in WooCommerce Add a checkout…
Lê Nghĩa
  • 255
  • 4
  • 15
5
votes
2 answers

Git checkout using wildcard to a specific revision

I have been seeking it on Google for 2 hours and still can't find the solution. I want to checkout all files with wildcard to a specific revision. I used following command: git checkout 663090b1c 'src/app/**/*.spec.ts' But it says: error: pathspec…
Thanh Nguyen
  • 5,174
  • 11
  • 43
  • 74
5
votes
1 answer

Magento: save custom address attribute in checkout

This is what i did in my website: Admin->Customers->Attributes->Manage Customer Address Attributes and add a new attribute , the user can see it in his/her profile, under My Addresses option, the new attribute can be edited and is saved when…
Castro Roy
  • 7,623
  • 13
  • 63
  • 97
5
votes
1 answer

Jenkins GitSCM checkout in specific folder

I searched a lot, the GitSCM plugin and stackoverflow etc but could not find answer. I want to checkout Git repository via Jenkins GitSCM plugin into one specific folder say 'MyFolder'. So if my repository is xyz.git then after checkout all files…
shaILU
  • 2,050
  • 3
  • 21
  • 40
5
votes
2 answers

Clear Woocommerce Cart on Page Load Even for logged in users

I want to clear the cart page on page load if this page is not a cart or a checkout page Even for logged in users and admins, any page then it clears. This code was working but its not anymore /**  * Clears WC Cart on Page Load  * (Only when not on…
Maged Mohamed
  • 511
  • 5
  • 27
5
votes
1 answer

Display custom fields values in WooCommerce order and email notification

Based on "Choosing a date and time after choosing the WooCommerce delivery method" answer code, that displays custom Pickup fields and delivery dates, the following code displays the delivery data of those fields on the order edit pages. Here is my…
Dmitry
  • 119
  • 1
  • 9
  • 38