Hi, I’m looking to customize the layout a little. I was wondering if anyone knows where to find the file that has the contents of the user profile page? Discussion count, join date, etc. I found some .blade.php files for the front-end which had some stuff I wanted to modify, wondering if there’s a location for similar files relating to user info/profile page? Thanks in advance.
Where to find user profile layout file?
SUF Flarum is a single page application. Compared to Laravel what is actually rendered is javascript, not a blade file. That's why the UserPage is linked, you can read more about that on our docs:
rafaucau Here: https://github.com/flarum/core/blob/master/js/src/forum/components/UserPage.js
luceos Flarum is a single page application. Compared to Laravel what is actually rendered is javascript, not a blade file. That's why the UserPage is linked, you can read more about that on our docs:
Both of those links are very helpful, thank you guys! I’m trying to accomplish having comment (post) count and join date show under the user profile picture on posts. I will let y’all know if I am successful or not!