Forum Replies Created
-
In reply to: Profile Page visible to non-logged-in visitors
It should still work.
can you tell, me what your theme is?
In reply to: Users unable to edit forum postsIn reply to: Users cannot edit profileIn reply to: BBpress and theme compatiblityIn reply to: Users cannot edit profileI presume they are logged in already?
In reply to: Forum & Thread Titles Duplicated1. Use mu plugin https://wordpress.org/plugins/bbp-style-pack/ to alter
2. This is a css issue which I am not the person to fix !In reply to: My Forum isn’t displaying correctlyNo, do you have any idea why i can’t see topics below Forum names?
What you are seeing is the list of forums, you then click a forum to see the topics for that forum.
if you want each forum to have then topics below it, then use shortcodes within a page
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]see
https://codex.bbpress.org/shortcodes/
or use the shortcodes from
https://wordpress.org/plugins/bbp-style-pack/ in a page
Also i was wondering how i can order Forums by some hierarchy?
If not using the shortcodes above, then use dashboard>forums>all forums and edit a forum. On the right hand side you’ll see ‘parent’ and ‘order’ boxes that let you build a hierarchy
In reply to: Log In, Register and Lost Password buttonsGreat – glad you’re fixed !
fro anyone looking at this
https://wordpress.org/plugins/bbpress-login-register-links-on-forum-topic-pages/
In reply to: My Forum isn’t displaying correctlyHave you fixed your issue, as the site looks as I would expect it to.
In reply to: bbpress under page/postyou can have a page and then put at the bottom the shortcode
[bbp-single-topic id=$topic_id] – Display a single topic. eg. [bbp-single-topic id=4096]
In reply to: Forum & Thread Titles DuplicatedSorry, been busy with other things – thanks for the reminder.
Having taken a second look, I think boith are coming form your theme, not bbpress.
I can’t hide the first one, as it is also used by other post enturies on the site, so suggest you lose the blue one, for which you need to put the following in your style.css
see
.entry h1 { visibility: hidden !important; }You might need to check that this doesn’t affect anything else – I can’t see that it did – worse case is that you would not see a blue title, so if you have any others in the site this might affect them.
In reply to: Forum & Thread Titles DuplicatedYes, one is from your theme, and one from bbpress.
which one do you want to lose?
In reply to: Change breadcrumb for groupsgreat – thanks for posting.
In reply to: Problem with page title wrappersuggest you refer to the theme provider.
In reply to: How to hide the word “ago” from freshness…try adding this to your functions file
function change_translate_text( $translated_text ) {
if ( $translated_text == ‘%s ago’) {
$translated_text = ‘%s’;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘change_translate_text’, 20 );In reply to: Cutom topic headingsThere is no right term !
This is just a bunch of code in a programme, topic heading is probably the best you’ll get
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 !