How to remove 'Usually Ready In' from Dawn Theme product page?

  1. In the code editor, locate the file that controls the product page. It is typically named product-template.liquid or similar.

  2. Look for the code that generates the “usually ready in days” section. It might look similar to the following:


  {{ 'products.product.ready_in_days' | t: days: product.metafields.your_namespace.your_key }}

  1. Remove the entire code block or comment it out to disable it. For example, you can modify it like this:
{% comment %}

  {{ 'products.product.ready_in_days' | t: days: product.metafields.your_namespace.your_key }}

{% endcomment %}
​