The team is now working on the WordPress Interactivity API. This unblocks the same UX Frontity framework enabled but directly in WordPress Core, fully compatible with the new Site Editor.
I’ve finally launched the frontity version of our website which is https://noobforce.net/
It took quite a while to make and a few things I had to work through them to get it working, but it’s finally here and I’m super happy with it! I really like working with frontity, it feels great to really get to grips with it, even if I personally found the learning curve a little longer than expected.
A couple of details on functionality:
Homepage slider panel with data from ACF
Category slider panel with data from the latest posts
JWT Login via twitch (work in progress)
Dynamic menu (data being pulled from WordPress)
Creators data (this is pulled from ACF as well and a custom post type)
I have an auto publish process which rebuilds frontity and that has been working great!
I have a couple of issues with a few small things that I need to work through:
Some of my fetch requests seem to error as the items aren’t found. I think this is due to a change in a post type slug or category as it’s trying to go to /videos/ instead of /games/. More investigation need!
Disqus comments are not currently working
Some styling issues that need cleaning up.
I hope you like the site, any and all feedback is much appreciated!
All the best, EpicWebs
5 Likes
Pablo3
Hey @EpicWebs congratulations on the launch!!
The site looks really cool, and the UX is just great
1 Like
EpicWebs4
Thank you! Hoping to improve it over time as well. I have a small issue with the featured videos section loading in a little slow, but hopefully get that sorted when I get more time on it again.
Another thing I would like to do is speed up my rest calls as they appear to be a bit slow when testing it!
Thanks again
1 Like
Reyes5
Hi @EpicWebs, thanks for sharing your project! It looks awesome
Disqus comments are not currently working
In case it helps, the community member JesĂşs shared in this post how he integrated Disqus comments in his blog.
1 Like
EpicWebs7
Thanks, I’m loving frontity so far, it’s very easy to use!
I got disqus working in the end! I used the wrong disqus id, oops.
The first thing I had to do to get any ACF fields working was to install the following plugin:
That helped a lot and allowed me to grab ACF fields. The next thing I did was create a custom handler for grabbing the homepage and loop through the return panels to output either the slider or the latest video section.
Another plugin that was pretty useful was:
It brings in data for relationship fields, so that you don’t have to go out and fetch them again. The ACF data is baked into the single request.
Then it’s just a case of building a slider component with React and the same for the tabbed panel section
Good luck!
2 Likes
koli1412
Hey @EpicWebs congrats, the site looks grate!
I don’t understand the quoted line. Why you need to rebuild frontity? You mean, after code change, it publish automatically?
1 Like
EpicWebs13
Thank you!
I was originally hosting the site on a different hosting provider (I’ve moved to vercel, it’s so easy, plus it’s nice and quick).
Before I changed to vercel, I had to setup a git hook to be able to auto push the site and rebuild. Now Vercel takes care of all of that for me.
koli1414
Yes, I also use Vercel, they really do an amazing job, for a fair price.