Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,176 through 10,200 (of 73,985 total)
  • Author
    Search Results
  • wzshop
    Participant

    Hi,
    So i have this script in my /plugins/bp-custom.php file (see below). I was wondering if it is possible to exclude new posts, from posting them on the activity wall, for a certain category. So that (i.e.) new posts that are posted in category_id 2 are not posted on the wall.

    Any ideas on this?
    Here is my script:

    <?php
    //Listing activity support
    function customize_page_tracking_args_listing() {
        // Check if the Activity component is active before using it.
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
     
        // Don't forget to add the 'buddypress-activity' support!
        add_post_type_support( 'listing', 'buddypress-activity' );
     
        /**
         * Also don't forget to allow comments from the WordPress Edit Page screen
         * see this screencap https://cldup.com/nsl4TxBV_j.png
         */
     
        bp_activity_set_post_type_tracking_args( 'listing', array(
            'action_id'                         => 'new_listing',
            'bp_activity_admin_filter'          => __( 'Post added', 'custom-textdomain' ),
            'bp_activity_front_filter'          => __( 'Post', 'custom-textdomain' ),
            'bp_activity_new_post'              => __( '%1$s added a new post called <a href="%2$s">[post]</a>', 'custom-textdomain' ),
            'contexts'                          => array( 'activity', 'member' ),
            'comment_action_id'                 => 'new_listing_comment',
            'bp_activity_comments_admin_filter' => __( 'Commented on', 'custom-textdomain' ),
            'bp_activity_comments_front_filter' => __( 'Comments on post', 'custom-textdomain' ),
            'bp_activity_new_comment'           => __( '%1$s commented on <a href="%2$s">a post</a>', 'custom-textdomain' ),
            'position'                          => 100,
        ) );
    }
    add_action( 'bp_init', 'customize_page_tracking_args_listing', 1000 );
    function new_listing_include_post_type_title( $action, $activity ) {
    	if ( empty( $activity->id ) ) {
    		return $action;
    	}
    
    	if ( 'new_listing' != $activity->type ) {
    		return $action;
    	}
    
    	preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches );
    
    	if ( empty( $matches[1][1] ) || '[post]' != $matches[1][1] ) {
    		return $action;
    	}
    
    	$post_type_title = bp_activity_get_meta( $activity->id, 'post_title' );
    
    	if ( empty( $post_type_title ) ) {
    
    		switch_to_blog( $activity->item_id );
    
    		$post_type_title = get_post_field( 'post_title', $activity->secondary_item_id );
    
    		// We have a title save it in activity meta to avoid switching blogs too much
    		if ( ! empty( $post_type_title ) ) {
    			bp_activity_update_meta( $activity->id, 'post_title', $post_type_title );
    		}
    
    		restore_current_blog();
    	}
    
    	return str_replace( $matches[1][1], esc_html( $post_type_title ), $action );
    }
    add_filter( 'bp_activity_custom_post_type_post_action', 'new_listing_include_post_type_title', 10, 2 );
    #268338

    Hi guys,

    I have a WordPress MultiSite (With 9 SubSites) where I’m running BuddyPress 2.9.1, with the Multi Blog feature enabled. The problem is, when I try to edit the profile fields, I see that there are several instances of the same First Name and Last Name fields listed there (It looks like 8 sets of duplicates). And because these fields can’t be deleted, I really need some help in fixing this bug and removing these extra fields.

    Has anyone encountered this issue before? Any help would be much appreciated.

    #268327
    JohnDiver
    Participant

    Hey,

    Thanks for the reply.

    I have been trying to get this working but I really am confused, I have used WP on a lot of sites but this is the first time trying BuddyPress.

    I am looking to have my homepage similar to this: http://buddy.ghostpool.com/# but also have sections of content – So it is pretty much having the activity feed – This will be the same for registered and unregistered visitors – Is that possible?

    Thanks again

    #268325
    shanebp
    Moderator

    You can create member types.
    Then you would need to customize the registration form and member profiles per the selected member type.
    These customizations will require good skills as a WP / BP developer.
    You can post a job here.

    #268324
    shanebp
    Moderator

    If you can’t find a migration tool, then you’d need to write one or hire a developer to do so.
    You can post a job here.

    njones7
    Participant

    Title is pretty self explanatory but im doing a false check to see if the profile being viewed is NOT that the one of the logged in user, however this is causing my page layout to become heaps messed up and im not sure why since none of the other code changes. Any ideas on why this is happening or if there is a better way to go about this?

    Wordpress: 4.8.2
    Buddypress: 2.9.1

    #268320
    darunia77
    Participant

    Hello.

    I am able to receive email notifications for all sign ups, logins as an admin of the site, however my users are not receiving BP emails when someone sends them a message or comments on their post. I am using Paid Memberships Pro and Wordfence so perhaps those emails come through those plugins but I also do not receive BP notifications of messages from users – I tested it by creating a separate account.

    This is a new site so I wasn’t aware of the issue previously and I don’t know if it has worked before.

    Any help appreciated. It will be difficult to uninstall all plugins as the site is active.

    I’m using WordPress 4.8.2 and BuddyPress 2.9.1

    #268319
    norvatel
    Participant

    Dear BuddyPress users,

    I am a newbie using BuddyPress and I just read in the codex section that Blogs are only for Multisites installation. An I right?

    Can I have a Blog in a single BuddyPress instalation or do i have to uninstall the current buddypress plugin and start all over again?

    Thanks so much.
    R@N

    binkley50
    Participant

    BuddyPress has been around forever I now have learned and offers a ton of amazing features. It is a powerful social networking plugin for a wordpress website. What if say a friend of mine or (dumb self) started a website and grew a descent group of people using an alternative like peepso or one of the other lesser quality plugins and then realized their stupid mistake and would like to go mainstream with the Fantastic Buddy Press. Is There An Easy Way To Convert To Buddy Press From Peepso?

    Let’s say my friend was running the latest version of wordpress version 4.8.2 and would be installing Buddy Presses latest release. How difficult would it be to have groups and photos and friends lists etc port over to Buddy Press? Is it even doable? I have searched everywhere looking for a way to move from Peepso To Buddy Press with no luck in the docs anywhere.

    Thank you for you support.

    almostsultry
    Participant

    I’ve followed the following a couple of conversations about using the post_author_id to filter posts in a view. Before I jump into BuddyPress with both feet, I’d like to be sure I can accomplish what I’m after:

    I am creating a community site that allows artists of many types to submit their artwork as custom Portfolio posts.

    I have had the worst time finding a way to present the Portfolio posts in a feed filtered by the post_author_id=profile_user_id. In other words, I want to present all the posts by an artist in a custom tab on their own profile page, and have that feed remain the same if someone else views that artist’s profile.

    Please advise if I’m on the right track.

    Thanks,
    Benjamin

    #268316
    Siddharth Pereira
    Participant

    I’ve been on the lookout for a payment plugin that works out of the box directly after a user creates a buddypress account. I dont want him to be able to access any of the BP components until he has made a payment.

    I know many of you are going to say go to S2Member, but I’m hoping there is something new thats out there now. I just need to be able to charge one time payments after the user has signed up. Any pointers?

    I would love to use PMPro but PMPro does not hide BP components like Groups, Activity etc. Anyone have a fix to this?

    Thanks.

    #268313
    Humiges
    Participant

    Dear Buddypress,

    I hope you can help me with this…
    I have just transferred 1000s of comments to articles – of my buddypress wordpress site.

    Those comments, have @mentions in them and users, didn’t receive the notifications about @mentions – which is great! It would be too much (some of them are old ect).

    However, is there any way we can populate those mentions, without any notifications, so they show in their profiles – under mentions? So, they can look back when someone mentioned them?

    Thank you very much 🙂

    #268312
    gertm
    Participant

    2 options I see:
    1) Use hooks on the register.php page like do_action( ‘bp_after_registration_submit_buttons’ ) add_action('bp_after_registration_submit_buttons','your_function');
    function your_function(){
    echo do_shortcode( '' );
    }

    2) Modify register page –> copy wp-content/plugins/buddypress/bp-templates/bp-legacy/members/register.php to wp-content/themes/your-child-theme/buddypress/members/register.php and modify in your-child-theme

    do_shortcode()

    #268311
    shanebp
    Moderator

    You’ll need to write code for a custom search.
    You’ll need good developer skills to do so.
    You can post a job here.

    #268309
    cara94
    Participant

    Hello,

    I have a problem with my buddypress. There are mistakes in the translation, there are english words, although i‘ve chosen german.
    The mistakes are very specific, for example the text: „there were no groups found“ if you click on groups and there aren‘t any. Also in buddypress docs in the Header above the docs (created, last edited,…) and at the bottom of this part „viewing 1-1 of 1 docs“.

    Can somone help me please?

    Thanks and regards
    Julia

    #268307
    agusbagus
    Participant

    Dear Support,

    Could you pls assist me with how to make the buddypress shows full width.
    You can check my web http://team.cekcepat.com/ it used up so many blank space at left right and top space. What i try to achive is it shows full width so that it shows more contents.
    And I also want to remove toolbar for log in and log out users. How to do that.
    Many thanks for your assistance.

    Agus

    #268301
    Dabrem
    Participant

    I have run into an issue and not sure why.

    When I go to edit profile..it shows me the base information of the user. When a member including myself updates any information and then click “Save changes” it takes me to an image in the media. I have deleted the image and tried again. It then just takes me to a different image.

    Also I have two sections. Base and then another. If i go to the other I can edit and save just fine. But if I click to go back to Base from the other page the link of Base takes me to an image.

    Does anyone know what is causing this?

    Wordpress 4.8.2
    Buddypress 2.9.1

    #268299
    abdulbais
    Participant

    howdy,
    em using buddypress in my dating site and i wanna Block/Unblock friend button for members. members can block any user or friend by pressing this button. can any person guide me????
    Thanks a lot in advance..

    #268295
    mixalhs89
    Participant

    Hello,
    How can i translate the label, like Name, of buddypress profile fields with polylang?

    #268290
    bttmrc
    Participant

    Hello,

    I’m bulding a website with LifterLMS and Buddypress.

    Buddypress already offers a few links to create a menu. For example, Achievments, Certificates or forums.

    For example, the URL of the Achievments page is ‘mydomain.com/members/myusername/courses/achievments’

    Any idea how I can achieve this?

    #268289
    JohnDiver
    Participant

    Hey,

    I installed WP manually ( Did it with cPanel first then read that doesnt work ) and then installed buddypress by searching plugins through the wp-admin.

    I activated BP but when I go to the site it is still just a normal default WP install – I looked at the documentation but I must be missing something – Should BP be the default page when I go to the site?

    Thanks for any help

    #268287
    robcnz
    Participant

    Hi there,

    Is it possible to insert animated GIFs into forum posts in buddypress?

    #268282
    shanebp
    Moderator

    These are the BuddyPress forums.
    The bbpress forums are here.

    #268281
    mixalhs89
    Participant

    Hello,
    How can i translate the label, like Name, of buddypress profile fields with polylang;

    #268279
    shanebp
    Moderator

    This is a BuddyPress forum.
    The bbpress forums are here.

Viewing 25 results - 10,176 through 10,200 (of 73,985 total)
Skip to toolbar