【Shopify学習】役立つ Tips集【2022年版:随時更新】
この記事を書いている僕は、2020年からShopifyエキスパートで働いて、現在はShopifyフリーランスエンジニアとして活動しています。
Shopifyで発信していることをブログでしっかり書こうと思うと、まとまった時間が必要で、書きたいことが書けないので、2022版としてShopify Tips集としてメモ的に利用して、まとめていきます。
ぜひShopify構築の参考にしてみてください。
Shopify CLIのアップデート
Shopify theme serve とコマンドでたたくと下記のインフォメーション。
⭑ A new version of Shopify CLI is available! You have version 2.7.1 and the latest version is 2.7.4.
なので、
$ brew update
$ brew upgrade shopify-cli
と入力するが、
Error: Your Command Line Tools are too outdated. Update them from Software Update in System Preferences or run: softwareupdate --all --install --force If that doesn't show you any updates, run: sudo rm -rf /Library/Developer/CommandLineTools sudo xcode-select --install Alternatively, manually download them from: https://developer.apple.com/download/all/. You should download the Command Line Tools for Xcode 13.1.
というインフォメーション。
$ xcode-select --install
と入力しても下記のインフォメーション。
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
なので、一回xcodeアンインストールして
$ sudo rm -rf /Library/Developer/CommandLineTools
それから、インストールし直して
$ xcode-select --install
その後
$ brew upgrade shopify-cli
をすると、無事アップデートが完了♪
補足
※下記のエラーも出たので、Rubyをインストールし直しました。
line 21: /usr/local/Cellar/rbenv/1.1.2/libexec/rbenv: No such file or directory
Shopify CLI コマンド
shopify login --store [ストアURL]
ストアURLは、〇〇.myshopify.com
Liquid学習の参考サイト
Liquid チートシート
Shopify Liquid開発するならマストのチートシート。
使いこなしが大事です。
Shopify Cheat Sheet — A resource for building Shopify Themes with Liquid
This cheat sheet is an interactive reference for the Liquid templating language that will help you build ecommerce templates on Shopify.
Liquid 解説サイト
英語ですが、このサイトで基礎構文など学ぶとわかりやすいです。