Remove the "pickup availability" section of product page

Remove the "pickup availability" section of product page

  1. From your Shopify Admin, please go Online Store > Themes > Actions > Edit Code > Sections
  2. Search for pick_up_availability.liquid file
  3. Add the "comment" tag to the whole liquid file. 
Idea
add {% comment %} to the beginning of the file (first line)
and
add {% endcomment %} to the end of the file (last line)

    • Related Articles

    • Add “Description” title before the description on product page

      Add a custom liquid section in product page after add to cart button. Insert the following liquid in the custom liquid. {% if product.description != '' %} <br> <h3 style="color: #EC1C24; font-weight: 600;">DESCRIPTION & SPECIFICATIONS</h3> {% endif ...
    • Enlarge swatch size in product page

      In product page customize, add the following code in custom css: .swatch-input__input + .swatch-input__label { --swatch-input--size: 4rem !important; }
    • Insert product weight into product page

      In custom liquid, insert the following: Weight: {% for variant in product.variants %}{{variant.weight | weight_with_unit }}{% endfor %}
    • Create a Video with Text Section

      Create a new section with this code, called "video-with-text.liquid" {{ 'component-video-with-text.css' | asset_url | stylesheet_tag }} <div class="video-with-text {% if section.settings.full_width %}video-with-text--full-width{% else %}page-width{% ...
    • Remove the header and footer from a specific landing page

      Add this code before </body> tag in your theme.liquid file: {% if page.handle == 'x' %} <style> .header, footer {display: none;} </style> {% endif %}