I want to remove all the size charts on all my Products. And prevent them from being imported on future products.
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:
- Navigate to Shopify admin → Online Store → Themes → Edit code
- Locate and delete size chart code in the main-product.liquid file
- 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.
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:
- From Shopify admin → Online store → Themes → Edit code:
- You find the file main-product.liquid and then find the following code:

-
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.
