We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Dawn theme showing price twice in checkout

Dawn theme showing price twice in checkout

happytappy
Tourist
11 0 1

website address is: happytappyshop.com

 

Thank you!

Replies 9 (9)

Guleria
Shopify Partner
4299 825 1189

Hello @happytappy ,

 

Do you have any product which is available for purchase which I can add to cart and check the issue ?

 

Regards
Guleria

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
happytappy
Tourist
11 0 1

All products should be available, thank you. 

Guleria
Shopify Partner
4299 825 1189

Yes that should be but in your store all products are sold out. 
Can you provide a link of any one product which is available at the moment ?

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
Guleria
Shopify Partner
4299 825 1189

Both of variants of this product is sold out.  

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
happytappy
Tourist
11 0 1

I’m not really sure what suggest now as it’s all showing as in stock for me

The_ScriptFlow
Trailblazer
201 17 25

Kindly make the product in stock so that we can provide you solution code.

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com
- For any custom section queries, bug fixing please visit: Level 2 Fiverr Profile
- Buy Me a Coffee? Nah… Let’s Upgrade to a Car
- If my solution was helpful, mark it as a solution and hit the like button!
happytappy
Tourist
11 0 1

Hi, I believe I may have fixed the issue now

tim
Shopify Partner
4812 598 1733

Not sure its related, but there is a problem in your code (at least one). 

 

sections/header.liquid originally has this code https://github.com/Shopify/dawn/blob/main/sections/header.liquid#L297-L304 :

{% javascript %}
  class StickyHeader extends HTMLElement {
    constructor() {
      super();
    }


    connectedCallback() {
      this.header = document.querySelector('.section-header');

 

 Yours looks like this:

{% javascript %}
  class StickyHeader extends HTMLElement {
    constructor() {
      super();
    }
let items = document
    .querySelector(".header__inline-menu")
    .querySelectorAll("details");
for (const item of items) {
    item.addEventListener("mouseover", () => {
        item.setAttribute("open", true);
        item.querySelector("ul").addEventListener("mouseleave", () => {
            item.removeAttribute("open");
        });
        item.addEventListener("mouseleave", () => {
            item.removeAttribute("open");
        });
    });
}
Linking code in sections/header.liquid:
<script src="{{ 'menu-dropdown.js' | asset_url }}" defer="defer"></script>

    connectedCallback() {
      this.header = document.querySelector('.section-header');

Which is a broken code -- open menu on hover code pasted in a wrong place.

Please, restore to original.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com