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!
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!
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
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?