Blockshop theme shopify

Find out your best Shopify theme and theme on shopify in less than two minutes

Find Shopify Theme — it's free
No difficulty
No complicated process
Track competitor's stores
BACK

Blockshop Shopify Theme Review

hey guys what's up my name is Gabriel,and today I'm here with my beautiful,wife Teigen and today we're reviewing,another team this time from the food and,drink category at Shopify team store the,team is called block shop it's by the,guys at Tripp themes we have reviewed,one of those before it's a hundred and,forty dollars which is which is a really,good price actually yeah these are,responsive our Athena ready and has a,flat UI design I mean it's unique the,premium is elegant whatever unless go,straight to the point and review these,theme so includes four different styles,yeah we've got deli feet beauty and,Playhouse and something we were thinking,about you know you get these themes and,you've got four styles you really have,to think of your niche what products are,you selling you have the option here of,four styles but are those styles going,to suit your niche you may end up,finding that one or two of the styles,are going to suit you or maybe all of,them suit you it's really something that,you've got to look at yeah exactly the,one thing we like the most are the ones,where we can see us using any of the,styles for specific store and in this,case I don't know how the beep is going,to work if you go for the deli one but,anyway that's our point of view let's,see that green faces okay that's good so,they're doing well regarding support,very important to know that is the guys,are behind this team let's look at the,demo and this is going to be hopefully,the deli demo and here we go deli okay,let's close here and Wow,different okay isn't it we have the menu,on we've got it up on the left side here,yeah that is kind of reminded actually I,mean is the catalog there this place,down we see some other products,they're utilizing this space very well,even though it looked slightly more,minimalistic they're actually using,their space quite well yeah the future,products there they display very easily,okay,the something French cheese therefore,I'm really liking this okay now we have,video here some content nice way of,displaying some categories here,fantastic and then we have the,integration of Twitter Instagram and,blog so the social media is on day and,of their of the team that actually like,that I mean there's no need to I mean,push your social media in people's faces,if you hold all these people to buy your,products right absolutely,okay let's have a look like link or,nothing can I delete let's click in a,feature proud to see how to display the,product and all the information in one,face yeah I love that you've got a nice,image to look at you've got your,description you've also got all your,real information that you want to be,able to show you've got your price,you've got your add to your cart very,simple is in one page I don't have to go,anywhere or I have to move I can click,next item here it's kind of cute I will,prefer a little bit bigger the next item,because I almost missed it and we have,the share very simplistic very same,actually pretty elegant,I li

The above is a brief introduction to Blockshop theme shopify

Let's move on to the first section of Blockshop theme shopify

"Updating Your Shopify Theme Version" - Shopify Tutorial

"Updating Your Shopify Theme Version" - Shopify Tutorial

hi my name is lauren and i'm a software,engineer here at sunrise integration in,today's video we're going to talk about,updating your shopify theme and how it,might be a little more complicated than,you'd think especially if you've already,updated or edited any code but not to,worry in today's video we're going to go,through two ways you can update your,shopify theme without losing any of your,customizations,if you haven't edited any code you will,actually find that shopify lets you know,when there's an update for your theme,there's a drop down where you can see,your current theme and view release,notes to see what bugs are being fixed,and what new features are coming and,then you can just say add theme to,library and it'll create a copy of your,new theme and merge over your,customizations,however if you have edited any of your,code that drop down will actually,disappear,and this is what makes it a little bit,trickier to even know if your theme has,an update ready for you to do that you,will have to go straight to the shopify,theme store and look at your theme to,see the release notes and know if a new,theme is out and if you should copy and,download it,you can use shopify's code editor to,find the differences between your,current theme and the theme update,these little dots on the side indicate,that a file has been changed,and you'll want to look at your,sections.liquid files specifically to,find what customizations need to be,brought over to the theme update,shopify also offers a drop down so you,can see older versions and this is a,good tool to use to find the changes in,your code,but you still have to go through and,inspect to really find what changed so,this could be difficult if you've made,lots of big changes to many lines of,code,if you've made changes to multiple files,and lots of lines of code then you can,use github integration with shopify to,be able to compare to the updated theme,and your current theme and merge all of,those changes together this is the,safest way to ensure that you're not,going to break your live site or any of,your customizations,the shopify github integration is such a,powerful tool for version control and,being able to see a backlog of all of,your commits and this is definitely the,solution i would recommend for your,customized shopify theme and trying to,update it,i hope today's video gave you a better,idea of how to update your shopify theme,and manage your customizations and if,you still need help our ecommerce,experts and developers here at sunrise,integration are ready to help,don't forget to hit subscribe for more,ecommerce solutions coming soon

