Forum Replies Created
-
users get the ‘participant’ role when they first log in (if that is the default role set for them)
so if you set them up, then you will only see subscriber until they have logged in for the first time.
I just registered on your site and got access to the forum fine
In reply to: Sidebar Messed UpI somehow broke the page layout of my topic index and topic pages.
you have done something – the right sidebar is wrapped within the left hand stuff.
Since I don’t know what you have don to muck it up, it’s hard to suggest what to do to fix it.
If you haven’t directly edited anything, then something you have done within wordpress/theme/plugins/updates.
In reply to: Change the Title of the Forum?either put this in your functions file
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { Return 'whatever you want it to say' ; }or create a page called whatever you want it to say, and put this in the content
[bbp-forum-index]In reply to: How to Change Forum Title?either put this in your functions file
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { Return 'Forum' ; }or create a page called forum, and put this in the content, and then point your menu at this page
[bbp-forum-index]In reply to: How to Change Forum Title?like pulling teeth this is – so what’s the custom link linking to?
In reply to: ** PLZ HELP –> BBpress & WooCommerce ProblemsI go to login to my forum and it redirects me to the user dashboard of WooCommerce.
just tried it and it seemed fine – is woocommerce active?
Plus the BBPress toolbar no longer will appear at the top so people can’t see the links to their profile and forums.
not sure quite what you mean by the bbpress toolcar – do you mean the wordpress one?
In reply to: How to change the post order?you’re filtering a different function
Robkk is filtering ‘bbp_has_replies_query’
at worst you should be filtering
‘bbp_before_has_replies_parse_args’
In reply to: Sidebar Messed Upsomewhere you got one too many </div>’s I reckon
In reply to: How do add a restriction access to non-memberset the forum as private
not tested but try adding this to your functions file
add_filter( 'bbp_get_reply_author_display_name', 'rew_display_first_name' 10, 2); function rew_display_first_name ($author_name, $reply_id ) { $reply_id = bbp_get_reply_id( $reply_id ); // User is not a guest if ( !bbp_is_reply_anonymous( $reply_id ) ) { // Get the author ID $author_id = bbp_get_reply_author_id( $reply_id ); // Try to get a display name $author_name = get_the_author_meta( 'first_name', $author_id ); // Fall back to user login if ( empty( $author_name ) ) { $author_name = get_the_author_meta( 'user_login', $author_id ); } // User does not have an account } else { $author_name = get_post_meta( $reply_id, '_bbp_anonymous_name', true ); } // If nothing could be found anywhere, use Anonymous if ( empty( $author_name ) ) $author_name = __( 'Anonymous', 'bbpress' ); // Encode possible UTF8 display names if ( seems_utf8( $author_name ) === false ) $author_name = utf8_encode( $author_name ); return apply_filters( 'rew_display_first_name', $author_name, $reply_id ); }ok, as a paid theme, suggest you contact the theme authors for help
In reply to: bbpress two forums on one website?it would be good to put how you solved this to help someone googling in future.
In that way you out something back into the community.
these sortcodes are theme(or other plugin) related, not bbpress.
what theme are you using?
In reply to: How to Change Forum Title?so if you go into
dashboard>appearance>menus
what is being called – a link, a page a post or what?
In reply to: Font color of REPLY|#post numbersuggest you try :
and come back with any remaining issues.
I’ve reduced you queries to this one
In reply to: Unstructured HTML topic page.again looks fine – I’ve removed links in case you are just spamming this site to get backlinks
In reply to: Unstructured HTML topic page.all looks good to me – do you still have an issue?
In reply to: How to Change Forum Title?sorry, getting a bit fed up with music being played every time I click anything on your site !! interesting once, gets horrible very quickly.
so in the menu on forum, what is being called – a link, a page a post or what?
In reply to: How to Change Forum Title?possibly you have a page called forums?
In reply to: How to Change Forum Title?dashboard>settings>forums>and change the forum root slug (and single forum slug if you wish)
In reply to: Add Parent forum class to reply form on posts.ok, thius could be a complex answer, so lets try
can you give me the html immediately before and after ONE example of where you would like this
In reply to: Participants can’t read postsPlugins
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.
In reply to: Roles for specific forumsorry I couldn’t help more
In reply to: Roles for specific forumyour theme is doing extensive bbpress changes.
It has a file at
which is turning off and on all sorts of things.
Sorry, but I can only suggest you contact the theme author to see if he can help
In reply to: Add Parent forum class to reply form on posts.can you post precisely where you want this? a section of html would be useful