Products
All
Bundle deals
Bundles
Frontals
Closures
Contact
Products
ShesBundled Hair Collection
Search products
0 Items
All Products
Bundle deals
Bundles
Frontals
Closures
Faq
Contact
Back to site
Powered by Big Cartel
$
285.00
-
$
430.00
Straight 3 bundle deal
Select option
16 18 20
18 20 22
20 22 24
24 26 28
26 28 30
30 30 30
32 32 32
Add to Cart
Each set includes 3 bundles
// Set your publishable key. Remember to change this to your live publishable key in production! // See your keys here: https://dashboard.stripe.com/apikeys const stripe = Stripe('pk_test_51H5Yw2CmVwWT38OeT8LDDyv1EbFsH0f5VxyFWwmnoKaa4aFn3GoxlTfvpzitHhQJg0JgLcX5w5QwkMYPorA6mqXq00eLwaJO7e'); const elements = stripe.elements(); const options = { amount: 9900, // $99.00 USD currency: 'USD', paymentMethodTypes: ['klarna', 'afterpay_clearpay', 'affirm'], // the country that the end-buyer is in countryCode: 'US', }; const PaymentMessageElement = elements.create('paymentMethodMessaging', options); PaymentMessageElement.mount('#payment-method-messaging-element');
0 Items
Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'afterpay_clearpay'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Afterpay transaction amount limits: # https://stripe.com/docs/payments/afterpay-clearpay#collection-schedule unit_amount: 2000, }, quantity: 1, }], shipping_address_collection: { # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['AU', 'CA', 'GB', 'NZ', 'US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })