Build A Simple Wishlist Using Customer Metafields With MESA

In response to a recent request for straightforward wishlist functionality, we’ve developed a solution that saves products directly to the customer account. While there are numerous wishlist apps available, sometimes the simplest solution is best. This workflow uses MESA web request triggers to read and write products to a custom wishlist metafield within the customer account. Experience the easiest wishlist setup ever, providing your customers with a convenient way to save their favorite products.

Watch the demo

Example: Product page

Here is the Add to wishlist button we’ve created with some custom liquid.

<button id="mesa-wishlist-add-product" class="product-form__submit button button--full-width button--secondary" style="position: relative;">
  <span>Add to wishlist</span>
</button>

<script>
  document.getElementById('mesa-wishlist-add-product').addEventListener('click', function() {
      document.getElementById('mesa-wishlist-add-product').textContent = 'Adding to wishlist';
      fetch('https://webhooks.getmesa.com/v1/kalen-jordan-dev/webrequest/65b90010695f027f105335af/65b900137f610a6ee11b34dd.json?apikey=pobbFlA9BN73tE4gkbUsb5DLnZnwfIKi8g8UtM7U', {
          method: 'POST', // or 'POST', 'PUT', 'DELETE', etc.
          headers: {
              // Headers, if needed (e.g., content type, authorization)
          },
          body: JSON.stringify({
              "product_id": {{ product.id }},
              "customer_id": {{ customer.id }},
          })
      })
      .then(response => response.json()) // or .text(), etc., depending on the response type
      .then(data => {
        console.log(data);
        if (data.success) {
          document.getElementById('mesa-wishlist-add-product').textContent = 'Added to wishlist';
        }
      })
      .catch((error) => {
          console.error('Error:', error); // Handle any errors
      });
  });
</script>

Account page

account page
<div class="customer account">
  <h2>Wishlist</h2>
  <ul id="mesa-account-wishlist">
    {% for product in customer.metafields.custom.wishlist.value %}
      <li>
        <a href="{{ product.url }}" target="_blank">{{ product.title }}</a>
      </li>
    {% endfor %}
  </ul>
</div>

Preview workflow: Add product to wishlist

workflow steps: Add product to wishlist

Free download

This free workflow template if yours to personalize. Simply import the ZIP file to MESA then connect the app steps to your credentials. Test, then, turn it on!

What you should do now

Whenever you’re ready…here are 4 ways we can help you grow your business:

  1. Add MESA to your Shopify store. The best way to get started is by adding the MESA app from the Shopify App store. Every plan includes the first 7-days free so you can be assured your workflow is running properly.
  2. Import this workflow. Download this .ZIP file then import it into your MESA workflows.
  3. Questions? Contact Kalen Jordan. MESA Service Partners can help personalize workflows or make any automations your business requires.
  4. If you know another merchant who’d enjoy reading this, share it with them via LinkedIn, YouTube, Twitter, or Facebook.

Automate anything and get more from your apps.
For free.

Start free trial

Automate everything with MESA

Make any workflow and get more from your existing apps.

Try MESA for free, 7-day trial included.