# Hide \_io\_order\_group and \_io\_parent\_order\_group from cart

When using Infinite Options' Legacy Product Bundles feature, there may be some strange text \
`(`**`e.g.`**` ``_io_order_group, _io_parent_order_group)`  that appears at the cart screen.

Some themes hide this data by default. If it is displaying on your theme, follow these steps to hide the data.

{% hint style="info" %}
If you would like an option that doesn't display code on the backend, we recommend exploring [Native Bundling](https://shoppad.gitbook.io/infinite-options/increase-the-cost-of-an-option/native-bundling)
{% endhint %}

### Locate your theme's cart file

1\. From your Shopify admin, click **Online Store** to arrive at the Themes page.

2\. Find the theme you want to edit, click the  **Actions** ▼ button, then click **Edit code**.

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FOJrv4KiYPrAaFzicN4Y6%2FCustomize-date-picker-IO.png%20-%20Step%201.png?alt=media&#x26;token=fe933ba0-1784-4e6c-8e83-148304426f9c" alt=""><figcaption></figcaption></figure>

3\. On the left side, under **Templates**, check to see if you have a **cart.liquid** file. If your theme's **cart.liquid** file doesn't contain much code, it may be pointing to a different file. In most cases, the code will be located in the **cart-template.liquid** file, within the **Sections** folder.

If your theme does not have a  **cart.liquid** file and if you see a **cart.json** file, locate a file called **main-cart-items.liquid** file in the **Sections** folder.&#x20;

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2F0cZeSdFIPX9OFN8w9l3Z%2FHide-Bundle-Data.png%20-%20Step%201.png?alt=media&#x26;token=2275d897-badb-41b4-8e36-ba360e6802e7" alt=""><figcaption></figcaption></figure>

### Edit your theme's cart file

1\. If you have found a **cart.liquid** file or **cart-template.liquid** file in your theme, perform a search using keyboard shortcuts (Ctrl F or ⌘ F) for:

```liquid
for p in item.properties
```

If you are using the Debut theme, please look for **for p in properties**.

If you have found a **main-cart-items.liquid** file in your theme, perform a search using keyboard shortcuts (Ctrl F or ⌘ F) for:

```liquid
for property in item.properties
```

2\. For the **cart.liquid** or **cart-template.liquid** file, copy and paste the following code snippet right under the line of code that we have just found, as seen below:

```liquid
{% if p.first contains '_io_' %}
  {% continue %}
{% endif %}
```

For the  **main-cart-items.liquid** file, copy and paste the following code snippet right under the line of code that we have just found, as seen below:

```liquid
{% if property.first contains '_io_' %}
  {% continue %}
{% endif %}
```

3\. **Save** your changes.

{% hint style="info" %}
If your cart is still displaying the product bundle data, please contact our support team for assistance and we'd be happy to help!
{% endhint %}
