Daniel Lerman

Results 11 comments of Daniel Lerman

@willholsten @jobincleetus I recently uploaded a new repo that is the backend component for saving wishlists to customer metafields ([repo](https://github.com/dlerm/shopify-wishlist-app)). I'm working on setting up some sample files that act...

@rorstuff In order to include more data on the wishlist we'll need to switch the localStorage array to hold objects instead of strings. An example of the object could be...

> Hi @dlerm, I'm joining this conversation about "Improvement". > > -- Variant ID would be great > > Also it looks like several features for wishlists are missing, for...

> Thank you @dlerm. I have since built what I needed by storing data as serialized JSON in localStorage. If you would like to see the code, let me know...

I think the proper way to handle injected DOM elements would be to use delegated event listeners connected to the document. I'll add an example soon

@miluak does your product.card.liquid template have `{% layout none %}` at the top? That is what avoids the normal layout (header / footer) from loading in via the Ajax calls.

@miluak Do you have some sort of lazyload plugin running on your site? You may need to initialize the lazyload plugin on the wishlist page (preferably after the items have...

@shopify-dawn can you try adding explicit `width` and `height` attributes to the `svg` element inside the file **icon-heart.liquid**? Example: ``` ```

@shopify-dawn Do you have any site specific styling applying to buttons or SVGs that would cause the SVG to be positioned outside the button? The button is the only part...

@rjtbansal I was able to set it up so you could create a wishlist URL with query params that held the wishlist product handles (Example: `/pages/wislist?w=handle1,handle2...`). The logic for fetching...