Forum Replies Created
-
In reply to: bbpress sidebar
Hi,
Also read item 26 of https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/
Pascal.Hi,
Did you check item 26 in the codex ? https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/
Pascal.In reply to: posts_per_page filter not working on paginationHi,
You probably have reply threading activated, threaded replies has no pagination so it shows all the replies on one page.
See ‘Settings > Forums’Pascal.
In reply to: Cleaning Up Forum Sub-ForumHi,
Make your choice:
1. Check item 1 and 2 from https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/
2. Install my ‘bbP Toolkit’ plugin.Pascal.
In reply to: Responsive IssueHi,
That’s just some CSS. Is it a public forum ? please post a link.
Pascal.In reply to: Help with custom bbpress Like/Dislike pluginHow about using bbp_get_reply_id ? I think that one is not echoing…
Pascal.
In reply to: Best bbpress polls pluginMake sure you are logged-in ! I was able to click a button, but my vote is not valid and the results are shown.
Pascal.In reply to: Setup login for private forum?Hi,
Check out ‘Peter’s Login Redirect plugin’.
I saw somebody also using this (but did not test myself):
function login_redirect( $redirect_to, $request, $user ){ return home_url('forums'); } add_filter( 'login_redirect', 'login_redirect', 10, 3 );
Pascal.
In reply to: Change Breadcrumb url link@robin-w : Dutch, not Danish 🙂
@adri-oosterwijk : Goedemorgen. I have been looking for you on the Dutch slack but didn’t find you. I have myself a WPML instance with 3 languages and I will have to think of this myself soon, so keep monitoring this thread as I might come back to you with possibilities in the next weeks.Pascal.
In reply to: remove ‘Viewing x posts – x through x (of x total)’If that is the only thing you want to remove, then the above CSS is the best. If you want more options, you can always have a look at my bbP-Toolkit on https://wordpress.org/plugins/bbp-toolkit/
Pascal.Hi,
Would any of my answers here help ? https://bbpress.org/forums/topic/setup-login-for-private-forum/In reply to: Bbpress on multisite helpHi,
I have a multisite but the subsites have nothing to see one with the other.
To my knowledge every subsite is independent when talking users. Have a look at this (old) topic but that seems to explain it quite wel : https://wordpress.org/support/topic/share-user-across-multisite-network?replies=30
Pascal.In reply to: Sharing voice messagesHi,
I’m not aware of anything that would upload voice messages directly.
For uploading files (like a .wav or .mp3), the 2 products I know of are ‘GD bbpress Attachments’ and ‘bbPress Multi Image Uploader’. Have a look if it would fit your needs.If you use BuddyPress as well, then there is also ‘BuddyPress Forum Editor’.
Pascal.
In reply to: Freshness URLs BrokenHi,
There were major pagination issues in WP 4.4.1.
WP 4.4.2 has corrected that.Could you please upgrade to that version if not yet done ?
Thanks,
Pascal.In reply to: Locating Forum Main PageI see about 10 forums now, so I suppose you found it…
Pascal.In reply to: Bbpress on multisite helpSubsite ? So you will have different users there, right ?
A user created in one site is not created automatically in the other site… or I miss something here ?Pascal.
In reply to: Locating Forum Main PageDid you create any page (also look in drafts and trash) that has a /forums slug ?
If you nowhere have a page with that slug, that bbPress should default to /forums to show the existing forums (don’t forget to create at least 1 public forum to see the list)Pascal.
In reply to: Forums Page LayoutHi Brandi,
Did you pay for the theme ? Then get back to the theme authors, they should be able to help you !
If not, look around in your Admin Panels if under ‘Appearance’ you can somewhere add extra CSS
Pascal.
In reply to: Activity Stream Privacy Issue1) Activity stream
I suppose you talk about the BuddyPress activity stream here ?
If so, maybe this code could get you started (found it on the BuddyPress forum). It will block ALL new topics/replies, so if you tune that to your private forums, it could be what you are looking for.// Filter bbPress from updating activity stream function imath_activity_dont_save( $activity_object ) { $exclude = array( 'bbp_topic_create', 'bbp_reply_create'); // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function if( in_array( $activity_object->type, $exclude ) ) $activity_object->type = false; } add_action('bp_activity_before_save', 'imath_activity_dont_save', 10, 1 );
2) To limit access to /forums, create a page with the slug /forums and add in that page what you want (a bbPress shortcode or just text). The creation of this page will prevent the standard forum index page to come up. Of course using any ‘members’ plugin, you could then e.g. make sure only admins could access.
Pascal.
In reply to: Private Forum Redirect PageHi,
Check my responses for https://bbpress.org/forums/topic/setup-login-for-private-forum if it helps.
Pascal.In reply to: Setup login for private forum?Or you could use a redirection plugin like mentioned on this page: https://premium.wpmudev.org/blog/wordpress-404-plugin/
Hope it helps…
Pascal.In reply to: Setup login for private forum?Different options then. You could try the below code in your 404.php file:
<?php $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $actual_link = explode('/',$actual_link); if($actual_link[3]=="forums") { ?> <h2 class="article-title"><?php _e( 'This forum is private. Please login to access this forum' ); ?></h2> <?php } else {?> <img src="<?php echo get_template_directory_uri();?>/assets/images/404_image.png"><br>
Hope it helps…
Pascal.In reply to: Activity Stream Privacy IssueHi,
The error you are referring to is BuddyPress (bp_) and not bbPress (bbp_), so you might have a try on their forum…Pascal.
I found this old article: http://teqsnacks.com/2009/05/18/moving-multi-author-wordpress-blog-import-export-users/
Or use this plugin: https://github.com/pippinsplugins/bbPress-Export-and-Import
Pascal.
In reply to: Setup login for private forum?Hi,
To fix when the user logs out, you could use this code. Add it into your functions.php and change $url to whatever you want as page.
function casiepa_logout ($redirect_to) { $url='/forums/' ; $redirect_to = '<a href="' . wp_logout_url( $url ) . '" class="button logout-link">' . esc_html__( 'Log Out', 'bbpress' ) . '</a>' ; return $redirect_to ; } add_filter ('bbp_get_logout_link', 'casiepa_logout') ;
Pascal.