Forum Replies Created
-
all the bbpress roles just consist of ‘capabilities’ ie a user can do a, b, and c.
Moderators have more capabilities than participants, so if you change what a moderator can do to make it look like a participant, then you will just go back to the same problem.
Without know what membership privileges and content are affected (my previous question) I can’t help further.
In reply to: One user can leave new topics but NOT replycan you contact me via the contact on my website
In reply to: One user can leave new topics but NOT reply
I have yet another user who this time, no matter what permissions she has, can no longer leave new posts, but CAN leave a reply.
ok, presume you can log in as her and replicate – yes ?
In reply to: One user can leave new topics but NOT replydid/does Katrinah’s fix do anything for you?
In reply to: One user can leave new topics but NOT replyand I would think if a plugin was interfering it would be affecting ALL users, no?
it could be a setting or combination of settings are causing it – it has a cause which once the circumstances are present persists for that user.
In reply to: bbpress private groups plugin breaks blog postsok, can you contact me via my website contact page as I need some info from your site which you may not want to post here
In reply to: bbpress private groups plugin breaks blog postsok, so I have tried with posts and cannot immediately recreate
dashboard>posts>add new and then what to make it happen, and at what point does it appear?
In reply to: bbpress private groups plugin breaks blog postssorry to keep asking questions, but is that adding in the backend or front end? or both ?
In reply to: bbpress private groups plugin breaks blog postsand what version of wordpress, bboress and private groups are you running?
In reply to: bbpress private groups plugin breaks blog postsno, 7.1 is producing 500 errors for some users
Has this error always existed, or is it new? Have you upgraded anything?
As a test are you able to deactivate private groups and see if the error goes away
I get a 500 error when I try to add a new blog post,
Can you give me the exact error please
also gives an error when I try to save or publish a pre-existing draft
can you give me the exact error please
In reply to: bbpress private groups plugin breaks blog postsare you using php 7.1 ?
In reply to: 500: post_status no arraySuspect you are using php 7.1
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6beta-2
3. in bbpress 2.5.12 change line 1851 from
$meta_query = $posts_query->get( ‘meta_query’ );
to
$meta_query = $posts_query->get( ‘meta_query’, array() );
Since the next upgrade will fix that anyway, no issue in changing the bbpress file
best I can offer Iām afraidIn reply to: Adding custom menu widget above all bbPress pagesgreat – the investment of time will pay back!
In reply to: Adding custom menu widget above all bbPress pagesyes there is, but basically it needs you to know what your page template is called
see
item 8 for some more details
In reply to: Auto Role not workingcontributor is a wordpress role, not a bbpress one.
so if you are using the default registration
then
dashboard>settings>general and what is ‘new default user’ set to ?
dashboard>settings>forums and what is ‘auto role’ set to ?
In reply to: Change TinyMCE to not add paragraphshmmm… as I say beyond my area of knowledge but was worth a punt.
If you do fix, please do post the solution here as it will help others in future.
In reply to: Topic Heading not visible on the detail pageok, I’ll try one more time, and then give up.
I know that a title usually appears there.
You stated that it did appear there for you, and now is not.
So you have changed something.
If it is not the plugin, then I cannot help further.
In reply to: Change TinyMCE to not add paragraphsnot my field of expertise, but suggest you have the wp code,
and try
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; $args['quicktags'] = false; return $args; } add_filter( 'bbp_before_get_the_content_parse_args', 'bbp_enable_visual_editor' );
this just does the ‘turn on’ earlier
may work, may not !!
In reply to: UI issue in ../extend/buddypress/groups.phpgreat – thanks for posting
In reply to: UI issue in ../extend/buddypress/groups.phpand if you want to suggest code changes, then this is the place
In reply to: UI issue in ../extend/buddypress/groups.phpI am just a humble user, so can’t comment on changing core code, but is it is styling capability you want you could filter the actual title eg
add_filter( 'bbp_get_forum_title', 'rew_title'); function rew_title () { $title = '<span class="rew">.$title.'</span>' ; return $title ; }
In reply to: No Forum role created for new userusers are assigned their role when they first log in, so you would not see a role on user creation
In reply to: bbPress forum and topic menugreat – glad you are fixed
In reply to: bbPress forum and topic menuok, closest without code would be :
1. go into
dashboard>settings>bbp style pack>breadcrumbs
Leave Disable all forums breadcrumbs UNTICKED
but tick disable on 1, 2, & 3
then put this into
dashboard>settings>bbp style pack>Custom css
.bbp-breadcrumb-forum { border-radius: 28px; padding: 7px 15px; text-decoration: none; background: #3498db linear-gradient(to bottom, #3498db, #2980b9) repeat scroll 0 0 } .bbp-breadcrumb-forum::before { content: "Back to "; }
you may need to play with the background color to get it to suit your website – I’ve given you a blue gradient
In reply to: TTFB problemthink you’re being a tad optimistic š