After seeing the first section, I believe you have a general understanding of Blockshop theme shopify

Continue the next second section about Blockshop theme shopify

Adding a Custom Block in a #Shopify Theme

Adding a Custom Block in a #Shopify Theme

hi i'm jonah with sweet honeycode and,today we're going to dive into,how to code a custom block for our,shopify theme so let's get started first,the suggestion for this theme came from,a comment so i do read your comments,down down below,so let's dive into this what are custom,blocks well custom blocks essentially,add additional blocks we may want to use,to,within our theme so what i did here is,in a previous video i already done a,clone of the dawn theme which is the,proper way of handling this to create,our own little theme,and so i've gone to templates,and,then,to product.json which i have open here,perfect so over in this area we want,what we want to find is where the,sections begin,and where the blocks section is defined,since this is a json file it uses the,json side text to,for formatting and we want to follow,those rules so what we want to do is i'm,going to scroll down here to where the,last block is defined that way i have a,mental marker for,where i'm going to be defining mine so,i'm just going to add a comma here and,start typing my definition which will be,custom,dash block of course you can come up,with your own name but make sure it's,one that you will remember and then we,do curly brackets and say what type of,it is,so this type is not saying if it's a,text,block or things like that this is more,of a type in terms of,what type of block we will be looking,for,in our code,later on so i'm just going to call it,custom block,just again for example's sake so there,we go we can save that so now that we,started the definition or at least told,our theme that we are going to have this,block we now need to write the logic,code to help this block be discovered,and to render any code we need to to our,theme and for today i'm keeping it very,basic but you could definitely explore,other ways go here for example i can go,down to block order and say what order,this appears for example so i can do a,comma,custom block that way,it is appearing in my selection of,options in a certain way perfect so now,we're going to go to,sections and then main dash product dot,liquid this,file already has a lot of liquid code it,can get be really hard to find at first,but what you're looking for,is no pun intended this for loop so what,a for loop does is it will go through a,certain loop depending on the number of,items it finds based off of what you,tell it so in this example we have a for,loop that says for block that's our,variable there and sections dot block we,will now,tell it what to do with the case,selector of block.type now we can say,what types of blocks are we rendering,code for so this way we're filtering,through the for loop a little bit better,and so the type we are looking for is,the type we defined here,in this spot,so now that we know that i'm going to,tell it,following the same,code format here i'm going to do curly,brackets percentage the dashes and put a,space here,and we're going to do when,single quote,custom,dash block so i am telling it whe

After seeing the second section, I believe you have a general understanding of Blockshop theme shopify

Continue the next third section about Blockshop theme shopify

Customize your Shopify Theme FAST | How to Design Shopify Store 2021

Customize your Shopify Theme FAST | How to Design Shopify Store 2021

