skip to Main Content

I purchased a Bootstrap theme not realizing that I couldn’t just upload the theme into Shopify. I have looked for hours on how to integrate it into my Shopify theme, but I can’t figure it out. Please help!!!

2

Answers


  1. I don’t think that is possible, sorry EGS.

    I am not a big (fan) and user of Spotify unless my client specifically asks for it.

    One of the various many good reasons for that is that you can’t upload your own HTML code or CSS code easily and seamlessly into Shopify. I’m not sure why they did it this way but it is a total headache for developers. I think you might be able to create, MAYBE, HTML or CSS snippets (custom) but even that I’m not sure.

    Spotify auto-manages all the code for you.

    So I think you should stop looking to "integrate a Boostrap theme" "into a Shopify theme".

    You could, among other various options you have now, create a WP site with your BS template, or stick to Shopify.

    Login or Signup to reply.
  2. I am using Bootstrap with Shopify Jumpstart theme (no longer in support).

    It is, matter of fact, pretty easy to integrate Bootstrap

    All you have to do is, get a free theme you like. or one you purchase from Shopify Theme Shop. find theme.liquid

    Add bootstrap above the </head> tag, for example, Bootstrap 5, JQuery.

     <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
     <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
    

    Adjust the stuff that’s on your theme with Bootstrap Classes afterward.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search