A bug exists in ShowTime 6.0 on the collection page when using the advanced group filtering and no results are returned. You might see an error message that says "translation missing: en.collections.general.load_more."
To fix this, please follow these steps:
- From your Shopify dashboard, click Online Store > Themes and look for ShowTime.
- Click the Actions button and choose Edit Code from the drop-down menu
- Navigate to the Sections folder and locate the file called collection.liquid
- Click on it to open the file in the editor
- Hit Control + F (CMD + F on a Mac) and search for: load_more
- The full line of code is
<p class="no-products">{{ 'collections.general.load_more' | t }}</p>
Replace that with:
<p class="no-products">{{ 'collections.general.no_matches' | t }}</p>
Here is a screenshot illustrating this:
Save the file and the error message should no longer display. Instead, the customer will be notified that there are no product matches for the particular filters chosen.
Comments
0 comments
Article is closed for comments.