Forum Replies Created
-
In reply to: Pls tell me how to change avatar
As OC2PS mentioned, that’s where you need to go to set up your avatar.
It’s free and is used by MANY other websites across the internet – so no only are you setting up you avatar her, but potentially a lot of other websites
In reply to: Cool 2.1 featuresI’d say the whole new theming system (ability to register new themes via plugins etc), the new visual editor, and the new hooks available.
It’s hard because there were a lot of great bug fixes in the new release
In reply to: Unable to set buddypress on my localhost .If it is strictly a BuddyPress install you should first try to ask on the BP forums as OC2PS said.
If you are dealing with bbPress, just give us some more details and we will see what we can do
In reply to: Fatal Error On bbpress With Custom ThemeAre you installing bbPress 2.x?
You should install bbPress 2.x – (https://wordpress.org/extend/plugins/bbpress/)
Step 2 – Go to Settings->Permalinks (no need to change the settings, just visiting the page will reset the peralinks)
Step 3 – Go to YourDomain.com/forums/ and you should see the forum index!
In reply to: Installed. Now, how do I get it visible?First, you need to reset your permalinks. To do this, just go to Setting->Permalinks. you dont need to do anything on the page – simply going to this page will do the job.
Secondly, after you do this, go to YourDomain.com/forums and see if they appear.
Hopefully step 3 is profit
In reply to: Unable to get forums to show upThat’s odd indeed.
The first thing I would try for debugging purposes is disabled ALL plugins except bbPress and see if there was one conflicting.
Trying that and see if by some chance that helps.
In reply to: Using Twenty Ten, Not getting any templatesIf you are using 2.1 and go to the Forums settings, you will see a dropdown that will have bbP Twenty Ten or bbP Theme Compat options to select.
In reply to: Using Twenty Ten, Not getting any templatesEverything looks ok, its just your theme isn’t playing nice with TwentyTen.
Personally, since your site is under development, I’d recommend giving bbPress 2.1 a test run using the new bbP Compat theme (instead of the TwentyTen one).
bbPress 2.1 can be downloaded on this page, where it says download zip archive – https://bbpress.trac.wordpress.org/browser/branches/plugin
If you do choose to try 2.1, keep in mind that it is still under development, so you should make a backup of your site before installing.
In reply to: CSS display: none questionIt depends on what theme you are using.
Theme’s typically call and register sidebar’s differently, which is why it is easier to fix this on a theme level and not a plugin.
Find out how your theme is handling sidebars, write mini plugin or block in your functions.php that addresses the issue.
We’ve been down this road already
No problem! That’s what we’re here for
If that’s the case it can’t *easily* be done (I’ve had a similar request for a client, so I looked into it).
I custom plugin could certainly accomplish this but it will take some elbow grease.
In reply to: Upload Avatar via edit profile sectionI understand for simplicity’s same you want to keep forum users on the front end, but there is no reason from a technical aspect why they can’t access the backed to edit their user profiles.
OC2PS – when are we going to start seeing some of these plugins you keep suggesting?
In reply to: Forum "Written by" issueYou already asked this once. No need to ask again.
https://bbpress.org/forums/topic/post-author?view=all#post-101224
In reply to: trunkI don’t see the issue. The CSS is there.
ul.bbp-has-subforums ul.bbp-forums-list
You’re not going to be able to do what is on the ubi form without a custom theme, because of how it’s setup.
In reply to: trunkLook around in the markup. Perhaps you are expecting the sub-forum classes to be somewhere they aren’t.
In reply to: trunkI don’t have an answer for you. Are you using bbp-compat or TwentyTen bbPress theme (though that shouldn’t matter).
The fact is I’m running trunk and I see the classes in various places.
Install bbPress 2.0.2 (the plugin) – it will do all of this out of the box
In reply to: Modifying colorsYou are in the right direction, the theme is just hijacking and overriding bbPress css, so you’re going to have to just tweak it.
In reply to: Remove toast/noticeIf you are using bbPress 2.1 by chance, you can drop this into your theme’s functions.php and it should do what you want.
add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' );
add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' );
function ja_return_blank() {
return '';
}If we provided a configuration for every request received we would have 347374 configurations and be years from a future release.
Instead bbPress is built extremely flexible so *you* can do these things as you see fit.
In reply to: trunkTrunk is simply the latest development version of bbPress. So if jjj committed a patch last night, it’s not going to show up in the latest *stable* version – it will be in trunk.
You can download trunk via a zip file or through SVN – SVN is better because then you can easily sync it down the road.
Make sure you are grabbing the plugin trunk and not 1.x trunk.
In reply to: CSS display: none questionNo its definitely still being rendered by the server and the browser, your browser just hides it. Ideally you’ll want to find a way to nuke the sidebar on bbPress pages, but you’ll have to poke around your theme to do that.
I’m using 2.1 truck and I get classes such as
bbp-has-subforums
andbbp-parent-forum-4
.In reply to: let's try this again … (private forums!)Right now it has to be accomplished with various plugins and some trickery, but it’s on our radar for a future version. See #1805.
It’s complicated now, they way you have to use the plugins to tweak user permissions. I’ve never had good luck with that, so I can’t really be much help.
Hopefully in a future version this can be handled in bbPress itself, via #1805.
In reply to: Where is bbPress's style sheet?Not sure what version of bbPress you are on, but if some change you are trying out 2.1 I’d recommend looking at https://wordpress.org/extend/plugins/bbpress-custom-css-file/