简体   繁体   中英

How to create custom module (CRUD) in shopify? Like, Product and Navigation

I am new in Shopify and My requirement to add more than one custom module in Shopify. Like, admin panel (back end) side manage all module (CRUD).

I also developed a custom theme in Shopify with slate and liquid. But, I have no idea about the custom module.

Anyone can share any docs and reference sites to related this topic.

Anyone any idea?

Yes you can make this with custom app(module/plugin) shopify documentation

But you should understand how Shopify module works. You can't access direct to database and crate new database tables and rows, or create backend backend code on shopify, but you can manipulate data (products, orders, discounts, etc..) through shopify api and send data into liquid template or pages. Good example, and tutorial for PHP developers is there (Shopify app development in PHP)

If you want crate new data source (For example Blog, Comments or something like that) then you should crate that part on another server (Backend part) and connect with your app (module/plugin), and after that you can use data from another server in your Shopify templates or pages. Good example, and tutorial for PHP developers is there (Shopify app development in PHP)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM