Welcome to the Liquify Community

Updated 4 months ago

Barba.js and liquify

Hey, I'm looking to give Liquify a go and was wondering if you offer a free trial? I'm currently using Udesly for all projects but it does seem like Liquify will give me more customisation, especially with regards to movable sections in the customiser. Would love to give it a go, but it is more expensive so looking to make sure it's worthwhile for our use cases!
J
j
f
98 comments
Hey @fergie77, for now Liquify is still in Beta and therefore free, so you can register and try it out :)
Hi @fergie77, nice to see you here πŸ™‚ Yes liquify is still in Open Beta and can be used for free without any limits
Amazing, thank you!
I have to say it looks like you've done a fantastic job of this, it's exactly what I've been looking for from Udesly for years!
You haven't happened to have tried out how it works with barba.js have you? I'd experienced issues before with the way Udesly handles the conversion of webflow ecommerce to shopify. So if going page to page using barba, the ecommerce javascript wouldn't load in so add to carts etc wouldn't work.
Thanks @fergie77 πŸ™‚
We havent tried yet. But i think there shouldnt be a problem πŸ™‚ If you are facing any issues please contact.
Great! I'll give it a go and let you know either way
Are component slots able to be converted?
Hey @jonas.halbstark, I've been playing around and I've come into a bit of an issue I think may be caused by Barba not playing nicely. When I load in to the product page from the home page, if I use the add to cart form from the template, it doesn't load in. However if I then reload the product page, it works fine. Do you have any advice? I've noticed in the console a lot of errors that seem to indicate that it's struggling to load in the form element.
do you have the shopify link for me?
Two seconds sorry forgot I have to push some code
Okay it's working now, password is guibro
the webflow export would also be very helpful πŸ™‚
so the problem is, that barba js is not loading the dom an a page transition. Thats why the form does not get reloaded. We just need to reinitialize the alpine code
Perfect! How do I go about doing that? My barba code is hosted on netlify rather than on Webflow so it won't be inside that export zip. I'll have to put any reinitialization inside that code on barba page enter I think?
this is the function we want to use. i just need to play around
No worries, really appreciate the help!
Hey @jonas.halbstark, did you have any luck with this?
Yes sorry. Can you try this inside the head of your project?

