Search Results for 'bbpress'
-
Search Results
-
Hello, I think this issue has been going on for years, but I dont seem to be able to find that it had been fixed at some point!
I am using wp 5.22 bbpress 2.5.14 and buddypress 4.3.0
It still happens when I use different themes and if I uninstall other plugins.I have hidden buddypress groups which show in the activity stream even if you are not registered or logged in see here
Core women is a hidden buddypress group and should be not visible to anybody except the group members.In bbpress I have a plugin called private groups which also show in the activity stream. You cant enter the forum via the link, but still you see the heading and actually also the text.
I wonder if this problem is because of a false bbp and BP integration? BP doesnt get the info for private/hidden forums?I am very new to this and dont have much experience so please tell me what more information I can give.
Has there ever been a solution to this?
Thank you!Hi,
I have a WooCommerce store with buddypress to give users profiles, social networking capabilities and also bbPress forums. I want to create a subdomain that will have special content for a subscription, separate from the main store. Is it possible to have the buddypress profiles work for both the main site and subdomain with WooCommerce? I am not sure the best way to set this up so users can shop from both stores with 1 account. I assume I need 2 installations of wordpress/woocommerce/buddypress to make it work???
Hello All,
I hope all is well.I am pretty new to this and maybe there is already a way to do or a plugin I missing. May have been discussed before but I don’t even know what to call it.
Is there a way to display a custom field from the buddypress profile under the username in the forum comments just like the default bbpress user roles (i.e. like a box containing a specified field from buddypress profile). For my purpose there is an important peice of profile information I’d like to have follow the user around whenever they make posts. Thanks!
Topic: BuddyPress and bbpress
Hello what happened I saw you are really a gun at WordPress I am at the beginning of building a site I have WordPress installed in it BuddyPress and bbpress I want to leave the plugin of the forum I want it to look less like a forum More like a science board You can comment Once you come to open a discussion you fill type Of the form and it is published as an ad Basically what I want is to change the form at the opening of discussion and design forum in addition to want to hitch the rtl forum. If there is a guide or someone who can help me
The title is essentially it. If I have a hidden group (which I prefer so that people can’t request access to it) then members of that group do not see it listed under “My Groups.” The group is, however, counted in the number badge on the “My Groups” tab.
There doesn’t seem to be any good reason why hidden groups should be hidden from the group members. Is that an anomaly? Is there some way to fix it?
Using WP 5.2.1, Buddypress 4.3.0, bbPress 2.5.14.
Theme is Twenty Sixteen, Version 2.0.Topic: Redirect to a custom tab
Hi.
Im using this code to hide the tabs in the profile’s visitor
function bpfr_hide_tabs() { global $bp; if( class_exists( 'bbPress' ) || bp_is_active ( 'groups' ) ) : if ( bp_is_user() && !is_super_admin() && !bp_is_my_profile() ) { bp_core_redirect( get_option('home') . '/members/' . bp_core_get_user(). '/reviews' ); bp_core_remove_nav_item( 'friends' ); bp_core_remove_nav_item( 'groups' ); bp_core_remove_nav_item( 'activity' ); } endif; } add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );but the line
bp_core_redirect( get_option('home') . '/members/' . bp_core_get_user( ). '/reviews' );dont works.
i tried with this('BP_DEFAULT_COMPONENT','reviews');but this dont works..Thanks very much!!
Topic: Multisite issue
Good Morning,
WordPress 5.2
BuddyPress 4.3.0I’m in the process of creating a multisite which will contain an existing BuddyPress site. Right now I’m just setting up the site. I’ve created a simple top site, then enabled BuddyPress. When I upload bp-custom.php the site starts to throw errors:
The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Warning: Cannot modify header information – headers already sent by (output started at /home/navalw5/XXX.XXXXwargaming.com/wp-content/plugins/bp-custom.php:7) in /home/navalw5/test3.navalwargaming.com/wp-includes/option.php on line 948
If I remove the bp-custom.php these errors go away.
This is the code in bp-custom:
<?
add_action( ‘init’, ‘remove_xprofile_links’ );
function remove_xprofile_links() {
remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 3 );
}
>?
Pretty standard and a direct copy from the production site, I was curious so I just uploaded a blank bp-custom. I still got the errors.I had network activated BuddyPress, so I deactivated and then activated the plugin in the main site.
Still, have the error.
My intention is to have a multisite / BuddyPress installation. where members can be part of several or just one other department of the organization.
site/org1
site/org2
Site/org3each site would have its own groups & forums
All the research seemed to indicate that BuddyPress / bbpress should be network activated.
wp-config. currently looks like:
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘test3.navalwargaming.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
define( ‘BP_ENABLE_MULTIBLOG’, true );I’m confused as to the error, should I be using the child theme’s function.php instead? Any help is greately appreciated.
Thanks
Topic: Mention Autosuggestion
Hello guys so i want a pop up that shows usernames with i press @, i found this plugin that works but when i click the name that i want on the editor, it doesn’t let me space up between the name and the text, i have the skip the link for me to type.
This is the codes in the plugin.
<?php /* Plugin Name: bbp Mentions Suggest Plugin URI: http://www.rewweb.co.uk/mentions_suggest Description: Adds the Buddypress mentions suggest as you type to bbpress topics and replies Version: 1.3 Author: Robin Wilson Author URI: http://www.rewweb.co.uk License: GPL2 */ /* Copyright 2018 PLUGIN_AUTHOR_NAME (email : wilsonrobine@btinternet.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ add_action( 'wp_enqueue_scripts', 'bms_enqueue_submit' ); function bms_enqueue_submit() { $path = plugins_url('bbp-mentions-suggest/js/forum.js') ; //loaded dependent on the buddypress bp-mentions being loaded wp_enqueue_script( 'bms_enqueue_submit',$path, array( 'bp-mentions' )); } add_filter( 'bp_activity_maybe_load_mentions_scripts', 'bms_enable_mentions_in_group_forum_textareas' ); /** * Enable at-mention autocomplete on BuddyPress group forum textareas. */ function bms_enable_mentions_in_group_forum_textareas( $retval ) { $bbpress = false; // Group forum reply. if ( bp_is_group() && 'topic' === bp_action_variable() && bp_action_variable( 1 ) ) { $bbpress = true; } // Group forum topic. if ( bp_is_group() && bp_is_current_action( 'forum' ) ) { $bbpress = true; } // Do stuff when on a group forum page. if ( is_bbpress() ) { $retval = true; } return $retval; }JS
jQuery(document).ready(function($) { /* necessary to get @ mentions working in the tinyMCE on the forums */ window.onload = function() { my_timing = setInterval(function(){myTimer();},1000); function myTimer() { if (typeof window.tinyMCE !== 'undefined' && window.tinyMCE.activeEditor !== null && typeof window.tinyMCE.activeEditor !== 'undefined') { $( window.tinyMCE.activeEditor.contentDocument.activeElement ) .atwho( 'setIframe', $( '.wp-editor-wrap iframe' )[0] ) .bp_mentions( bp.mentions.users ); window.clearInterval(my_timing); } } myTimer(); }; })HELP please
I have my website through a hosting company. Latest version of WordPress and Buddypress. When I preview a theme, Profile works fine. When I accept and publish, profile shows up as a blank page with just the word profile and an edit link.
Groups seem to also work in preview mode. Once published I cannot create a new one with forum, step 3 takes me to the forum list and does not proceed. Attempting to enter a group forum does not allow me in, I end up on the main forum page..
My install of WP is fairly new, Jan 2019. I have tried disabling every plugin except bbpress and buddypress. Uninstalled and reinstalled Buddypress. I am running no redirects of any kind. Anyone out there experienced this and found a fix they could share?
Bonjour
Je suis en train de créer un site, avec un forum et j’ai installé BBPRESS pour le forum,.
Je voulais le lier à BUDDYPRESS pour la connexion, que les nouvelles personnes créent un compte, s’authentifient et je n’arrive pas à faire mon paramétrage.
Quand je vais sur mon site, je n’ai pas de demande de création de compte, de possibilité de se loger.
merci d’avance pour votre aideTopic: Group is not working
Hi
I am using buddypress but not bbpress community for my wordpress network site. When I send group invitation to a user and he clicks on the notification to join it redirects the user to home page of the site.
how can i fix it? i mean how to access groups?Is it a must to use bbpress?
I could hardly arrive here… I have a free version wordPress site and cannot find where to download plugins, as I want to install a forum.
So I cannot install buddyPress nor bbPress!
I cannot even give my version of WordPress as I do not find where it is written… It is from december 2017.
And I could not even log in here with my log in informations from my WP site and had to recreate an account, so I dont even know if I have 2 accounts now, and why the BuddyPress site would not recognize my mail!
Quite discouraging as I used to run an SMF forum, so how much changed in 15 years?!!!