Liquid Weekly
The newsletter by and for Shopify Developers
|
|
Issue #1 !
And we're off! By receiving this email you can officially claim to have liked Liquid Weekly before it was cool - ultimate street cred!
My goal in starting Liquid Weekly is to spread knowledge and have a positive impact on the Shopify developer community.
I hope you learn something new and enjoy hearing about what's happening in our (Shopify developers) little corner of the world.
Karl Meisterheim, Editor
PS Please consider sharing this email with others who might find the content informative.
|
Code & ToolsShopify Theme Lab - Theme development environment using Liquid, Vue and Tailwind CSS. Built on top of Shopify CLI. Sergej SamsonenkoShopify Script Creator - Generate Shopify line item, payment or shipping scripts for use in Shopify Plus / Script Editor Jason GodsonShopify Theme File Search - Easily find any text within the files of any of your Shopify themes. Regex support included! Diego Fortes
|
The ChangelogShopify API Shopify now serves minified JavaScript files automatically - Shopify automatically minifies theme JavaScript when it is requested by the storefront. August 12th 2021New webhook topics for SellingPlanGroups - External apps can now subscribe to SellingPlanGroups webhook events to keep track of SellingPlans and SellingPlanGroups lifecycles. August 12th 2021Shopify Partner ProgramChanges effective Sept. 15th 2021- Shopify will offer reduced revenue share owed to Shopify to 0% on the
first $1 million USD in annual total revenues earned through the Shopify
Theme Store...
- All payments processed through Shopify will continue to be subject to a 2.9% transaction fee, and applicable taxes.
|
Tip of the Week
Prevent an app from running on a specific page
Sometimes
you want to prevent an app from running on a particular page.
A quick trick involves using Liquid to check which template
is being displayed before including the app code into the theme.
This is easily accomplished by adding a small snippet to theme.liquid
For example:
﹛% unless template == “blog” %﹜ link to include app code ﹛% endunless %﹜
|
|
|
|