My theme carries a specific store ID (“theme_store_id”:887). I’d like to either completely remove it or set it to ‘null’. Is there a safe and efficient way to accomplish this without compromising the functionality of my theme? I am currently using Dawn theme version 9.0.0
Any guidance or step-by-step instructions would be greatly appreciated. Thank you in advance for your help!
Hi @12thScale ,
I think it can’t remove because it is setting default of Shopify theme
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
All that does is clarify the store is dawn theme from the shopify theme store.
Removing it can slow down anyone trying to casually help you, and really this info being missing doesn’t keep advanced users from identifying what theme is being used.
If you want to break theme upgradability, and in some cases cripple third party apps,tools, browser extensions and complicate support.
Download the theme edit the settings_schema.json to rename the theme , then reupload.
Advanced: in the layouts, theme.liquid etc., either parse or filter the {{ content_for_header }} to strip that info out i.e. {{ content_for_header | remove:“” }}, be explicity in the exact thing being removed or you can get false positives unwittingly removing parts that are neccesary.
@PaulNewton thanks for your response, that did the job! as for the Advanced tip you mentioned, what would that be used for exactly, since I was able to remove the theme_store_id with the first step?