Removing Dropshipping Suppliers Size Charts

Topic summary

A Shopify store owner wants to remove size charts from all existing products and prevent them from appearing on future imports from dropshipping suppliers.

Proposed Solutions:

  • GemPages support requested the store URL to provide a tailored solution (URL shared: 8e51d2.myshopify.com)

  • BSS-Commerce offered a technical approach:

    1. Navigate to Shopify admin → Online Store → Themes → Edit code
    2. Locate and delete size chart code in the main-product.liquid file
    3. Alternatively, hide size chart images by adding CSS code to theme.css file:
      .page-content--product img#part_three_description {
        display: none !important;
      }
      

Status: The discussion remains open. BSS-Commerce noted they cannot directly verify the code without store access and recommended taking screenshots before making changes. The solution requires manual theme code editing, with a temporary CSS workaround available if the exact code location is uncertain.

Summarized with AI on November 22. AI used: claude-sonnet-4-5-20250929.

I want to remove all the size charts on all my Products. And prevent them from being imported on future products.

Hello @Lmichelle1

To provide you with the most precise solution in this case, could you please share your page URL ( with pass if your store password is enabled )?

Thank you and hope to hear from you.
Best regards,
GemPages Support Team

I am responding again with my URL. Please below.

Hi @Lmichelle1

Please follow these steps:

  1. From Shopify admin → Online store → Themes → Edit code:
![view (43).png|1891x940](upload://gnqBIzcqycLi7gAB4coGQZQWUqr.png)
  1. You find the file main-product.liquid and then find the following code:

![SIZECHARTALL.jpg|500x1464](upload://zwlU00KQP2kZiSaKys7eEkb8ctr.jpeg)
 

  • Then you delete it (if any). Since we don’t have access, we can’t check directly in your code. You can take a screenshot of the code if you’re not sure.

  • You can temporarily hide the img display by going to the theme.css file and adding the following code at the end of the file:

.page-content--product .rte #part_three_description img {
  display: none !important;
}

We hope that it will work for you.