Forum Replies Created
-
In reply to: Can’t upload avatar image under 451px
great – no problem. Don’t worry about needing to delete this.
In reply to: Can’t upload avatar image under 451pxsince you are uploading avatars, and this is not a bbpress function (bbpress uses gravatar) – I think this is further plugin issue – probably GD.
In reply to: Prefix in the topic namegreat – glad you are fixed !!
In reply to: Prefix in the topic nameok – but something is setting this, and it is related to your live site but not your local site.
can you/have you create several topics and see if it does it each time?
In reply to: Prefix in the topic namesomething is adding ‘teste’ I suggest you look for it.
Copy the theme to your pc, and use the PC to look for the word
In reply to: Hiding bbPress topics from logged out users@zopfan – this code may be useful
//redirect user to log in page if accessing forum from external link add_action( 'template_redirect', 'forum_redirect_from_external_link' ); function forum_redirect_from_external_link() { $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $actual_link = explode('/',$actual_link); if($actual_link[3]=="forums" && !is_user_logged_in() ) { wp_redirect( home_url('your-forum-log-in-page-here') ); exit; } }
In reply to: Hiding bbPress topics from logged out usersThere is a plugin that does private groups – hiding anything and everything as needed, with controls on who can see and who can post and when.
In reply to: disabling anonymous user info remembertested !
In reply to: Closed topicsand 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