Forum Replies Created
-
In reply to: Closed topics
and look at the topic permissions
This will allow you to set users to be able to create topics, but not reply
In reply to: Sidebar widget text issues.great – glad you are fixed !
In reply to: Sidebar widget text issues.if you mean the login , then put this into the custom css of your theme
#sidebar .bbp-login-form label { width: 120px !important; }
In reply to: Admin / Mod access to forum root?not totally sure if this will help but
In reply to: White screen of death when deactivate bbpressno problem – glad you are fixed
In reply to: White screen of death when deactivate bbpressmost likely your theme or another plugin is expecting bbpress to be there.
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 twentyfifteen, and see if this fixes.
In reply to: Fatal Errorthe error is in a plugin you have called ‘op-bbpress-fix-master’ which presumably is related to optimise press, so suggest you start there
no problem, it’s far from obvious !!
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