URL: https://clawedculture.com/cart
i have custom text boxes under most of my products but when customers input data into those boxes it doesn’t show up on the cart page or my Shopify admin. How do I fix this? I’m also using the craft theme
my custom text boxes in main-product.liquid:
{{ 'products.product.quantity.label' | t }}
{% assign product_title = product.title | downcase %}
{% if product_title == “camostar” or product_title == “y2k core” or product_title == “summer jam” %}
Enter Custom Size:
{% endif %}
Instagram Handle - for easy contact (Optional):
Add to Cart
And my main-cart-items.liquid:
{%- for item in cart.items -%}
{% if item.image %}
{% comment %} Leave empty space due to a:empty CSS display: none rule {% endcomment %}
{% endif %}
{%- if settings.show_vendor -%}
{{ item.product.vendor }}
{%- endif -%}
{{ item.product.title | escape }}
{%- if item.original_price != item.final_price -%}
{{ 'products.product.price.regular_price' | t }}
{{- item.original_price | money -}}
{{ 'products.product.price.sale_price' | t }}
{{ item.final_price | money }}
{%- else -%}
{{ item.original_price | money }}
{%- endif -%}
Hi @Sunshinestar
If you want to try an app, Easify Product Options can help. It ensures that custom text inputs are captured and displayed correctly on the cart page and in your Shopify admin. No coding needed, and it works well with the Craft theme! Here’s how it works:
This app is easy to use, and I highly recommend giving it a try. If you need any help, feel free to ask or contact Easify! 
How can i make it so that if the ‘custom’ option under sizes is selected, the ‘custom sizes’ textbox will be required.
Hi @Sunshinestar
Thank you for your interest in Easify! If you want the “Custom Sizes” textbox to be required when the “Custom” option under sizes is selected, simply mark the textbox as a Required Field to ensure customers must fill it in before they can add the item to their cart or proceed to checkout.
Then make sure to use Conditional Logic in the Advanced Settings to link Custom size and Textbox. This way, the textbox will only appear when “Custom” is chosen.