Enabling the note text box on the cart page
To access cart page settings, from your Shopify Admin, head into Online Store > Themes > Customize, and navigate to your Cart Page on your site in the preview window on the right, so the Cart Page Sections settings appear on the left.
Check off "Show note text box" option:
Note: The note text box will appear once an item is in the cart
Adding in a note/text to your customers on the cart page
In some cases, you may want to add in a message to your customers on the cart page.
Select your theme:
-
Turbo
In the Turbo theme, you can insert a cart message for both the Mini Cart and on the Cart Page itself.
To add a cart message in the Mini Cart, head into your Theme Editor (customize), under Theme Settings > Cart > Mini Cart, you can insert your text in the cart message field:
To add a cart message on the Cart Page, head into your Theme Editor (customize), navigate to your Cart Page > under Sections > Cart Page, you can insert your text in the cart message field: -
Flex
In the Flex theme, you can insert a cart message in the Cart Drawer or Mini Cart and on the Cart Page itself.
To add a cart message in the Cart Drawer or Mini Cart, head into your Theme Editor (customize), under Theme Settings > Cart > Mini Cart, you can insert your text in the cart message field:
To add a cart message on the Cart Page, head into your Theme Editor (customize), navigate to your Cart Page > under Sections > Cart, you can insert your text in the cart message field:
Additionally, you can also insert a cart message by adding a Rich text content block to the Cart Page. Under Sections > Cart, scroll down to Add content, and select a Rich text content block. This is a great option if you're looking for more control over the layout of your message. -
Parallax/Retina/Responsive
In the Parallax, Retina, Mobilia, and Responsive themes, there are a couple ways to add a cart message to the Cart Page.
#1 Update the "Excluding tax & shipping" translation to include more information
To do that, head into your Language Files for the theme (Online store > Themes > Actions > Edit Languages). Search for "Excluding tax & shipping" which will pull up the translation that can then be edited to include your new message:
#2 Directly editing the cart template
To tackle this method, head into Online Store > Themes > Actions > Edit Code > Sections > cart-template.liquid and find this line, will look something like this:<small class="excluding_tax"><em>{{ 'cart.general.excluding_tax_shipping' | t }}</em></small>
After that line your custom cart message can be entered, which would then look something like this:
<small class="excluding_tax"><em>{{ 'cart.general.excluding_tax_shipping' | t }}</em></small> <span class="cartnote">Free Shipping on Orders Over $100</span>