Overview:
The "Accessory: Yes" text is used within the admin of our app on the "Analytics" tab. We use this text to track how many products have been purchased within our app. It is also used to give the customer an indication which item's they selected from the Accessories app. However, if you would prefer to hide this text within the cart, you can do so by following the tutorial below.
Tutorial:
In your cart.liquid you will need to locate where the line item properties are written.
The beginning of the code that is showing these items should look something like this:
{% for p in item.properties %}
After this line you will enter this liquid code:
{% if p.first contains "Accessory" %}
{% continue %}
{% endif %}
Please note it is possible the for loop uses another variable name instead of "p". It could be anything such as "l", "lineItem", "property", "prop", etc. You would need to update our snippet on the "if" line in order to make sure they're the same. For example if the for variable name was lineItem like this: "{% for lineItem in item.properties %}", you would update our snippet line to look like this: "{% if lineItem.first contains "Accessory" %}"