An EmptyDrop object is returned if you try to
- Access a deleted object by its handle
- Load a section which has been removed from the homepage
- Access variables created in a separate section
- Load a page which is set to hidden
When should you make use of code snippets in theme development?
- For any reusable code
- When you’re making a really small section
- When you’re writing Javascript
- For sections that have many different content types
Shopify compiles both Sass and Less.
- True
- False
{% assign first_time_visitor = true %} is an example of which kind of Liquid tag?
- Control Flow
- Iteration
- Variable
- Theme
How many levels deep can you nest Shopify nested menu items
- 2
- 3
- 5
- Unlimited
Which of the following is nota feature of Theme Kit?
- Supports multiple environments
- Download theme files from stores
- Allows you to edit themes offline
- Watch for local changes and upload automatically to Shopify
What would be the typical syntax for a Liquid object with a metafield?
- product.metafields.instructions
- product.instructions.metafields
- product.metafield.instructions
- product.instructions.metafield
To include and render a Sass file named theme.scss, which of the following would you add to the <head> of
your theme.liquid file
- {{ theme.scss I asset_urI I stylesheet_tag }}
- {{ theme.scss.liquid I asset_urI I stylesheet_tag }}
- {{ theme.scss.css I asset_urI I stylesheet_tag }}
To use tools like Slate or Theme Kit, you must create a private app in the Shopify store you wish to connect.
- True
- False
How can different types of blocks be added to a static section?
- By using control flow tags within the section
- By adding snippets to the section
- By using iteration tags within the section
- By adding presets to the section
{{ content_far_header }} is required in which type(s) of theme files?
- Template files
- Section files
- Layout files
- All of the above
Which template cannot be mapped to a URL?
- 404.liquid
- search.liquid
- password.liquid
- index.liquid
Duplicate content appearing on multiple URLs can have a negative effect on a stores search ranking. What can help prevent duplicate content issues?
- Adding multiple domains to a store
- Requesting Google to recrawl your URLs
- Submitting your site rap to Google
- Setting up canonical URLs for preferred pages
What is the maximum number of options each product can have?
- 2
- 3
- 4
- 5
What is the best way to make a dynamic section available on the homepage?
- Add section tag to index.liquid
- Add presets to the section
- Reference the section in settings_schema.json
- Include the section in theme.liquid
Which of the following properties are required attributes for section input settings?
- placeholder
- default
- info
- label
Which of the following line items would not be required within cart.1iquid?
- line_item.title
- line_item.properties
- line_item.image
- lineitem.price
What are some good ways to future-proof or reduce support requests for design changes to themes?
- Use schema settings to offer merchants control over the changes
- Hard code all changes into the theme files with specific style values and grid sizes
- Hard code things like colour values, but offer settings for element widths
- Create a range of alternative template files with specific style values
You can not change which products to appear on the page at /collcetions/all.
- True
- False