Search Results for 'forum css'
-
Search Results
-
Topic: My impressions so far
I don’t know why, but for some reason I decided to punish myself on my latest project (ekatana.se if anyone wan to look) and I went ahead and installed BBPress along with Buddypress. Now I have done this a few times before in the last 3-4 years and it has always been a very painful experience.
This time was not so bad and I actually got most things working pretty much instantly with just som minor CSS changes. BBPress however is not really a forum in my opinion yet and I had to go through a ton of posts and articles with half baked solutions and snippets just to get anywhere near what I think a forum should look like and behave.
Now I admit that I am biased, having worked for many, many years with IPB which is the best forum out there and I have been working with forum software since 1996…
However, BBPress have really taken a leap forward in the last few years and I look forward to see it go even further, in fact i hope to be able to lend som assistance in the UX and design department should it be needed. Since I am a systemtester as well, I hope to be able to break stuff on a regular basis as well π
I really look forward to the forum grouping I see is already pretty much done and which is working just fine on my forum as far as I can tell. When time permit I will give more input into what features I see as necessary, both in the frontend and the backend and util then I just want to say that I am far from impressed, but I see hope for BBPress.
Keep up the good work!
I’ve just started using bbpress and I like the simplicity of it. I’ve been trying to customize it to my need for the past 2 weeks (yeah, I am slow). This is something that I came up with that I’d like to share with the community since I’ve learned so much from over here. And I am really proud of myself for coming up with this since I usually suck at php and css.
If you want a new topic, or new reply button on top of your topics list ore replies list.
You can just add this code to your functions.php and you are good to go. This way, it will only show a “new topic” link if the user is logged in. If they are not, then it’ll show a text saying “to post a new topic register or login”. Of course, you can change the code to whatever you want. And make sure you change the links to your login and register pages. And you can add class to customize the text with css.//function to add new topic thread function bbp_login_thread_link() { if ( is_user_logged_in() ) { ?> <a href="#new-post">Create a new thread</a> <?php } else { ?> <p> To create a new thread <a href="http://yourwebsite.com/login">login</a> or <a href="http://yourwebsite.com/register">register</a></p> <?php } } add_action( 'bbp_template_before_single_forum' , 'bbp_login_thread_link' ); //function to add new reply thread function bbp_post_reply_link() { if ( is_user_logged_in() ) { ?> <a href="#new-post">Post a Reply</a> <?php } else { ?> <p> To post a reply <a href="http://yourwebsite/login">login</a> or <a href="http://yourwebsite/register">register</a></p> <?php } } add_action( 'bbp_template_before_single_topic' , 'bbp_post_reply_link' );I am hoping you guys can add this to this article which has examples of layout and functionality. That article helped me immensely and I will feel honoured to have contributed to it.
Hey guys, I’ve been looking everywhere for this
I installed bbpress and made a forum ( just testing ).
I want my forum to be full width and without the side bar. Tried the “1 column full width” layout and some custom css.
The best I’ve got is a no-full-width forum WITHOUT side bar in the /forum/ page.
But further than that like /forum/topic/… the side bar reappear.
My site is http://mmo4teens.netai.net/ and my theme is Stargazer Colloquium.
Any help is appreciated.
Thanks in advance.Hi all, I think name of the topic can explain the situation I am in. Everything is updated to its latest.
For those who want to see the an example topic that’s affected(Also comments have this):
http://forum.gamesap.az/forums/topic/csgo-yeni-baslayanlar-ucun-qisa-m%C9%99lumat/I am not a magician with CSS, but when I view the source of page, I see that in that area, I can’t seem to see the beginning og </p> paragraph (closing tag is there)
So I guess the problem is, bbpress is not giving the paragraph a proper starting point.
Have no idea how to fix this, Would be grateful for any help
