Status leverages private line item properties to accurately attribute items purchased from Status. These properties are hidden during Shopify checkout, and themes usually have code built-in to ensure they are not displayed. However, manual addition may be necessary in some cases.

Once an item has been added to cart from Status, navigate to the /cart page to check if the product is displaying the property _add_by_status:. If it is, you will need to add a condition to the line item property loop in your cart.liquid template to ensure it’s hidden from your store.

Steps to hide line item properties

  1. Open your cart.liquid template
  2. Find this line: {% for p in item.properties %}
  3. Then, add the following condition directly below it: {% if p.first.first == "_" %}{% continue %}{% endif %}