Hello,
I am currently experiencing a check out bug with my shopify store. When customers select an adapter, it does not show up in the check out section (please see attached video).
Could someone please help me out, thank you!
Hello,
I am currently experiencing a check out bug with my shopify store. When customers select an adapter, it does not show up in the check out section (please see attached video).
Could someone please help me out, thank you!
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Thank you for your help Ketan!
My website URL is cosybaby.com.au
Looking forward to hear from you soon
Talk to layouthub – I guess it’s their code:
$('#adapter_chooser').click(function () {
var adapter_variant_id = $(this).val();
var checkout_url = $('.checkout_url').attr('href');
var new_checkout_url = 'https://cosybaby.com.au/cart/' + adapter_variant_id + ':1,' + checkout_url.split(',')[1];
$('.checkout_url').attr('href', new_checkout_url);
});
Or you may try DIY – find this code and replace .click( with .change(
I guess this should fix your problem.
@tim_1 Thank you for this! I would like to try to DIY and fix this issue myself.
Could you please tell me how you got to this coding section so i can fix it?
Thank you
I do not know how it’s structured in your backend – what templates/sections/snippets you have to modify.
I can only explore the rendered HTML as it’s displayed on your storefront and I see that this code is wrong.
I also see that my suggestion fixes the problem if i apply it in my browser Developer tools.
So you’d have to do your own research on where it’s located in your theme since I have no access to your backend.