Forum Replies Created
-
In reply to: bp activity filter options
presume you’ve also logged this in the Buddypress support forums, as it is more their side
so how would you choose related topics?
In reply to: bbpress notify and role scoper integrationno idea what role scoper does, but notify just notifies a level so will ignore whatever you are doing with role scoper.
you will need to provide a little more in terms of what you are trying to achieve if we are to help
In reply to: Blank bbPress forum pagesgreat – glad you are fixed !
In reply to: Blank bbPress forum pageshave you just fixed your problem?
Just accessed and it went from 0 to having topics as I was looking !
In reply to: New Users Auto Subscribe to One Forumno problem, glad you are fixed !
In reply to: New Users Auto Subscribe to One ForumPsacal’s bbp toolkit does that
In reply to: bbpress topics for posts pluginNot totally sure what you are trying to achieve as I’ve not used this plugin but in
wp-content/themes/flex-mag/style.css
line 3779 has
#comments { display: none; float: left; font-size: 0.8rem; line-height: 120%; margin-top: 30px; overflow: hidden; width: 100%; }
try setting display to visible
you could do this by adding
#comments { display: visible !important; }
to the custom css tag in my style pack plugin that you have loaded
use the private groups plugiun in addition to bbpress
In reply to: 500: post_status no array2.5.13 will apparently be release shortly that will fix this.
In reply to: Auto Role not workinggreat – glad you’re fixed
In reply to: 502 Error on all Replies and on Admin Replies Pageok, thanks – please do come back whatever, so that we can help others
In reply to: Search only topics not forum / repliesgreat – glad you are fixed !
In reply to: API for bbPress forum?Not sure it will be the solution you are after, but try the private groups plugin, which will let you set up different levels of access
In reply to: after emigating host get errorGreat !!
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