Hide Nash Properties on the Cart Page

Last updated: June 26, 2025

App-related properties can appear on your Shopify store's cart page, creating visual clutter.

Nash typically hides these properties by default, there may be instances where you'll need to modify your theme's code to ensure these properties are hidden.

Step 1: Access Your Shopify Admin Panel

  1. Log in to your Shopify admin panel.

  2. Navigate to Online Store > Themes.

  3. Click Actions > Edit Code for your current theme.

Step 2: Locate the Cart Template File

  • In the code editor, find the cart template file, which could be:

    • cart.liquid

    • cart-template.liquid

    • main-cart.liquid

  • These files are usually located in the Sections or Templates folders.

Step 3: Update the Code

Find the part of the code that displays line item properties and modify it as follows:

Example 1

Before:

{% unless p.last == blank %}

After:

CopyEdit

{% unless p.last == blank or p.first == '_nash' %}

Example 2

Before:

{%- unless p.last == blank -%}

After:

CopyEdit

{%- unless p.last == blank or p.first == '_nash' -%}

Example 3

Before:

{% if p.last != blank %}

After:

CopyEdit

{% if p.last != blank and p.first != "_nash" %}

Example 4

Before:

{% unless property.last == blank %}

After:

CopyEdit

{% unless property.last == blank or property.first == '_nash' %}

Step 4: Save Your Changes

  • Click Save to apply the updates.

Step 5: Test Your Updates

  1. Add a product to your cart.

  2. Double check to make sure Nash properties are hidden.

  3. If they are still visible, review your code changes or contact Nash Support for assistance.