# Product The `product` object represents a product in the store, including its details, variants, images, pricing, reviews, and more. ## Usage Example ```liquid {%- comment -%} Product card example {%- endcomment -%}
{{ product.title }}

{{ product.title }}

{{ product.short_description }}

{% if product.is_available %} {{ product.price | money_with_currency }} {% else %} Out of stock {% endif %}

{% if product.rating %}

Rating: {{ product.rating }} / {{ product.max_rating }} ({{ product.review_count }} reviews)

{% endif %}
{%- comment -%} Product options example {%- endcomment -%} {% for option in product.options_with_values %} {% endfor %} ``` ## Properties ### attachments Returns the product attachments links. ### breadcrumbs Returns the [caetegory](/reference/liquid/objects/store/product_group/) breadcrumbs ### combined_listing Returns the [combined_listing](/reference/liquid/objects/store/product_combined_listing/). ### compatible Returns the [compatible](/reference/liquid/objects/store/product/) products ### created_at Returns the creation date. ### custom_fields Returns product custom fields. ### customer_can_review Returns true if customer can review the product. ### customer_has_purchased Returns true if customer has purchased the product. ### customer_has_reviewed Returns true if customer has reviewed the product. ### default_or_selected_variant Return the selected variant or the default one if none is selected. ### deliverer Returns the [deliverer](/reference/liquid/objects/store/deliverer/) ### description Returns the description. ### featured_image Returns product featured (first available) image. ### featured_media Returns the featured (first available) media. ### featured_video Returns the featured (first available) video. ### first_available_variant Returns the first available variant. ### handle Returns the handle. ### has_only_default_variant Returns true if product has only default variant. ### id Returns the id. ### image Returns product main image url. This is an alias for featured_image. ### images Returns the images as an array of - thumb - original ### in_customers_wishlist? Returns true if products is in customers wishlist. ### in_preview Returns true if product is in preview. ### is_available Returns true if product is available for purchase. ### is_directly_buyable Returns true if product can be bought without selecting any attributes. ### manufacturer Returns the [manufacturer](/reference/liquid/objects/store/manufacturer/). ### max_rating Returns the maximum rating ### media Returns the product media, concatted from videos and images properties with additional type field describing the type of the media. ### options Returns the options handles. ### options_by_handle Returns array of [options](/reference/liquid/objects/store/product_option/) indexed by handle. ### options_with_values Returns array of [options](/reference/liquid/objects/store/product_option/). ### product_groups Returns the assiociated [product_groups](/reference/liquid/objects/store/product_group/) ### rate Returns the tax rate. ### rating Returns the rating ### related Returns the [related](/reference/liquid/objects/store/product/) products ### return_policy_time_limit Returns the product return policy time limit in days. ### review_count Returns the review count ### reviews Returns the [reviews](/reference/liquid/objects/store/review/) ### reviews_are_enabled Returns true if reviews are enabled for this product. ### reviews_require_account Returns true if creating a review for this product requires an account. ### reviews_require_approval Returns true reviews are approved before published. ### reviews_require_purchase Returns true if product must be purchased before review can be made. ### selected_variant Returns the selected [variant](/reference/liquid/objects/store/product_variant/). ### seo_description Returns description for search engines. ### seo_keywords Returns keywords for search engines. ### seo_title Returns title for search engines. ### short_description Returns the short description. ### similar Returns the [similar](/reference/liquid/objects/store/product/) products ### size_chart Returns the [size chart](/reference/liquid/objects/store/size_chart/). ### tags Returns product tags. ### taxonomy Returns the [taxonomy](/reference/liquid/objects/store/product_taxonomy/). ### title Returns the title. ### updated_at Returns the last updated date. ### variants Returns the [variants](/reference/liquid/objects/store/product_variant/). ### videos Returns the videos