Forum Replies Created
-
In reply to: after emigating host get error
Great !!
In reply to: after emigating host get errorgreat – glad you are fixed !
In reply to: Displaying problemsgreat – glad you’re fixed !
In reply to: Displaying problemsTry adding this to your custom css (hopefully your theme has an area to do this)
.quicktags-toolbar .button {
width: initial;
}Robin
In reply to: bbp_author_metabox errorIn reply to: after emigating host get errorSuspect you are using php 7.1
3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6 RC
3. in bbpress 2.5.12 go to /includes/forums/functions.php and 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: 502 Error on all Replies and on Admin Replies Pagehave you been through the actions in my post immediately before yours?
no problem !!
looks fine to me – all quite readable, but it is your site so your call!
play with the following numbers
so overall you might try
/* Change margin */ @media only screen and (max-width: 499px) { /* Change the width of the author column */ #bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author { width: 50px; } /* position the left hand side of the content column */ #bbpress-forums div.bbp-reply-content { margin-left: 70px; } /* hide the avatar */ a.bbp-author-avatar { display: none; } }
In reply to: Search only topics not forum / repliesyes put this in your functions file – untested but should work
add_filter ('bbp_before_get_search_terms_parse_args', 'pluus_amend_search') ; function pluus_amend_search ($args) { $args['post_type'] = bbp_get_topic_post_type() ; return $args ; }
In reply to: Displaying problemstheme css issue I’d suspect
If you mail me a link to a link site and participant access, I’ll take a look
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