Custom liquid line item properties for products not showing on cart, checkout and order summary

The shopify is an online cake shop, to order personalised cakes and baked goods.

Some of the additonal required variants include the persons name, theme, etc. But due to the limitations of variants, I had to add in custom liquid line item properties.

However, the answers to these line item properties aren’t pulling through to other pages.

I am trying to get the answers to these line items to show on the cart, checkout and order page so the admin can review all options of the order.

Is this possible?

You should be able to display these custom Liquid line item properties on the cart and order pages - are you wrapping them in a forloop eg:

{% for item in cart.items %}
  {% for property in item.properties %}
    {{ property.first }}{{ property.second }}
    {% endunless %}
  {% endfor %}
{% endfor %}

They may just need to be wrapped in a forloop to be able to access values.

However for the checkout it is more difficult to make these values appear, and you may need to look into creating a checkout extension to display custom content.