Health Quiz
PharmaEase
Personalized Health Quiz
Answer a few questions to get tailored recommendations for your health needs.
Question 1: How would you describe your energy levels?
Question 2: How is your sleep quality?
Your Personalized Recommendations
{% if answers.energy == 'low' %}
{% assign product = collections['recommended'].products | where: 'handle', 'vitamin-b12' | first %}
{% if product %}
{% endif %}
{% endif %}
{% if answers.sleep == 'poor' %}
{% assign product = collections['recommended'].products | where: 'handle', 'melatonin' | first %}
{% if product %}
{% endif %}
{% endif %}
{% if answers.energy != 'low' and answers.sleep != 'poor' %}
{{ product.title }}
{{ product.price | money }}
{% if product.metafields.upsell.bundle %}Bundle with {{ product.metafields.upsell.complement }} for {{ product.metafields.upsell.price | money }}!
{% endif %}
{{ product.title }}
{{ product.price | money }}
{% if product.metafields.upsell.bundle %}Bundle with {{ product.metafields.upsell.complement }} for {{ product.metafields.upsell.price | money }}!
{% endif %}
No specific recommendations based on your answers. Browse all products.
{% endif %}