Hi, My client wants to show a form on the cart page when a specific product has been added to the cart AND a specific discount code has been added. The form has two fields: checkbox for accepting t...
No content to show
User Activity
Exactly. @Shopify if you are not providing the .map file then please remove the following from the minified .js: //# sourceMappingURL=trekkie.storefront.min.js.map
04-14-2021
@Don9 Check this post: https://community.shopify.com/c/Technical-Q-A/How-to-modify-the-dynamically-created-Shopify-site-after/m-p/1107743
03-23-2021
Shopify itself does not provide the functionality. So you'd need to implement a solution with pure JavaScript or via a library (smoothstate, barbajs, etc.).
Great!Yes, as I mentioned before You'd need to do some research on the pitfalls and know exactly in which scenarios the page is shown.Like you say, trial and error, testing, researching will map the scenarios, and you can then apply the appropriate f...
This is another way of doing it. You are free to use snippets, sections or "direct" code (like the HTML in your last example).
Yes, {{ render }} refers to snippets.
Yes, in theme.liquid just check what the request.path is and you can replace {{ content_for_layout }} with anything you like:request.path
Sorry, I had to find the reference post. It is the theme.liquid file - not page.liquid.{% if request.path == '/challenge' %}
{% render 'challenge' %}
{% else %}
{{ content_for_layout }}
{% endif %}So in the theme.liquid file you can make a conditiona...
I haven’t tried it out but these pages (although dynamically created and controlled by Shopify) use the page template. So you can use a conditional in liquid, test if the visitor is on the capcha page and then show a custom section or other code.
01-29-2021
@suyash1 as explained, that has already been done. Templates cannot be provided and support staff just refer to the forums.
01-28-2021
@suyash1 I already have done that. No help to get. As usual they don’t offer developer support - that is what the forums are for
01-28-2021
@suyash1 Settings > Notifications only show email templates. Not pages.The /account/subscribe/ template is not available in any theme I have seen. I believe it is automatically created by Shopify.Have you ever seen the /account/subscribe/ template?
01-28-2021
@suyash1 How can we edit the confirmation page the user sees after they confirm the newsletter double opt-in?Specifically /account/subscribe/Please read: edit the confirmation page, not how to edit the text on the page but the HTML.
01-28-2021
@suyash1 What do you mean specifically?
01-28-2021
Did you find a solution?