App reviews, troubleshooting, and recommendations
Hey
I went to a website and I saw this section where it says 'why choose us' and I really like the idea.
So if anyone knows the name of the app
Please let me know
Thanks
Also interested. I've seen this on a few checkouts myself. Not sure if I just add a link to the scripts area of checkout to include a banner?
Hey aymanemsi,
You can create this but will take a little bit of html and javascript. Within your checkout.liquid you can target that part of the page or where ever you want to place the "why choose us" section by using javascript like this
(function($) {
// if customer is in the contact information section of checkout process
if (Shopify.Checkout.step === 'contact_information') {
$(document).on('page:load page:change', function() {
$('.order-summary__sections').append(cta);
})
}
});
this would target the order summary section just below the total amount section and appends a 'cta' which is just a variable containing your html like this
var cta = `
<section class="wcu">
<span class="wcu-title">Why choose us?</span>
<div class="icon">
</div>
</section>
`;
after doing that you should see the why choose us title below your "total amount" section on your checkout page then all thats left is styling the section as you want and adding icons and whatever else that makes your checkout unique. hope this helps!
Hi, Thomas,
Thank you for your code,
my theme is debutify, I don't have checkout. liquid
Could you please go into more detail? Because I don't know anything about code, but I would love to add 'why choose us' checkout
Thanks again!
Only Shopify plus merchants have access to their checkout I suppose, sorry for the confusion. In this case you can use an app from the Shopify App Store!
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022