Absolutely agree with you! Anyway my goal is not to delete the style, but focus on content and functionality! I’m so curious to know more about your project, if you want drop the link!! Let’s build unstyled projects and content-driven! :)
Man, I hate that situation, where you have an idea in your head, write all the functionality in a paper and wast days to find the right colors and at the end hate that project I was starting days ago. That project will never finished.
Thanks buddy! Complete your project and let me know!!
Yes. Today the most important thing of a project is the UI. I’m agree with you, but look at this site where we are now, is simple and intuitive, this is the goal for me! Could I know more about your project?
Amazing job! I've one question: how did you find the price of every products? I mean, every product page has a different id or class that identify a price. Do you use a regex?
Thanks! Actually a lot easier than you'd expect. Not touching anything on the front-end of the Shopify store.
Every Shopify store has a public JSON file at [Base URL]/products.json with 'price' as a field. Example here: https://wildfox.com/products.json
One thing I messed up on originally was not pulling the 'currency' field which is actually in a different public JSON file called 'meta.json'. Example here: https://wildfox.com/meta.json
Separately, this was primary reason to only start with US stores: to make sure the currency shows up correctly and to purposely limit the initial audience to keep loading times reasonable. Working on adding all Shopify stores in the world now (a list of about 5 million active stores from what I have found).