let's be honest your store design,matters and if you have a really ugly,site people are just going to leave and,they're not going to purchase from you,so in this video i'm going to show you,exactly how to customize,your shopify store design,as soon as someone comes to your site,they only have about seven,seconds before they decide if they want,to look longer on your site or,leave so those seven seconds really,matter and design,matters when it comes to that you want,to make sure that your site is,eye-catching,and it really speaks to your ideal,customer so,how do you do this you really need to,pick out your shopify,theme and make sure that it works based,on what kind of,imagery you have if you have a lot of,really great big images,then pick a theme that's going to,highlight those but if you don't have a,lot of great product shots,then you want to make sure that you pick,a theme that's not going to be heavily,reliant on that,once you've chosen your shopify theme,then it's time to,customize it and this is where it's,important to create different assets,choose your fonts and colors,to make sure that it's appealing for,your ideal customer,so this is super important but a lot of,times people kind of overlook the design,step so i'm going to show you really,quickly how to,actually customize your design in the,back end of shopify for both your home,page,collection page and product page so to,get here you're going to click on,online store and then you'll see themes,there from the list,so now that we are on the themes page,you can see your live theme here,this is what your customers are actually,seeing whenever they come to your site,as well as your online store speed we've,done another video on how to speed up,your site so i will,link that in the description below and,in the info cards above as well,and you can also see the theme library,so you can,upload your theme if you've purchased it,somewhere else or you can explore the,different,theme options available so for example,if you click on,explore free themes you'll actually see,a pop-up of all of the different free,themes that are available here,the one problem with this is if you,click into it you can't really see,how the site overall looks as well as,how it looks on mobile you can just kind,of see the different styling aspects,so what i do recommend that you do is,actually visit the theme,store so if we just click on this here,you can see,the full theme store and this is both,free,and paid themes so what i like to do,whenever i'm trying to decide on a theme,for a shopify store,is i'll actually go to all themes up,here at the top,and then you can see the sidebar here of,sorting options so you can actually sort,through,and you can see you know based on you,just want to see,themes that are just for single products,so if you click on that,then it shows you just that product or,specifications on the right hand side so,you can better narrow down what kind of,theme that it is that you are looking,for,so if we u

After seeing the third section, I believe you have a general understanding of Blockshop theme shopify

Continue the next fourth section about Blockshop theme shopify

The Best Shopify Themes for Your Online Store in 2022

The Best Shopify Themes for Your Online Store in 2022

in today's video i'm going to show you,how you can make one of the best online,stores out there with ecommerce themes,that are a designed to be fast and also,high converting so,shopify has rolled out five new free,themes and 65 updated paid themes that,work with online store 2.0 features,literally so exciting so i'm going to,take you guys through some incredible,shopify themes so that you guys can,decide which one is right for your,business in 2022. each one of these,offers industry leading performance and,deep customization but can we just get a,little sneak peek here okay let's look,at some of these amazing themes so first,of all look at this one this one's,called context and i just feel like it,would be perfect for someone who is,starting like a clothing store but maybe,wants a bit more of an editorial vibe,and then this one over here look at this,one this one's called loft and i feel,like it would be so good for anyone,selling home goods so that's just a,little preview but definitely stick,around till the end of this video,because i'm going to go through a ton of,themes and just discuss the specifics on,who they're good for and how they can,work for you and your business,okay guys so what exactly is a theme so,if you think about it themes are kind of,like the skeleton of your online store,it's just going to define what your,store is going to look like so for,example,in this theme over here,this has one main image for the banner,but if you look at this one it's going,to allow you to put two images for the,banner and a theme is also going to,define some of the functionality of your,store so for example when i click the,cart on this theme it pops up as a,sidebar and then when i click the cart,on this theme it's just going to take up,the whole page,so if you guys don't already know when,you create your online store with,shopify you can choose between either,free themes or premium themes and it's,really nice because there are more and,more free themes that are being released,recently so there's tons of options,there and then as of now there's also 60,paid themes and you can find a theme,that works really easily for yourself,because you can narrow it down by,industry price and then just basically,find the design that you're after okay i,know you guys are wondering are shopify,themes better than other themes out,there and i just want to say really,quickly just want to say this from the,jump shopify themes,are,amazing they're amazing first of all if,you are not tech savvy shopify themes,were going to be perfect for you because,all of the features that you need,already come built into your theme,you're probably,never going to need to hire developer,because 99 if not 100 of what you need,already comes built into your theme,but but if you are a perfectionist like,me and let's say you do want to do like,a little tweaks and like edit,you can edit your store without touching,any code so let's just look at my screen,here for one sec because i actually do,th

After seeing the fourth section, I believe you have a general understanding of Blockshop theme shopify

