CFX
CFX
You're not using the latest version. Please upgrade.
My pull request and merge suggested anti-tick upnode solves this issue.
Bummer that this broke in 0.4.10 but I solved it by creating a full size pseudo element over the child elements. Worked this time!
Howdy! I love this library and would love to see this feature merged when you have a chance please 🙏🏻
I also ran into this issue. I believe a more thorough, readable solution is: ```ruby {% if product.has_only_default_variant %} {% assign option = product.options_with_values[0] %} {% assign value = option.values[0]...
> The "checked" attribute does not exist on a hidden input field and should only be used with Checkbox or Radio inputs only. > https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/hidden Right you are. Fixed and...
It's helpful yet also poses more questions. How are you integrating GTM?
@jonathanmoore thank you for the link. I do think it has _something_ to do with Slate since I'm asking about best practices. If I wasn't working with Slate then I...
@deiga's and @yoaquim's suggestions worked perfectly. Just need to add the appropriate extension in the filename.
I do this similarly with: ``` javascript $('img[data-unveil=true]:not(.unveiled)').unveil(0, function() { $(this).load(function() { $(this).addClass('unveiled'); }); }); ``` This only fires on images (1) with `data-unveil="true"`; and (2) without the `unveiled` class....