Forum Replies Created
-
I’d just create then in the order you want them to appear
In reply to: bbPress private groups Plugin could not be activatedResponded to on my plugin site
In reply to: Release: bbPress Advanced StatisticsHey great – well done Geekserve !
In reply to: Setting up forum communityIn reply to: Setting up forum communitybbpress just uses wordpress login, so all wordpress pliugins work, so just google away
eg
In reply to: Change breadcrumb for groupsWould be great if you posted the solution to help others in the future !
In reply to: Change breadcrumb for groupsDoes any of this help?
In reply to: Making forums visible to logged-in users onlythanks for the typo, I’ll fix that on next release.
both bbpress and wordpress add the ‘Private’ heading, hence why it appears twice. My style plugin removes both, which is not what you want, but what it does !
I’ll take a further look if I get some time
I am just a humble bbpress user, I’m not an author of bbpress, so
It would be nice to lose that message when you are next in that code.
ain’t gonna happen !
In reply to: Making forums visible to logged-in users onlyYou can remove ‘private’ by adding the following to your functions file
add_filter('protected_title_format', 'ntwb_remove_protected_title'); function ntwb_remove_protected_title($title) { return '%s'; } add_filter('private_title_format', 'ntwb_remove_private_title'); function ntwb_remove_private_title($title) { return '%s'; }
or if you are not into coding, use my plugin
https://wordpress.org/plugins/bbp-style-pack/which has the ability to remove it.
If the forum is empty, a blue box correctly says This forum is empty but then a yellow box says Oh bother! No topics were found here!
This will obviously only show until one topic is created, so is very temporary. I could work out some code to remove it, but maybe just create a topic and it will disappear !
ok, so 3 stages
1. create the style.css entries – say you have a forum called ‘fred’ you might want to create a ‘fred’ style and have content for this eg
.fred #fixed-background { background: url(‘http://www.mysite.com/wp-content/uploads/2015/02/fredbackground.jpg’); }
2. look up the forum’s ID
go to dashboard>forums>all forums and hover over the ‘edit’at the bottom of the screen you’ll see
http://www.mysite.com/wp-admin/post.php?post=2921&action=edit
in this case 2921 is the forum ID
3. add the style to the body class for that forum
Add this into your functions filefunction rew_add_class ($classes, $bbp_classes, $wp_classes, $custom_classes ) { //the above line pulls in the pre-existing values so we don't lose them - ie run this function using this existing $variables if they exist //then we check is this is a forum using a bbpress function if ( bbp_is_single_forum() ) { $bbp_forum_id = bbp_get_forum_id(); if ($bbp_forum_id == 2922) $custom_classes[] = 'fred' ; if ($bbp_forum_id == 2923) $custom_classes[] = 'george' ; } //then we check is this is a topic using a bbpress function if ( bbp_is_single_topic() ) { //and if so look up the forum id of that topic $bbp_forum_id = bbp_get_topic_forum_id(); //now you will need to add lines for each forum you have and say which class class you want to use, these are just example lines. Add one for each forum //the number is the 'page_id' (actually it's the post id !) if ($bbp_forum_id == 2922) $custom_classes[] = 'fred' ; if ($bbp_forum_id == 2923) $custom_classes[] = 'george' ; } //then this gets merges into the existing wordpress and bbpress classes $classes = array_merge ( (array) $classes, (array) $custom_classes ) ; Return apply_filters( 'rew_body_class', $classes, $bbp_classes, $wp_classes, $custom_classes ) ; } add_filter ('bbp_body_class' , 'rew_add_class') ;
In reply to: Making forums visible to logged-in users onlyThis could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings>Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.
In reply to: Freshness/Voice columnsI can’t see that you implemented this code – is it still there?
do you have FTP access? and if so can you email me
page.php
via contact email in my website
if you do, please post back here, but it will be a theme specific answer – have you checked out all the theme settings to see if you can find something that will turn these off?
Great – thanks for posting
In reply to: Problem with Theme integrationgreat – glad you’re fixed !
suggest you try
In reply to: Visual Composer Override? Please Help noob! :(sorry mot familiar with this plugin, so can offer little help apart from saying that as this is a paid product suggest you contact their support desk.
Presume you fixed this?
it could be done with code, suggest http://jobs.wordpress.net/ if you dontl have the skills, come back if you have good php, and I’ll point you at a file.
In reply to: Manually inserting a topicthe post need to have the forum’s ID in post_parent to link the two
In reply to: Users can’t delete own topics or editbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Topics not showing up in proper forumssuper sticky places a topic at the top of ALL forums, you just want it to be sticky to stay at the top of it’s own forum
and that also answers the other question.
Start the topic in the right forum and just make it sticky
In reply to: Freshness/Voice columnstry adding
# bbpress-forums content-area ul li {
margin-left: 0px !important;
}to your child theme style.css