Forum Replies Created
-
I would guess the functions.php file, check that out.
In reply to: bbPress and user restricted site accessWould customising the profile pages be ok?
Can users see other users area/section but not update it?In reply to: how to install bbpress on my photography site ?Is that a wordpress site?
In reply to: Unrestricted HTML WarningbbPress adds this notice in because you are an admin of the site I believe.
In reply to: CSS Style IssuesTried something like this?
.bbpress .post-entry ul li { background: none; padding-left: 0px; margin-bottom: 0px; }
In reply to: Customising bbp_list_forums – Last Poster BlockYou could create it as a plugin but it would probably be very difficult to hook into the bbp_list_forums function and make it run your own instead, if anyone could give me an idea on how to do that I would be happy to make it into a plugin.
Have fun guys and keep on coding!
In reply to: Customising bbp_list_forums – Last Poster BlockNo you will never need to touch the core code.
You put these functions inside bbpress-functions.php then you can call these functions inside your template files. like: BBP_Default::custom_bbp_list_forums();
Inside loop-forum-single.php you change where it is calling the function to the new custom function.
If you need any more help let me know, good luck!
In reply to: Customising bbp_list_forums – Last Poster BlockAhh no sorry I meant the very original functions I put one. The ones in the gists you made are the most up to date 🙂
Thanks for the link I am going through that right now!
In reply to: Customising bbp_list_forums – Last Poster BlockI am wanting to try out git but it all comes down to having time to just play around with it.
You will notice there is a slight difference between the gists and my initial functions (at the very start of this topic), this is because I found out my last poster block was not quite displaying correctly, which it now is and the gists are the correct place to be looking for the functions.
Thanks for adding them netweb.
In reply to: My "pimped press" www.stratoliner.meLooking good! It fits really nicely into the site.
In reply to: Trouble with shortcode layoutI am still thinking your bbpress.css file seems a little short, where did that initially come from?
In reply to: I'm finished (I think?)Awesome can’t wait! lol.
In reply to: Customising bbp_list_forums – Last Poster BlockHey guys, I have been debugging a few issues with these functions so I am going to link to each of the functions below in pastebin, should be pretty good to go for copying across I believe.
Custom bbp_list_forums function. http://pastebin.com/GLhCHYze
Custom last poster block for forums. http://pastebin.com/8K0pkKs5
Custom last poster block for topics. http://pastebin.com/FGptZmiQ
Hope this helps, it is a little clearer on pastebin currently, the code block on bbpress.org likes to change my code for me! :p If you find any issues let me know and I will try and update this topic, also I will get the updates onto my own site.
Good luck!
In reply to: Forums Appear Below Sidebar@netweb and there it was, the simple thing I couldn’t see for the life of me!
In reply to: Forum TitleThis is probably because you have something like: the_title() inside your title tag in your theme?
I had to have conditional title tags based on what post type I was looking at, check this out:
I am still having an issue with the code syntax highlighter, so I used pastebin.
Good luck!
In reply to: I'm finished (I think?)Oh nice thanks for the tip netweb! That is pretty awesome, I have always wanted to “Get on the bleeding edge of the web” lol, great tagline.
Hopefully there isn’t too many issues with the CSS but I find it does get quite complicated between the main forum pages and then the subforum pages aswell.
In reply to: Customising bbp_list_forums – Last Poster BlockThanks I am glad it will be useful.
One thing to note is that some of the functions have had the greater than sign escaped, so you can not directly copy it unfortunately.
Once you have got these functions working then it is just a case of some CSS.
If you use this then I would be very interested in seeing where and how you styled the pages.
Good luck all!
In reply to: Reply TruncationNice, good job!
In reply to: Forums Appear Below SidebarYes that is correct, that is why I am struggling with the CSS.
How I would nearly do a layout is just float:left all the columns then clear below them.
I have seen layouts like this, but they usually have some kind of absolute position or float, maybe because I rarely do layouts like this it is something simple I am over looking.Sorry I couldn’t be more help!
In reply to: Full Width bbPress – A Simple Solution@pimarts
If you have a sidebar container does that function remove that aswell or just the widgets inside it?In reply to: Forums Appear Below SidebarI had a look and I don’t really get how your main site pages are able to have the #content appear in between the sidebars.
It doesn’t make sense!
So the sidebars are floated left and then floated right.
Then the #content section has no float on them at all and is not positioned absolutely so I just don’t see how it is managing to sit between the sidebars on your normal pages.On the forum link it makes sense to me that the forum does not sit in between the sidebars as it is not floated or is it not positioned absolutely.
I hope this helps you track down what is going on, good luck!
In reply to: bbPress.org Updated to 2.1Reading?!? What is this new fad you speak of :p
In reply to: I'm finished (I think?)Thanks! I have put up a topic showing how I created the subforum setup.
The post has temporarily gone missing but I am hoping it will get displayed soon! I suppose it might of got put into spam because of the length of the message, if such a thing exists?
In reply to: I'm finished (I think?)@Erlend is chrome 21 a beta version? If it is then I won’t be testing on that until it is fully released.
@Jaredatch I did a lot of customization, but the big thing I did was setup my own function inside the bbpress_functions.php – It is basically the same as the bbp_list_forums but it has a flag for freshness_block which then calls my last_poster block function.
It is pretty awesome, I could put something up even more detailed if people would like.
In reply to: I'm finished (I think?)Wow I found out last night that my whole forum exploded in IE!!
I had to go through and do a huge amount of changes to get it working. My markup was not nesting correctly, doh!
IE was actually useful, who knew.