Continue the next fifth section about Blockshop theme shopify

Make Your Shopify Product Page Look PROFESSIONAL with Color Swatches, Tabs & Metafields!

Make Your Shopify Product Page Look PROFESSIONAL with Color Swatches, Tabs & Metafields!

in today's video we are going to,transform your shopify product pages,from this,to this,no coding required no app purchases,anyone can do this,before we get into the video if you like,videos about winning products drop,shipping shopify themes apps and,tutorials do us a favor and hit that,subscribe button and turn notifications,on now let's get into the video all,right so i'm using shopify's free theme,sense and by default here's how the,product page looks,it's not bad but i feel like it's,missing a lot of elements such as trust,badges a star rating and customer,reviews,all right first things first we are,going to create a few meta fields if you,look at vessi's website these little,things here are what we're going to be,creating it's a way to organize and,store product information without,putting it all in your product,description box,so things like materials care,instructions ingredients and etc vesis,has put their product description in,these little tabs as well i have mixed,feelings on that but for this tutorial,we are going to do the same,from your shopify dashboard click,settings,meta fields,products,and click add definition,the first one we're going to create is,materials so type in materials,then click select content type and click,text,shopify made an update on april 6 where,you can now add medified lists so,previously if you had a list of,ingredients for example you would type,them like this,but with the update you can now type,your list like this,to activate that new feature all you,have to do is click this right here,except list of values,click save and we are going to create,our next one,click add definition again,start typing care,and then care guide should pop up here,click that,then click save,last one click add definition,type description,click select content type,select text,select multi-column text,and save,if you're new to meta fields and want to,see some more examples of what you can,do with them check out this video here,all right now let's go to our product,listing,and if you scroll all the way down to,the bottom of the page you will see the,new meta fields here,i'm going to go ahead and copy and paste,what i currently have in the description,box to both organize my information and,save space,the last one here is materials and you,can see the list feature in action all,you need to do is click add item to add,more lines or you can click the minus,here to delete any you don't need,all right let's save our work and then,we're going to add it into our product,page,you'll see here if i view my product all,the information i entered is nowhere to,be seen these tabs here are included by,default the sense theme but as you can,see they are empty,so click customize on your theme,click on this drop-down menu here,click products,default product,as i mentioned these tabs here are,included with the sense theme already,but if you're using a different theme,and don't have these under your product,information click add block,and click collapsi

After seeing the fifth section, I believe you have a general understanding of Blockshop theme shopify

Continue the next sixth section about Blockshop theme shopify

How To Update Shopify Theme Without Losing Customization

How To Update Shopify Theme Without Losing Customization

hey how's it going there the solutions,so today we have a client who you know,just having some issues they have a lot,of uh you know issues with their theme,you know where you know obviously a,loose load times and it's due to the,fact that they installed a lot of apps,previously and apps tenderly if you know,hold code behind its very own optimized,apps don't really care you know these,app companies don't care about your,store and how they install their app and,uninstall it you know they care about,you know getting that monthly payment,and also you know they want to install,everything globally they don't kind of,you know separate things so what we're,doing is I'm going to show you how to,you know handle that that exact issue we,optimized the store still not really,happy so I went back to the client and,said hey you know on I think we should,probably install a fresh copier theme,that way,you know only the apps are in actually,need and actually are using will be,installed on this theme it will also,remove that coat all those old codes,that were left behind now why do you,don't know but the proper way to,actually remove apps is to go into the,app and disable the settings wait a,little while because typically some apps,they have this they have what we call,cron job now runs in the background goes,through you know stores that are,disabled and more typically you know a,large majority of apps of ethics that,I've used in with this experience go and,remove the code that that's left behind,and then after once that's completed you,can actually go and delete the app most,of you don't do that you just go,straight up and delete the app don't,really blame you because no one told you,now I did so I'm gonna show you how to,install a fresh copy of the theme so I'm,gonna go in and delete this theme right,here and show you the steps of them and,then I took so does this particular,client is using district so what we're,gonna do is we're going to go down here,we're gonna go to shop by theme store,I'm gonna search up district and because,they paid for it we can actually go and,install the latest version so we're,gonna do that kind of looked at do its,thing,all right Wow Shopify you're actually,fast for once,all right so now we got having close out,of this window now we have the that we,have district so I'm gonna rename this,while it's doing this whole thing and,we're just saying this fresh copy so now,there's nothing here right there's,nothing no settings of MA no,customizations nothing nada zilch right,now a lot of people don't know this but,you know I've seen numerous people going,and have to redesign their store you,don't have to do that I really don't you,can go here we can edit the code you can,see I did a lot of different things here,so we're gonna go here and all the way,down to config settings data now mind,you this won't always copy everything,over but it's gonna save you a lot of,time time is everything so it's gonna go,here,copy the code I'm gonna go back her