barba.init({ views: [{ namespace: 'product', beforeEnter() { document.dispatchEvent(new Event('alpine:init')); Alpine.start(); }, afterEnter() { parallax.refresh(); } }] });
Barba.js and liquify
also define the namespace: data-barba-namespace="product"
I've been trying to get this to work but annoyingly it's not been playing nice. Is parallax from parallax-js? I'm having to import that and alpinejs to my project as it's not liking them being undeclared
ah parallax that was just from the example from barba js. i think you can remove it. alpinejs is already part of the project
Hmmm I don't seem to be able to get it working, could you take another look please? It seems like it duplicates the alpine instance if you refresh the product page but doesn't load it when going from home page to product, I think?
I've got it in like this
Attachment
image.png
the namespace is also set?
Is is yes, I'd been using that for transitions already
Can you send me the link?
Password is guibro
i think its currently not in the project.. or where can i find the code?
I'll get you the github sorry, two seconds
Just realised there's been an issue with the github code not loading in, only was showing up on my side so yours will be looking different to mine, will update just now
Okay you should be able to see it as I do on your side now!
can you try adding this:
{ namespace: 'product', beforeEnter() { // Avoid initializing Alpine.js twice by checking if it has already been initialized if (!window.Alpine.initialized) { document.dispatchEvent(new Event('alpine:init')); Alpine.start(); window.Alpine.initialized = true; // Flag that Alpine has started } // Dynamically reload the liquify_custom.js script on each transition loadExternalScript('//testparallel.myshopify.com/cdn/shop/t/38/assets/liquify_custom.js?v=99708878005376017301728214743'); } }
i think we are on the right path
scripts also doe not get load on page transition
is LoadExternalScript part of alpine?
sorry there was a part missing: function loadExternalScript(src) { const script = document.createElement('script'); script.src = src; script.type = 'text/javascript'; script.async = true; document.body.appendChild(script); }
currently also trying to guide chatGPT because i have not worked with barba.js before
No worries, publishing now!
Ah okay, if you have any questions about it please let me know, I've used it a good bit now
That should be it published now
cant see any changes πŸ˜„
I've got it coming through I think?
Attachment
image.png
can you load the external script befor init alpine?
{
namespace: 'product',
beforeEnter() {
// Dynamically reload the liquify_custom.js script on each transition
loadExternalScript('//testparallel.myshopify.com/cdn/shop/t/38/assets/liquify_custom.js?v=99708878005376017301728214743');

// Avoid initializing Alpine.js twice by checking if it has already been initialized
if (!window.Alpine.initialized) {
document.dispatchEvent(new Event('alpine:init'));
Alpine.start();
window.Alpine.initialized = true; // Flag that Alpine has started
}


}
}
Published now!
Just remembered I've had to put the barba code before the end of body, will this make a difference?
Otherwise Barba doesn't find the wrapper in the dom
Rather than having it in the head
can you also just add Alpine.start();
without: document.dispatchEvent(new Event('alpine:init'));
No I mean I won't be able to put it in the head, or Barba won't work at all
I'll try removing dispatchEvent though
ah no i got it.. i dont think so.
for testing.. can you try adding this on the index page: <script src="//testparallel.myshopify.com/cdn/shop/t/38/assets/liquify_custom.js?v=99708878005376017301728214743" type="text/javascript"></script>
Sure, in the head?
Is it just the theme.liquid?
The index file is a settings json
yes the theme.liquid
Ohhhh shiiiiiitttt
I think we have liftoff
Definitely on the right track, it's just adding a bit too much and the cart is a wee bit buggy I think?
one more try... can you remove Alpine.start(); also
i think the only problem is to load the script correctly. the easiest why would be to add it in the head of every page (project settings) so its already loaded when you get on a product page.. or somewhere else
It's publishing now, will be a couple seconds
Should I remove the loadexternalscript also?
Amazing, it's working!!
very nice πŸ™‚ long way πŸ˜„
The only other thing is that the add to cart with quantity button isn't working, but I reckon I've probably put that in wrong
But the other add to cart I've put in works, so I'll just use that
yes.. the other button submits the form. Just use the other one
normaly we prevent the default behavior... need to check this
In any case, Jonas you are a genius
Thank you so much for the help, I really appreciate it
was fun! πŸ™‚ no problem
always learning something
Yea it was quite the brain training πŸ˜‚
Barba always throws up things like this
hope your enjoying using liquify pro
Finsweet filters in particular took a long time to get right haha
Really enjoying it thank you, it's a really well put together product
Preferring it quite a lot to where I was at with Udesly before
so nice to hear πŸ™‚
i will mark this one as solved
If your using barba js... just put the liquify custom script into your projects head πŸ™‚
Add a reply
Sign up and join the conversation on Discord
","dateCreated":"2024-10-08T21:12:56.666Z","dateModified":"2024-10-08T21:12:56.666Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":63,"upvoteCount":0},{"@type":"Comment","text":"Sure, in the head?","dateCreated":"2024-10-08T21:13:12.912Z","dateModified":"2024-10-08T21:13:12.912Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":64,"upvoteCount":0},{"@type":"Comment","text":"yes","dateCreated":"2024-10-08T21:13:22.261Z","dateModified":"2024-10-08T21:13:22.261Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":65,"upvoteCount":0},{"@type":"Comment","text":"or doesn't matter","dateCreated":"2024-10-08T21:13:40.047Z","dateModified":"2024-10-08T21:13:40.047Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":66,"upvoteCount":0},{"@type":"Comment","text":"Is it just the theme.liquid?","dateCreated":"2024-10-08T21:14:31.955Z","dateModified":"2024-10-08T21:14:31.955Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":67,"upvoteCount":0},{"@type":"Comment","text":"The index file is a settings json","dateCreated":"2024-10-08T21:14:38.228Z","dateModified":"2024-10-08T21:14:38.228Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":68,"upvoteCount":0},{"@type":"Comment","text":"yes the theme.liquid","dateCreated":"2024-10-08T21:14:57.516Z","dateModified":"2024-10-08T21:14:57.516Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":69,"upvoteCount":0},{"@type":"Comment","text":"Ohhhh shiiiiiitttt","dateCreated":"2024-10-08T21:15:23.162Z","dateModified":"2024-10-08T21:15:23.162Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":70,"upvoteCount":0},{"@type":"Comment","text":"I think we have liftoff","dateCreated":"2024-10-08T21:15:27.085Z","dateModified":"2024-10-08T21:15:27.085Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":71,"upvoteCount":0},{"@type":"Comment","text":"Definitely on the right track, it's just adding a bit too much and the cart is a wee bit buggy I think?","dateCreated":"2024-10-08T21:16:41.424Z","dateModified":"2024-10-08T21:16:41.424Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":72,"upvoteCount":0},{"@type":"Comment","text":"one more try... can you remove Alpine.start(); also","dateCreated":"2024-10-08T21:19:07.015Z","dateModified":"2024-10-08T21:19:07.015Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":73,"upvoteCount":0},{"@type":"Comment","text":"i think the only problem is to load the script correctly. the easiest why would be to add it in the head of every page (project settings) so its already loaded when you get on a product page.. or somewhere else","dateCreated":"2024-10-08T21:20:29.632Z","dateModified":"2024-10-08T21:20:29.632Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":74,"upvoteCount":0},{"@type":"Comment","text":"Ahh I get you","dateCreated":"2024-10-08T21:21:01.776Z","dateModified":"2024-10-08T21:21:01.776Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":75,"upvoteCount":0},{"@type":"Comment","text":"It's publishing now, will be a couple seconds","dateCreated":"2024-10-08T21:21:08.250Z","dateModified":"2024-10-08T21:21:08.250Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":76,"upvoteCount":0},{"@type":"Comment","text":"Should I remove the loadexternalscript also?","dateCreated":"2024-10-08T21:21:27.612Z","dateModified":"2024-10-08T21:21:27.612Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":77,"upvoteCount":0},{"@type":"Comment","text":"yes.","dateCreated":"2024-10-08T21:21:42.961Z","dateModified":"2024-10-08T21:21:42.961Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":78,"upvoteCount":0},{"@type":"Comment","text":"Amazing, it's working!!","dateCreated":"2024-10-08T21:23:46.487Z","dateModified":"2024-10-08T21:23:46.487Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":79,"upvoteCount":0},{"@type":"Comment","text":"very nice πŸ™‚ long way πŸ˜„","dateCreated":"2024-10-08T21:24:14.082Z","dateModified":"2024-10-08T21:24:14.082Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":80,"upvoteCount":0},{"@type":"Comment","text":"The only other thing is that the add to cart with quantity button isn't working, but I reckon I've probably put that in wrong","dateCreated":"2024-10-08T21:24:19.850Z","dateModified":"2024-10-08T21:24:19.850Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":81,"upvoteCount":0},{"@type":"Comment","text":"But the other add to cart I've put in works, so I'll just use that","dateCreated":"2024-10-08T21:24:34.750Z","dateModified":"2024-10-08T21:24:34.750Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":82,"upvoteCount":0},{"@type":"Comment","text":"yes.. the other button submits the form. Just use the other one","dateCreated":"2024-10-08T21:25:50.898Z","dateModified":"2024-10-08T21:25:50.898Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":83,"upvoteCount":0},{"@type":"Comment","text":"normaly we prevent the default behavior... need to check this","dateCreated":"2024-10-08T21:26:11.272Z","dateModified":"2024-10-08T21:26:11.272Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":84,"upvoteCount":0},{"@type":"Comment","text":"Cool!","dateCreated":"2024-10-08T21:26:22.365Z","dateModified":"2024-10-08T21:26:22.365Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":85,"upvoteCount":0},{"@type":"Comment","text":"In any case, Jonas you are a genius","dateCreated":"2024-10-08T21:26:30.699Z","dateModified":"2024-10-08T21:26:30.699Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":86,"upvoteCount":0},{"@type":"Comment","text":"Thank you so much for the help, I really appreciate it","dateCreated":"2024-10-08T21:26:38.132Z","dateModified":"2024-10-08T21:26:38.132Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":87,"upvoteCount":0},{"@type":"Comment","text":"was fun! πŸ™‚ no problem","dateCreated":"2024-10-08T21:27:28.592Z","dateModified":"2024-10-08T21:27:28.592Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":88,"upvoteCount":0},{"@type":"Comment","text":"always learning something","dateCreated":"2024-10-08T21:27:36.291Z","dateModified":"2024-10-08T21:27:36.291Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":89,"upvoteCount":0},{"@type":"Comment","text":"Yea it was quite the brain training πŸ˜‚","dateCreated":"2024-10-08T21:27:53.709Z","dateModified":"2024-10-08T21:27:53.709Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":90,"upvoteCount":0},{"@type":"Comment","text":"Barba always throws up things like this","dateCreated":"2024-10-08T21:27:59.212Z","dateModified":"2024-10-08T21:27:59.212Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":91,"upvoteCount":0},{"@type":"Comment","text":"hope your enjoying using liquify pro","dateCreated":"2024-10-08T21:28:02.719Z","dateModified":"2024-10-08T21:28:02.719Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":92,"upvoteCount":0},{"@type":"Comment","text":"Finsweet filters in particular took a long time to get right haha","dateCreated":"2024-10-08T21:28:24.718Z","dateModified":"2024-10-08T21:28:24.718Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":93,"upvoteCount":0},{"@type":"Comment","text":"Really enjoying it thank you, it's a really well put together product","dateCreated":"2024-10-08T21:28:40.069Z","dateModified":"2024-10-08T21:28:40.069Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":94,"upvoteCount":0},{"@type":"Comment","text":"Preferring it quite a lot to where I was at with Udesly before","dateCreated":"2024-10-08T21:28:59.175Z","dateModified":"2024-10-08T21:28:59.175Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"commentCount":0,"comment":[],"position":95,"upvoteCount":0},{"@type":"Comment","text":"so nice to hear πŸ™‚","dateCreated":"2024-10-08T21:30:51.003Z","dateModified":"2024-10-08T21:30:51.003Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":96,"upvoteCount":0},{"@type":"Comment","text":"i will mark this one as solved","dateCreated":"2024-10-08T21:30:56.981Z","dateModified":"2024-10-08T21:30:56.981Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":97,"upvoteCount":0},{"@type":"Comment","text":"If your using barba js... just put the liquify custom script into your projects head πŸ™‚","dateCreated":"2024-10-08T21:31:39.671Z","dateModified":"2024-10-08T21:31:39.671Z","author":{"@type":"Person","url":"https://liquify.hall.community/members/9198b265-c813-4ed7-89ba-4025d177dc62","name":"jonas.halbstark","identifier":"9198b265-c813-4ed7-89ba-4025d177dc62","image":"https://cdn.discordapp.com/avatars/947621552478904320/9741d807d28f33e26a3a3b01c121c60f.webp?size=256"},"commentCount":0,"comment":[],"position":98,"upvoteCount":0}],"author":{"@type":"Person","url":"https://liquify.hall.community/members/4c267662-dce4-4eb5-a13f-00c1355367a9","name":"fergie77","identifier":"4c267662-dce4-4eb5-a13f-00c1355367a9","image":"https://cdn.discordapp.com/avatars/490191619279290370/635022c8368031abe0fdd8e4372b5b64.webp?size=256"},"interactionStatistic":{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0}}]