Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Count the orders

Count the orders

WaqarAliAshraf
Shopify Partner
16 0 0

i want to show my total orders of the product on the product page how we show it is anyone help me

 

Replies 2 (2)

customall
Shopify Partner
6 0 0

To display the total number of orders for a product on its product page in Shopify, you can use the following Liquid code. This code assumes that the product's total orders are stored in the product's total_orders metafield, which you would need to set up.

Here's how you can do it:

  1. Add the metafield to your product:

    • Go to your Shopify Admin.
    • Click on Products and select the product you want to add the total orders to.
    • Scroll down to the Metafields section and add a new metafield.
    • Name it total_orders and give it a value (the number of orders).
    • Save the product.
  2. Display the metafield on the product page:

    • Go to your theme's code editor by navigating to Online Store > Themes > Actions > Edit code.
    • Open the product.liquid template or the relevant section where you want to display the total orders.
    • Add the following Liquid code where you want the total orders to appear:

 

{% if product.metafields.custom.total_orders %}
  <p>Total Orders: {{ product.metafields.custom.total_orders }}</p>
{% else %}
  <p>Total Orders: 0</p>
{% endif %}​

 

This code checks if the total_orders metafield exists for the product. If it does, it displays the number of orders. If the metafield does not exist, it defaults to showing 0 orders.

  1. Save the changes to your theme.

Now, the total number of orders will be displayed on your product page. If you want this number to update automatically, you would need to implement additional logic or use an app that can update the total_orders metafield based on the actual sales data

Please let me know if it works by giving it a Like or marking it as a solution!

Customall Product Personalizer

Customall: Enhance productivity with seamless personalized product creation
WaqarAliAshraf
Shopify Partner
16 0 0

i want to show orders in the prodcut card