Search Results for 'forum css'
-
Search Results
-
Topic: Finding .css style file
Hi guys,
I apologize in advance, my skills are pretty minimal and I couldn’t find a solution to my problem. I just installed the forum on my site, but the pictures (avatars) for ‘last updated by’, started by’ are huge! Where do I find the.css file to edit them, and what code do I use?
Thanks in advance for the help!
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.