After seeing the sixth section, I believe you have a general understanding of Blockshop theme shopify

Continue the next seventh section about Blockshop theme shopify

Ecom Turbo best Shopify theme 2020 - 2021 Review

Ecom Turbo best Shopify theme 2020 - 2021 Review

all right welcome to the demo video for,econ turbo so I don't have many demo,sites because I'm consistently testing,this theme and I use the demo sites for,that so what I'm going to do is upload,this video and take you through all the,features of this theme and how it can,help you boost conversions and stuff so,there's still two main goals for this,team or there's actually three one of,them is to be some simplistic so nice,simple modern theme and I actually,contacted Shopify and asked them what,was their arm recommendation and they,said nice flat classic just clean right,for for boosting conversions second was,the other theme learn to boost,conversions and third we want to get you,an element of customization without with,a minimal amount of messing with any,code so basically you can change the,colors of all the stuff and all that,sort of stuff,so what we'll do is we'll start with the,header and usual stuff you could send to,your logo you can do all that sort of,stuff but we've also added a few cool,features you can do that and if they hit,a background all that good stuff but,what we've actually done is we've added,the option to change this a little bit,so you can change the size of your menu,if you want so we go to 16 and that will,change the size of it you can also,change the weight so that's the bold,when the bold or not you can also change,the color of the font all right so this,we've really given you the element of,customization here and we'll also tend,to cover the font on here and you can,change the background of the submenu we,don't have large menus yet we will be,bringing those out though you can also,edit all of this you can change the text,you can change the color of the bar you,can get rid of the cross you could leave,the cross there right so the header is,heaps and customizations you can add a,phone number if you like and you can,edit that down here you can change the,font size of this up here you can enable,and disable divider we put a divider,there focus on some people's stores,might look a little bit empty depending,on how you design things and you can,also change the color of the divider all,right so that's pretty cool that's the,header section,next we have the homepage you can move,everything around so everything can be,moved around just like a lot of other,stuff and you can also add the usual,sliders and all that sort of stuff but,what you can do is you can actually we,have different so first of all you can,change the title here and you can change,the color of that title and you can also,change the size of that title you can,enable bold if you like and,capitalization you can make a center or,to the left if you like you can also,enable hide section so what that does is,if you work on your theme and you don't,want to delete a section and you don't,want to use a folder that you can just,hide that all right you can change the,product title color which is pretty cool,you can change you can change the font,size if you like that's just

After seeing the seventh section, I believe you have a general understanding of Blockshop theme shopify

Continue the next eighth section about Blockshop theme shopify

BlogShop - how to install and activate BlogShop WordPress theme

BlogShop - how to install and activate BlogShop WordPress theme

