Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,801 through 5,825 (of 94,540 total)
  • Author
    Search Results
  • #306690
    nataliapaananen
    Participant

    Hi! I am using Buddypress Nouveau template and it has preview -feature when clicking on new message thread.

    How can I disable this function?

    I know I could change to legacy but I want to use Nouveau template.

    I am using these versions:
    Wordpress: 5.2.2
    Buddypress: 4.3.0

    Many thanks in advance!

    friedli
    Participant

    I have a multilanguage website German & French. When I register a user on the French version, I get the french text by mail but the link for activating is the one from the German version. So when the user wants to activate his account he sees the wrong language after clicking on the url.

    How can this be changed? It’s about this token %7B%7B%7Bactivate.url%7D%7D%7D

    #306687
    ZolTech.co.il
    Participant

    found it 🙂

    Paid Memberships Pro – BuddyPress Add On

    thanks alot

    joshreid
    Participant

    Hi I am using BuddyPress on my site. When a member searches for other members on the BuddyPress search bar the other users show up, but so do the affiliate members. I was wondering is there a way for the affiliates not to show up in this search. They are a different user group in the back end of my wp site, I thought maybe it could be down this way. Thanks very much for your time thanks.

    #306684
    Nahum
    Participant

    I always reference this https://buddypress.org/support/topic/choosing-activity-stream-information/ but maybe something like, untested

    add_filter( 'bp_before_has_activities_parse_args', function( $args ) {
    	
    if(bp_is_current_action( 'groups' )) {
    
     $args['object'] = array('groups');
    
    } else {
    $filter_query = array(
    		array(
    			'column' => 'type',
    			'value' => array( 'group_action_1', 'group_action_etc' ),
    			'compare' => 'NOT IN',
    		),
    	);
    
    	$args['filter_query'] = $filter_query;
    }
    
    	return $args;
    } );
    #306682
    shanebp
    Moderator

    If you can reach the groups page when you are logged in, then some code in your theme or a plugin is restricting that page to only loggged in users.
    You need to find the source of that restriction.
    BuddyPress does not include that restriction.

    Aron Prins
    Participant

    Hey everyone,

    I’m trying to remove group related activity from the “Everything”, but keep it under the my groups tab but can’t find a way to do it on the forums. I found this https://buddypress.org/support/topic/disable-group-posts-from-main-activity-stream/ but this also removes it from the my groups tab 🙁

    Does someone perhaps have a snippet laying around or can point me in the right direction to check which tab is selected?

    Thanks,
    Aron

    coolhunt
    Participant

    I use buddyboss and I LOVE what they do…

    but.. im a little nervous .. with the change over.

    Its worth pointing out that there OUTSTANDING themes are still available for normal buddypress..

    allnamestaken
    Participant

    there is a buddyboss platform plugin designed to replace buddypress and bbpress.

    buddyboss platfofm plugin is free. Theme cost money. Plugin is hard to find… look at the top left corner is says free download.

    shanebp
    Moderator

    I saw that announcement. Does their ‘platform’ include all of BuddyPress or just the templates?
    Themes often include the BP templates as overloads but not the component classes.
    If it is a fork then it would be the first commercial fork, afaik.

    #306660

    In reply to: User Feedback Buttons

    Prashant Singh
    Participant

    It’s very strange. I can see it perfectly fine with just BuddyPress and Twenty Nineteen theme activated. Can you please try changing the theme to twenty seventeen and then check if it is coming there?

    #306659
    Prashant Singh
    Participant

    Please have a backup first and then try deactivating plugins except for BuddyPress.

    schossie
    Participant

    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!

    allnamestaken
    Participant

    Not sure what to use… its called buddyboss platform.

    #306638
    chris19731973
    Participant

    Hello,

    I have installed BuddyPress and a Classified ads plugin, There is no link/relation between this Classified and BP …
    On the single listing pages of the classified ads, I would like to add a link “VIEW (author USERNAME) PROFILE”.
    When visitors will click on this link, then they will be redirected to the bp profile page of the author who post the listing.
    Please I need codes or a plugin to add a link to BP page.

    Thanks in advance,

    Chris

    #306633
    metalhead
    Participant

    Envato Market has a $20 plugin that claims to “add upload avatar to registration page.”

    It adds it to the registration page, but the avatar doesn’t get saved; it’s a scam.

    Never buy anything for your Buddypress site from Envato Market – I made a $20 mistake by not reading about the company first.

    Listen to Venutius; he is totally correct about what your pluggable options currently are. (Unless you create your own plugin, finding a way to temporarily save the image until after the account is created, and then associate it to the profile, but good luck with all that!)

    #306624
    salvatore77
    Participant

    I have created my custom component for custom notifications, but id doesn’t work. This is the code:

    <?php
    /**
     * Class to serve notification Calls.
     *
    
     */
    
    	class MyPlugin___Notifications extends BP_Component {
    
    	    protected $component_name = 'MyPlugin__';
    
    		/**
    		 * Constructor.
    		 *
    		 * @since    1.0.0
    		 * @access   public
    		 * @author   Wbcom Designs
    		 */
    		public function __construct() {
    			$this->slug = $this->component_name;
    
    			parent::start(
    			    $this->component_name, esc_html__( 'Custom', 'bp-MyPlugin-Custom' ), dirname( __FILE__ )
    			);
    
    			buddypress()->active_components[ $this->component_name ] = '1';
    			
    		}
    		
    
    		public function setup_globals( $args = array() ) {
    			parent::setup_globals(
    				array(
    					'slug'                  => $this->component_name,
    					'has_directory'         => false,
    					'notification_callback' => 'MyPlugin_custom_format_buddypress_notifications',
    				)
    			);
    		}
    
    		public function setup_actions() {
    			parent::setup_actions();
    		}
    		
    		public function add_MyPlugin_notification_format($action, $item_id, $secondary_item_id, 
    		                                                      $user_id, $format = 'string' ){
    		    global $wpdb;
    		    if ( bp_is_active( 'notifications' ) ) {
    		        if ( 'custom_action' === $action ) {
    		           //there is a php code
    		            return $return;
    		        }
    		    }
    		}
    
    		public function component_name() {
    			return $this->component_name;
    		}
    	}
    
    function init_MyPlugin___notifications_component(){
        buddypress()->MyPlugin___notifications =  new MyPlugin___Notifications();
        buddypress()->MyPlugin___notifications->notification_callback = 'MyPlugin_custom_format_buddypress_notifications';
       
    }
    add_action( 'bp_init', 'init_MyPlugin___notifications_component', 40 );
    
    add_filter( 'bp_notifications_get_notifications_for_user', 'MyPlugin_custom_format_buddypress_notifications', 10, 5 );
    
    function MyPlugin_custom_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
        $return = buddypress()->MyPlugin___notifications->add_MyPlugin_notification_format( $action, $item_id, 
            $secondary_item_id, $total_items, $format);
    }
    
    
    snorklebum
    Participant

    The core functionality is provided by BuddyPress and Events Manager.

    Additional :-
    BuddyPress Group Email Subscriptions
    BuddyPress Sitewide Activity Widget
    Comment Mail
    Comments Widget Plus
    Events Manager – Email Users
    Newsletter – Events Manager Integration

    Although obviously your needs will vary depending on what you are attempting to achieve.

    shanebp
    Moderator
    salvatore77
    Participant

    How can I make new custom notifications for a user using the buddypress system?

    #306614
    alexanderdean
    Participant

    @rjbury – I didn’t find a fix and I can’t remember my exact workaround… Actually, I can’t even remember what project this was for… I think I just removed (or hid with css) the BuddyPress logout menu point and added my own with something like this: https://hostpapasupport.com/add-wordpress-log-link-menu/

    Anonymous User 13716511
    Inactive

    Is there a way to add BuddyPress type comments – use of @username, like, add image etc to a regular wordpress blog post (ie not in the activity stream).

    pathosmusic
    Participant

    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???

    #306609
    b7lanca2
    Participant

    Hi All,

    I need to create dependent field in buddypress Xprofile field registration form like below:

    Category(Type:Select)
    * Artist
    * Designer
    * Other

    SubCategory(Type:Select) dependent on above category field:

    for Artist: ->dancer
    ->singer
    ->musician

    Designer: ->photography
    ->decoration

    subcatgory value dependent on Category value..

    can any one guide me right path to do this.

    #306606
    lahddah
    Participant

    I know this has been asked and resolved before, but none of the solutions have worked for me. When I look at the members page – either while logged in as admin, or logged in as a different registered user – the members page is not finding any members.

    I’ve tried adding the php that changes the ‘last activity date’ to the functions.php file, then the bb-custom.php file. Neither changed a thing.

    Is there anything else I should try? The Buddypress plugin came as part of a theme I purchased. Their support suggested I try to disable plugins, then enable the bp plugins to see if they work. Is this a correct way to go? It seems like a lot of people have this same issue, so I’m hoping the fix is something simple.

    Thanks.
    Laura

Viewing 25 results - 5,801 through 5,825 (of 94,540 total)
Skip to toolbar