Selling digital product but has shipping issue

Selling digital product but has shipping issue

C_Yang
New Member
10 0 0

Hi, 


I am selling digital product and have unchecked the physical product. But it is still appearing on shipping profile and shipping on checkout  page? 

I don't need customer to choose shipping method on checkout page. Please help.

Regards,
Yang

1.png

2.png

 

3.png

Replies 3 (3)

Summer
Shopify Staff
1420 324 244

Hey, @C_Yang!

This is Summer from the Social Care team at Shopify. Thanks for your question!

Digital products will still appear in the general shipping profile, as all products are listed there by default, but they shouldn't prompt the shipping page to appear at checkout. When checking out with a digital product, the customer skips the shipping page and sees the payment page after the information page. With that said, it's strange that you're seeing the shipping page.

Let's try to troubleshoot the issue by following the steps below.

  1. Clear your browser's cookies and cache by following the steps on this page.
  2. In your Shopify admin, go to Products > All products.
  3. Click the digital product.
  4. Scroll down to the Shipping section. If the product has variants, click any variant under the Variants section to see the Shipping section.
  5. Uncheck This is a physical product.
  6. Click Save.
  7. Check This is a physical product.
  8. Click Save.

You can also toggle the 'This is a physical product' checkbox for several products by selecting the 'Requires shipping' field through the bulk editor. We have a guide on using the bulk editor on this page.

After following the steps above, you can then do a test order to see if the shipping page still comes up. If it still does, we'll need to access your account and investigate. While we’re not able to provide account-specific support via the Shopify Community at this time, we’d be happy to continue assisting you through live chat, email, or callback. You can visit https://bit.ly/3cJkx8V and log in to your account to create a support request.

Summer | Social Care @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit the Shopify Help Center or the Shopify Blog

harkalygergo
Visitor
2 0 0

I have also problem with digital products ans shipping calculator on cart page. If there is only digital products in cart, the free shipping calculator calculates too on Cart. On checkout page it is OK, shipping cost not shown.

 

How could I solve that if only digital products in cart, shipping cost pre-calculator do not calculate or just simply do not show?

harkalygergo
Visitor
2 0 0

I solved it with this liquid code, but maybe am official Shopify solution would be better:

{%- assign isAllCartItemsDigital = true -%}
{%- for item in cart.items -%}
{% if item.requires_shipping == true %}
{%- assign isAllCartItemsDigital = false -%}
{% endif %}
{%- endfor -%}

Plus:

{%- if settings.free_shipping_limit != blank and block.settings.message != blank and isAllCartItemsDigital != true -%}