How can I add an 'order by phone' button to my online store?

Topic summary

A user seeks to add an “Order by Phone” button to their Shopify store (appliancesclub.com) using the Warehouse theme. The button should trigger a phone call when clicked.

Proposed Solution:

  • Navigate to: Shopify Admin → Online Store → Themes → Actions → Edit Code
  • Locate the header file (liquid.header) in Snippets
  • Add HTML code for a clickable phone link:
    <li><a href="tel:123-456-7890">Order by Phone</a></li>
    
  • Insert this code after existing header buttons
  • Save changes

Note: The response appears partially corrupted with reversed text, but the core technical guidance involves adding a tel: link in the theme’s header file. The user included example images showing desired button placement and styling.

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

Hi

Pls can u provide a solution to adding a button called “order by phone” which calls a number when pressed.(attached example below)

my store:

URL: appliancesclub.com

Theme: Warehouse

wanted result:

example:

Cheers

To add a “Order by Phone” button to your Shopify store using the Warehouse theme, you can follow these steps:

  1. From your Shopify admin, go to Online Store > Themes > Actions > Edit code.

  2. In the left-hand sidebar, navigate to Snippets and click on the “header.liquid” file.

  3. Scroll down to where you see the other buttons in the header and add the following code just after the code for the last button:

<li><a href="tel:123-456-7890">Order by Phone</a></li>
  1. Click the “Save” button.