assalam-alaikum in this video we will,see how we can install and activate,block shop WordPress theme okay so let's,begin first of all visit the Imran calm,and then themes and here is the block,shop WordPress theme ok just click on it,and here is the brief description about,block shop WordPress theme and about its,feature okay so if you are pro user then,go to your account my account here when,you will click on this icon it will,redirect you to this face my account,face and then downloads and here you,will see the latest version of block,shop WordPress theme ok after that and,if you are free user if you are free,user then just browse this face and,click this button free download block,shop WordPress theme ok here is the,block shop WordPress theme so download,it and keep it on your desktop and,follow me ok so I have already,downloaded block shop WordPress theme,pro version here is my team here is the,team now I will access my WordPress,admin area here is the fresh WordPress,admin area ok here is my admin area just,go appearance and themes and after that,just delete it after that click here add,new and press upload button and choose,you downloaded zip file so choose here,is the block shop pro version,install and then press active,okay now you have block shabbat pristine,installed on your wordpress and after,installers in installation complete you,will see a notification to install some,required and recommended plugin okay,this plugin is recommended block shop,companion ok so to install all of this,plug-in press begin installing plugins,and then choose or select all of this,and then install press apply button and,this installation process is totally,depends on if your internet speed is,very fast then it will install very fast,if your internet speed is very slow then,it will install very slowly,okay so let's the wait till is till its,installation complete,we are narrow feet,I'm just holding their lives complete,after installation complete you will see,these are linked return to the required,plug-in installer press this click on,this link and again choose all plug-in,and activate and a fly,it's taking a little bit time okay and,our all plug-in is activated,successfully returned to the dashboard,so if you installed you commerce then it,will redirect you to Kumar's setup phase,so let's show you till that continue Oh,Kumar's no need this I'm not showing you,the setup of Commerce you skip this step,I skip this step to our okama setup also,completed ok so this video is finished,here in the next video I will show you,another part or block shop what,Christine okay bye

After seeing the eighth section, I believe you have a general understanding of Blockshop theme shopify

Continue the next ninth section about Blockshop theme shopify

Shopify Tutorial: Hiding a Long Description in Collapsible Accordion (on free themes)

Shopify Tutorial: Hiding a Long Description in Collapsible Accordion (on free themes)

hello guys today i'm doing a requested,video but i hope that this is going to,be helpful to a lot of people this is,for anyone that has a really long,product description right and it's,pushing the rest of the page down and,people need to you know really scroll,to kind of see more information about,the product it's even worse if your,description is up above your buttons,and then people don't actually see your,add to cart buttons and your quantity,field and stuff like that right so,you may want to somehow,contain this entire description,inside something like a collapsible row,an accordion a toggle drop down whatever,you want to call this kind of interface,you click it and it opens up your,description but when it's closed it,doesn't take up space,i'll also show you,a couple of different options for,example if you want a little bit of,preview text so if you want like a short,description here right,and then you want a read more,with the rest of your description,um then i'll show you how to do that as,well and i actually think that this is a,much nicer solution than simply this in,case you're wondering no i'm not talking,about just using the collapsible row,blocks because,this is very limited obviously you can't,put like this wasn't intended for a lot,of text and in this all you can do is,like bold and italic i am actually,talking about the main product,description,about this field and wrapping the output,in a collapsible row like this or,actually splitting it so as you can see,this first sentence from here,is the first sentence here,and then the rest of it starts from,lowdom altera,and this is a london altera here so,actually splitting it here in between,these paragraphs so that it outputs in,two different places,showing you how to do all of that oh and,i almost forgot to mention but you are,going to be able to set this classical,description,as uh enabled or disabled on a per,product basis so if some products have,short descriptions and you don't want,the collapsible accordion at all,then this will be false by default,actually,and to turn it on you will have to click,true right and this is using meta fields,so if you're interested,in one of the features of shopify 2.0,which is meta fields and this will also,be a small introduction to using emitter,field,in a real life scenario i'm going to be,using,dawn right you'll be able to follow this,tutorial exactly if you're using dawn or,if you're using any of the free,shopify 2.0,themes right like dawn craft,crave sense all of these they have the,same code they have the same settings,if you're using a different theme from a,different company not from shopify then,i think you're still going to be able to,use this tutorial and kind of apply the,same concepts to another theme it might,be a bit more difficult but,many of these collapsible rows are built,in similar ways and what we're actually,going to be doing in this tutorial is,copying the code,that does these collapsible row blocks,and simply wrapping it aroun

Congratulation! You bave finally finished reading Blockshop theme shopify and believe you bave enougb understending Blockshop theme shopify

Come on and read the rest of the article!