Info
- 19 posts
- 8 voices
- Started 1 year ago by lukepuuk
- Latest reply from Real Estate Transaction Management
OneMoreThing.nl
-
- Posted 1 year ago #
Our 40000+ member community: http://www.onemorething.nl/community/
Here's the dev version, soon to be released: http://dev.onemorething.nl/community/forum
All users are in WordPress, which is used for news: http://www.onemorething.nl
Neatly integrated.
-
- Posted 1 year ago #
I'll tell you what I like about this, more than any other theme I've seen here in about a year. You've not just changed the header image and the text colour and called it a new theme.
I think it looks great, well done!!
-
- Posted 1 year ago #
Killer bbpress layout. Congrats!
Anyone want to release that kind of structure to a bbpress theme?
-
- Posted 1 year ago #
I doubt anyone needs to release it as a theme, it's just a custom front page (although a good one for sure).
It just loops through Categories / Forums and then outputs the last topic and last post for each forum with it's gravatar next to it. The code to do it yourself is already in front-page.php
( I say that without taking away from the excellent work done by lukepuuk and others on the theme )
Exit mate, If you want your bbPress to be/act different than all the others, you'll have to change more than the CSS/Background. But realistically you don't need much/any plugins to enable your forum to be unique while staying cool and usable :)
-
- Posted 1 year ago #
Credits go to http://qlear.nl for design and http://madewithlove.be for implementation. I'm just the owner.
-
- Posted 1 year ago #
Lovely of you to give them some credit Luke, my hats off to both of them!
I'm hoping that more people look at your site and see that not every bbPress forum needs to look/work the same
-
- Posted 1 year ago #
Hi guys
Thanks for the kind words. We are also very happy with the implementation and there is more to come.
The hardest part in this project was migrating the 2 million forum posts from phpBB to bbPress.
Don't hesitate to ask us any questions on how we did this.
Cheers
Andreas
-
- Posted 1 year ago #
a killer theme guys, respect!
anyway, i'm curious on how you was able to get it work with the last poster and last topic avatar for front-page.php.
i've already tried it months ago with
<?php post_author_avatar(); ?>between td's but for some reason i get the same static gravatar for all users.thank's in advance.
-
- Posted 1 year ago #
Hi Johnny,
You need to pass the user id into the avatar function.
I'm not near my code righ tnow, but you're looking at something like this:get_avatar(poster->id); -
- Posted 1 year ago #
hey kevin,
thank you for stepping in with a helping hand, i appreciate that a lot.
but i had sadly though luck with your code so far. -
- Posted 1 year ago #
Johnnydoe,
sorry mate, rushed off my feet tonight, try this:
bb_get_avatar( $user->ID, '48');Is the code you're looking for.
In order to get it to display the last poster you'll need this:bb_get_avatar( $topic->topic_last_post_id , '48');Usual disclaimer, i'm guessing at this code. Just annoyed I forgot to add the "bb_" when telling you this morning, sorry.
-
- Posted 1 year ago #
hey kevin,
there is really nothing to be sorry about, no stress, i'm already glad and thankful for the help you offer.
i've tried your code and i had still bad luck, but i'm going experiment with your code snippet tonight, i bet it's probably an incorrect structure in my theme or something like that, but i keep trying :)
-
- Posted 1 year ago #
Ok mate, first thing to test is, if you specify an ID, do you get an image.
eg: bb_get_avatar(1);
If so, aweosome. then we've narrowed down the problem to the ID we're passing.
i'd also add this line:
echo $topic->topic_last_post_id;and see what that outputs. (should be a number).
-
- Posted 1 year ago #
so the
echo $topic->topic_last_post_id;string worked, i'll get some i'd s like 1075, 1071, 1065 etcetera, but still no pictures the other way around, is there probably also a problem because i'm on localhost? -
- Posted 1 year ago #
Dude, blame sleep on my part. Add an echo
echo bb_get_avatar( $topic->topic_last_post_id , '48'); -
- Posted 1 year ago #
i've echoed already everything before, but still whammy :D
-
- Posted 1 year ago #
Hello i was just playing around with this a little bit and i have to say i have ZERO .php skills i only look and compare lines to each other..
But i think i have found the problem for showing the (right) avatars.
First i did this what Kevin told us.
echo bb_get_avatar( $topic->topic_last_post_id , '48');But i got only a basic image and all the same basic avatars..
So i looked at who bbPress did post the user name of the last poster in the topic and i see this.<?php topic_last_poster(); ?>
So i thought lets try to change _post_id into _poster and it worked for me with this line.
<?php echo bb_get_avatar( $topic->topic_last_poster , '48'); ?>
-
- Posted 1 year ago #
i would like to see some of it! keep us posted! cheerz!
-
- Posted 1 year ago #
Wonderful design!
Quick question. Has anyone integrated bbpress into an independent stand-alone web -app? Integration that would allow the user to flow seamlessly between the app and bbpress?
Steve
-
You must log in to post.