what is the best place to learn shopify theme developing? - shopify

Is it possible for anyone to nominate a place, documentation or tutorial to learn developing Shopify themes?
I have learned liquid Shopify template language but I can not understand how should I use it in my template or my client's template that I made with (html5 / bootstrap / css3 / js / OOp js / jquery)
Any answer will certainly be useful
thanks.

for shopify theme development ,you can learn here https://www.shopify.com/partners/blog/topics/shopify-theme-development

Related

How does bigcommerce stencil themes work?

Hey I'm a new developer at an ecommerce company and we use bigcommerce platform to build and maintain stores. The problem I am having is understanding the codebase and how all of the files in the theme are interacting with eachother. For example how pages work in relation to templates. Are there any resources to help me understand the inner workings or a bigcommerce theme and how it functions?
This is a great place to start: https://developer.bigcommerce.com/stencil-docs/ZG9jOjIyMDY5OA-stencil-technology-stack

How to use vue components in a svelte app?

I really love using Svelte but at this moment, one of its cons is the lack of ready-to-use components for Svelte. I want to use vue-atlaskit in a project, but I really prefer using Svelte. Is it possible to use vue components inside a Svelte app?
I guess it all should be just "web-components", but I really don't know how to do it.
I checked with people in the Svelte Discourse. There is no simple way to do that. The suggestion is to convert the UI components I need from Vue to Svelte.
While not a comprehensive answer, I would add some findings on the topic:
As you suggested, I would try with Web Components. According to Custom Elements Everywhere the support for Web Components is fairly high for both frameworks. Vue states that the support is 100% although the site shows less so there is some discrepancy. But basic tests pass 100%. Svelte is also at 100%. This paints a fairly positive picture.
There is another question on SO that refers to consuming Web Components in Svelte.
Here is another reference article on how to create web components with Vue 3.
Note: I will try to update the answer as I learn more. I will be testing this out on a migration of a PWA from Vue to Svelte, where I plan first to use Svelte components in an existing Vue app and then perhaps switch to using Vue components in a Svelte app, depending on how things go with rewriting.

Boilerplate catalog skeleton

I have to make a simple catalog with products image upload with boilerplate.
Has anyone done something like this? Are there public examples of catalogs source code made with AspnetBoilerplate on the internet?
checkout the below websites.
https://www.nopcommerce.com/
https://www.wix.com/
But AspnetBoilerplate is a developer friendly framework and fully open to customizations. On the other hand, you need to write code and get your hands dirty with it. For the long-term benefits, I would go with AspnetBoilerplate.
Ready to use solution? Unlikely. AspnetBoilerPlate is for coders. So start coding. It should be fairly straightforward to hook up existing .NET Core e-commerce solution with AspNetBoilerplate features using starter template as a reference. Alternatively, you can start with AspNetBoilerplate starter template and add necessary e-commerce features like catalog listing using existing e-commerce source code as a reference.
SimplCommerce is a good simple ecommerce solution also built with .NET Core and EntityFrameworkCore.

Bigcommerce Stencil - What is Required and Help Setting Up

I just got access to the new Stencil beta and I have no idea what to do. I have reviewed all of the documentation on the BC developer website, but I don't know how to proceed. I am also not sure if I will even be able to create designs in Stencil since I don't know Handlbars or json - are those programming skills required or can we still rely on CSS and HTML for most design customization? BC told me there is no support for getting set up and to ask in this forum instead.
Normally I would look under the hood of an existing theme to see how it's built and try "learning on the job" but since I can't even get access to the files, I am at a loss. I created an account on GitHub but I have never used it so I don't know where to look for the files (I did a search but there are thousands of files there and I again couldn't figure out where to start). Can anyone point me in the right direction so I can determine if using Stencil is even feasible for my projects?
Handlebars compiles serverside as HTML. You do still have stylesheets, but we are using some SASS custom functions (documented in Stencil docs).
I'd recommend taking a look here: http://blog.teamtreehouse.com/getting-started-with-handlebars-js

Theming Prestashop 1.5.3

Already about two weeks, I'm looking for a normal and adequate self-learning tutorial on Prestashop 1.5.3 theming. On official presta web-site i find some small presentation of the material about theming, but it very small info for it.
Who know where can i find more detailed info about prestashop 1.5.3 theming?
Sincerely, John!
PrestaShop is a french project, you'll find some resources in french. But in english, apart the official doc :
http://doc.prestashop.com/display/PS14/Designer+Guide
The best way to begin is to duplicate the default theme and hack it. After that you well understand structure and assigned smarty variables, you'll be able to start a theme from scratch.