Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 76 through 100 (of 838 total)
  • Author
    Search Results
  • #316125
    jshawpro
    Participant

    Hi.
    I’m having an issue with Groups that causes the activity to show “Load More” instead of showing latest group updates/posts. Filters also do not work for me on group activity stream.

    I have it setup to show the groups Activity feed by default instead of a homepage for the group.

    If set a homepage for the group and then navigate to ‘Activity’ everything works as it should.
    Filters work. However, my requirement is to have latest posts load first by default.

    I’m using Buddypress Nouveau on a custom WordPress theme based on Underscores.

    Any insight or troubleshooting ideas would be greatly appreciated!

    All the best,
    Justin

    Antipole
    Participant

    On my site, I regularly get attempts to log in with user name admin. Presumably, bots trying it on. I have no use name admin for that reason.

    Recently, there are malicious attempts about every minute to log on using actual user names. They get locked out after three tries but I cannot be sure some users have guessable passwords, although I try to prevent that when a password is changed.

    I guess the user names are leaking through the public version of the members’ directory. You can see that here. This public page contains links in the avatar and user handle which contain the member’s user name. I want to retain this publically-viewable directory but need to remove the links when the visitor is not logged on.

    I have my own custom plugin that hooks onto ‘bp_directory_members_item’ and which displays the summary data you can see. Logged-in members see more detail than public visitors.

    I am looking for a way to filter the avatar and displayed name in which I could remove the links to the member’s profile and just display the image and the display name as text, thus hiding the member’s user name.

    Some users have their recent activity displayed and this has a view link to the activity. Although this link is anonymous, if it is followed, it also gives away the user name. Simplest would be to remove the View link for non-logged-in members.

    Any pointers or advice will be gratefully received.

    WP v5.5.3
    BP v6.3.0

    #315814
    jpderboghossian
    Participant

    Hello,
    I installed BP on my site and it was working well. But now, the “standard member front page” is gone. The page where you have your menu items: activity, messages, notifications, friends, groups, etc. What I mean by “standard member front page” is this:

    Example Profile Page

    I don’t understand how this page can disappear. Now when you login the website defaults to a “you’re now logged in as X” page. And if you navigate to the member directory and click on your profile, there is just a list of your friends and groups. No activity, no messages, no notifications tabs.

    In addition to BP, I’m using the Profile Builder plugin, and Profile Builder Customization Toolbox. In the Appearance> customization > BuddyPress nouveau settings, I have selected the enable default front page for member profiles. I also have selected the display the biographical info from the member’s WordPress profile.

    WP version:5.5.3
    BP version: 6.4.0
    Theme: Werkstatt
    website: queerarmenianlibrary.com

    #315685
    highaltitudearcher
    Participant

    Yes yes yes yes … I’ve seen that page. It’s not very descriptive.

    In this 3rd party theme I have, I’ve noticed to support woocoomerce they’ve added the following in page.php in the main template directory:

    
    <?php while (have_posts()) : the_post(); ?>
        <?php if(is_cart() || is_checkout() || is_account_page() || is_wc_endpoint_url()) : ?>
            <?php get_template_part('templates/page', 'woocommerce'); ?>
        <?php endif; ?>
        <?php get_template_part('modules/module', 'loop'); ?>
    <?php endwhile; ?>
    

    So you can see that they’re directing WP to load the WC templates when it’s a WC page type, and to their custom block editor template if it’s not.

    Is there something similar so that I could add the get_template_part() function for the BP page types (e.g. is_members() or is_activity()…)?

    haitianguy
    Participant

    Hello,
    i hope someone can help me because i am driving myself crazy at this point. im fairly new to wordpress and thought that i would give it a shot to try and have the themes custom post “video” show up in the activity stream as well as merge their comments. finding this link in the codex, https://codex.buddypress.org/plugindev/post-types-activities/

    i managed to have this in my bp-custom.php

     function customize_page_tracking_args() {
     
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
     
        add_post_type_support( 'video', 'buddypress-activity' );
     
       
        bp_activity_set_post_type_tracking_args( 'video', array(
            'action_id'                         => 'new_video',
            'bp_activity_admin_filter'          => __( 'Published a new video', 'custom-textdomain' ),
            'bp_activity_front_filter'          => __( 'Video', 'custom-textdomain' ),
            'bp_activity_new_post'              => __( '%1$s posted a new <a href="%2$s">video</a>', 'custom-textdomain' ),
            'bp_activity_new_post_ms'           => __( '%1$s posted a new <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ),
            'contexts'                          => array( 'activity', 'member' ),
            'comment_action_id'                 => 'new_video_comment',
            'bp_activity_comments_admin_filter' => __( 'Commented a video', 'custom-textdomain' ),
            'bp_activity_comments_front_filter' => __( 'Video Comments', 'custom-textdomain' ),
            'bp_activity_new_comment'           => __( '%1$s commented on the <a href="%2$s">video</a>', 'custom-textdomain' ),
            'bp_activity_new_comment_ms'        => __( '%1$s commented on the <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ),
            'position'                          => 100,
        ) );
        
    }
    add_action( 'bp_init', 'customize_page_tracking_args' );
    

    now only some of the activity shows up as there is no thumbnail image or a comment button. i might have misunderstood but i thought this would be all i needed. also i have alread enabled site tracking, indexing and allowed comments everywhere.

    here is the themes cpt registration where var $post_type = ‘video’;:

    
    	function register() {
    		    
    		  
    			register_post_type( $this->post_type, array(
    				'labels' => array(
    					'name' => __('Videos', 'themify'),
    					'singular_name' => __('Video', 'themify'),
    					'add_new' => __( 'Add New', 'themify' ),
    					'add_new_item' => __( 'Add New Video', 'themify' ),
    					'edit_item' => __( 'Edit Video', 'themify' ),
    					'new_item' => __( 'New Video', 'themify' ),
    					'view_item' => __( 'View Video', 'themify' ),
    					'search_items' => __( 'Search Videos', 'themify' ),
    					'not_found' => __( 'No Videos found', 'themify' ),
    					'not_found_in_trash' => __( 'No Videos found in Trash', 'themify' ),
    					'menu_name' => __( 'Videos', 'themify' ),
    				),
    				'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'excerpt', 'comments'),
    				'hierarchical' => false,
    				'public' => true,
    				'exclude_from_search' => false,
    				'query_var' => true,
    				'can_export' => true,
    				'capability_type' => 'post',
    				'has_archive' => 'video-archive',
    				'menu_icon' => 'dashicons-format-video',
    				
    
    "taxonomies"=>array("category"),
    			));
    			register_taxonomy( $this->tax, array( $this->post_type ), array(
    				'labels' => array(
    					'name' => __( 'Video Categories', 'themify' ),
    					'singular_name' => __( 'Video Categories', 'themify' ),
    				),
    				'public' => true,
    				'show_in_nav_menus' => true,
    				'show_ui' => true,
    				'show_tagcloud' => true,
    				'hierarchical' => true,
    				'rewrite' => true,
    				'query_var' => true,
    			));
    			register_taxonomy( $this->tag, array( $this->post_type ), array(
    				'labels' => array(
    					'name' => __( 'Video Tags', 'themify' ),
    					'singular_name' => __( 'Video Tags', 'themify' ),
    				),
    				'public' => true,
    				'show_in_nav_menus' => true,
    				'show_ui' => true,
    				'show_tagcloud' => true,
    				'hierarchical' => false,
    				'rewrite' => true,
    				'query_var' => true,
    			));
    			if ( is_admin() ) {
    				add_filter('manage_edit-'.$this->tax.'_columns', array( $this, 'taxonomy_header' ), 10, 2);
    				add_filter('manage_'.$this->tax.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3);
    
    				add_filter('manage_edit-'.$this->tag.'_columns', array( $this, 'taxonomy_header' ), 10, 2);
    				add_filter('manage_'.$this->tag.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3);
    			}
    		}
    

    the site is https://balalatet.com/activity/ if you’d like to see
    Please help

    #315499
    mkbond
    Participant

    Does anyone know how to incorporate replying to BuddyPress discussions within the activity feed? We are using the BuddyBoss platform and BuddyBoss custom theme.

    We are trying to be a mainly forum/discussion-based site and we don’t use WP comments. So I want to have users be able to just click a “Reply” button in the activity feed to reply right there, versus being redirected to a new page (similar to Facebook’s reply/comments but for discussions).

    We don’t modify the core files, only modify through child theme. We are also running bbPress through BuddyBoss. We have GoDaddy hosting with a LAMP managed server setup.

    WordPress v5.5.3
    BuddyBoss Platform v1.5.3
    BuddyBoss Theme 1.6.0

    #315426
    corsky
    Participant

    Hi

    I’m using buddypress with BP-Nouveau and I’ve noticed that when I disable the custom front page for groups, the search function in the directory is not working, while is working if the custom front page is enabled. It is a bug? or there is another way to make it to work?
    I’ ve disabled all the plugins and I have no custom code, but kept BP-Nouvau and ocean wp theme and still it does not work. Unfortunately the only difference is that the “enabled/disabled custom front pages for groups” determines whether the search works or not.
    When I inspect the “search” in the activity group page the references are different dipending on the enabling of the Custom front pages for groups.
    Here is a link that shows which search buttons do not work : https://www.x-simili.it/booking/

    Thank you so much
    Corrado

    #315376
    fiaso17
    Participant

    Hello,

    actually i’m trying to customize the activity form by adding some combo-boxes under the textarea (only for the homepage)

    i’m using BuddyPress 6.3.0

    This is the first time i’m using (WordPress,PHP,BuddyPress) so could you please help me 🙂

    athep
    Participant

    I have a custom loop on my home page and it gets all activities based on the groups the user is subscribed to, the problem is that while the activity content is correct, the group name and group avatar stay all the same for the last fetched group

    <?php if ( bp_has_activities(bp_ajax_querystring( 'activity' ) . '&action=activity_update&scope=groups' ) ): ?> //this only gives me activity updates only and limits it to the groups I'm subscribed to
     <?php while ( bp_activities() ) : bp_the_activity(); ?>
      <?php bp_group_avatar( ); ?> //this repeats the same group avatar
      <?php bp_group_name(); ?> //this repeats the same group name
      <?php bp_activity_content_body(); ?> //all contents are different and correctly presented
     <?php endwhile; ?>
    <?php endif; ?>

    are there methods I could use for example bp_the_activity_group_name and bp_the_activity_group_avatar?

    merpo
    Participant

    Hello! I’m having a hard time finding a solution to this issue. When I create a subnav tab, the new post/comment box is missing. Any help is appreciated!

    function buddypress_tab() {
        global $bp;
        $parent_slug = 'activity';
        
        //Add 'all activity' subnav item    
        bp_core_new_subnav_item( array( 
            'name'            => __( 'All Activity'), 
            'slug'            => 'all_activity', 
            'parent_url'      => $bp->loggedin_user->domain . $parent_slug.'/', 
            'parent_slug'     => $parent_slug, 
            'screen_function' => 'buddypress_all_activity',
            'position'        => 10
        ) );
    }
    add_action( 'bp_setup_nav', 'buddypress_tab' );
    
    function buddypress_all_activity () {
        add_action( 'bp_template_title', 'buddypress_all_activity_title' );
        add_action( 'bp_template_content', 'buddypress_all_activity_content' );
        bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }

    working
    notworking

    Apparently I don’t know how to attach images.

    renoarnolds
    Participant

    We are using Total WordPress Theme with BuddyPress and everything is working well, except when I post a blog post… the post shows on my activity page with some initial shortcodes showing from Visual Composer…

    [vc_row][vc_column][vc_column_text css=”.vc_custom_1595275549516{padding-bottom: 20px !important;}”]Saturn in Aquarius is the beginning of

    I understood Visual Composer was compatible and not sure why the code is showing.

    Any ideas? Thanks in advance.

    bluesweet
    Participant

    Theme – Cera
    I am still struggling to figure out how to separate the activity streams. I just want each member to have their own activity stream.
    Let me explain…
    I have an activity stream in each members profile page already but..they all share the same feed.
    I want the activity feeds to be separate.
    If I post in members page A then post in members page B – you will have to go to both members pages to see each post. Example- A post stays in A members page
    Please someone help
    I want to learn how to customize this myself.

    bluesweet
    Participant

    Under the users profile picture on their profile page the latest post appears. Why?? I want to remove this. Every time I post a comment in the activity stream under my profile picture on my profile page the comment appears. The creators of my theme told me they do not help with customization.

    I have tried using this CSS code below but it only got rid of the time stamp not the actual latest message.

    You can use custom CSS to hide it
    body.my-activity div#latest-update {
    display: none;
    }

    bluesweet
    Participant

    Under the users profile picture on their profile page the latest post appears. Why?? I want to remove this. Every time I post a comment in the activity stream under my profile picture on my profile page the comment appears. The creators of my theme told me they do not help with customization.

    #311523
    janb
    Participant

    Site is a multisite. On the specific subsite, On the teams page on backend. It is showing all groups from all subsites. I’d like to filter out to show only the groups for that current subsite.

    I have applied this code- http://buddypress.org/support/topic/buddypress-multisite-shared-users-but-segregated-groups-activity-forums/.

    I think the way to achieve this is to add custom query using bp_parse_args to exclude certain group ids. But I wasn’t able to achieve it. Can someone give me an idea or some inputs on how to get this.

    #311285
    Varun Dubey
    Participant

    @onfleekresources

    It can be done with some custom code, or you can also checkout follow plugins.

    1- BuddyPress Private Community Pro plugin that adds a couple of features for admin and it allows admin to select based on user role or member type who can post on activity stream and you can also apply same limits on other BuddyPress features.

    2- You can set some specific members as auto friends to all members, and any activity admin members are going to make will be displayed to all member’s activity page

    #310096
    perihelionweb
    Participant

    I’ve got some custom functions inside bp-custom.php that I want only to appear on the community wide activity page and not in any groups, is it possible to do this?

    #310071
    Daniel
    Participant

    @iamthewebb I found the problem…
    Switching the homepage from Activity to Register blocks the customizer from working.

    Settings > Reading > Static HomePage > Register

    #309983
    Daniel
    Participant

    Hello everyone, my first post here in need of assistance, hope you can help me out.

    My “home” page is the register page for users without login.
    If they are logged in, I want to redirect them to the activity page. Like this example: http://localhost/website/members/USERNAME

    I am using this code for the redirect in bp-custom.php

    <?php
        function bbg_bp_loggedin_register_page_redirect_to( $redirect_to ) {
        if ( bp_is_component_front_page( 'register' ) )
            $redirect_to = bp_get_root_domain() . '/members/USERNAME_HERE';
    
        return $redirect_to;
    }
    add_filter( 'bp_loggedin_register_page_redirect_to', 'bbg_bp_loggedin_register_page_redirect_to' );
    ?>

    This is not working because I don’t know how to add the logged in username to the redirect after /members/USERNAME_HERE

    Thank you in advance,

    MKTGP

    solgris
    Participant

    Hi there, I’m having trouble with getting BP running. This are my stats:

    + WordPress 5.0.8
    + BuddyPress Version 5.1.2
    + Custom Template made by myself from scratch so I have no idea on what WP tags call the BP functions into display
    + I DONT use “the_content()” WP tag on the index because I load my content with the Ajax Load More plugin
    + I DO use “the_content()” WP tag on both -pages- and -single- post view

    I would like to use the “members” BP on my current page template, must I do a hierarchical overload so that buddypress pulls a special template but only for the “members” BP page? because I mean, currently all pages pull the WP hierarchy php “page” files, but members dont seem to appear, maybe I’m lacking a special hierarcy BP “page” file so that BP recognizes it and displays the members table?

    I would also like to use the BP profile on a “single post” template, like when someone presses a “view profile” link then user gets redirected to the profile page with the activity posts of that person, sort of like in facebook the profile page yo know? do I need to create a special php on the BP hierarchy logic so that it can display the profile (cover image, profile pic, extended profile data, posts-activity) inside the WP single page hierarcy template?

    what WP fuction is it that BP uses to display its content? I guess its not “the_content()” right? because I do use that tag but nothing displays…

    I hope I can get some support, I’ll make my best to explain myself if I wasnt being clear enough

    #309882
    arsalanrashid
    Participant

    Currently n the groups activity feed(wall) is the default landing tab for all users. I want to change t to the forum so everyone sees the discussion topics as soon as they land on groups. I have tried many different ways by adding code in the bp-custom.php but most of them are from 6-7 years old and probably not working anymore. They through errors on the top of screen and makes the group navigation un-usable. Does any have a custom code for this? Many Thanks

    reelscene
    Participant

    Hi guys

    I have the Aardvark theme which comes bundled with Paid Memberships Pro and BuddyPress/bbPress.
    WP version 5.3.2, BP version 5.1.2
    I’ve set the site so any non logged-in user goes to a set page, the site is essentially private.

    For some reason, the activity feed on the homepage wall only shows activities when logged in as admin. Any other user gets the message “Sorry, there was no activity found. Please try a different filter.” If they post a status, it’s visible when posted and goes into the database, but refreshing the homepage leads to an empty wall again.

    I’ve only made one recommended tweak to the child theme – redirecting non-logged in users to a “public page”. I can provide the admin login if that helps.

    function my_template_redirect_require_membership_access() {
    if(!is_admin()){
    if ( function_exists( 'pmpro_has_membership_access' ) && ! pmpro_has_membership_access() ) {
    wp_redirect( pmpro_url( 'levels' ) );
    exit;
    }
    }
    }
    
    add_action( 'template_redirect', 'my_template_redirect_require_membership_access' );

    ​​As I don’t know where the problem lies I’m not sure what settings to show you. I’ve tried disabling all of the additional plugins I’ve installed to no avail. Here are the plugins I have installed:

    Aardvark Plugin

    bbP private groups
    This plugin adds private groups to the forums, allocating users to groups, and combinations of forums to those groups, creating multiple closed forums.

    bbPress
    bbPress is forum software with a twist from the creators of WordPress.

    bbPress Notify (No-Spam)
    Sends email notifications upon topic/reply creation, as long as it’s not flagged as spam. If you like this plugin, help share the trust and rate it!

    BP Profile Search

    BuddyPress

    BuddyPress Xprofile Custom Field Types

    Classic Editor

    Coming Soon Page, Under Construction & Maintenance Mode by SeedProd

    Contact Form 7

    Elementor

    Envato Market

    Events Manager

    GD bbPress Attachments

    LayerSlider WP

    Paid Memberships Pro

    Paid Memberships Pro – bbPress Add On

    Paid Memberships Pro – BuddyPress Add On

    Paid Memberships Pro – Mailchimp Add On

    Passster
    Plugin to password-protect portions of a Page or Post.

    Responsive for WPBakery Page Builder

    rtMedia for WordPress, BuddyPress and bbPress

    Sensei Certificates

    Sensei LMS

    Smash Balloon Instagram Feed
    Display beautifully clean, customizable, and responsive Instagram feeds.

    Smush
    Reduce image file sizes, improve performance and boost your SEO using the free WPMU DEV WordPress Smush API.

    Theia Sticky Sidebar

    Transcoder

    Ultimate Reviewer

    UpdraftPlus – Backup/Restore
    Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.

    WooCommerce

    Wordfence Security

    Wordfence Security – Anti-virus, Firewall and Malware Scan

    WordPress Popular Posts

    WP Google Review Slider
    Allows you to easily display your Google Places business reviews in your Posts, Pages, and Widget areas!

    WP-Live Chat by 3CX
    The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.

    WPBakery Page Builder

    Youzer

    I can send a link to a zip file of the settings of the various membership and theme plugins if that helps.

    I understand the issue could be complex but I’m a PHP developer, so if you know of some places I can look in the code or starting points for investigation that would be really helpful 🙂

    Cheers

    #309244
    coolhunt
    Participant

    @ripulkr

    although BP works with any theme.. i often find myself add too much BP specific CSS tweaks in the customizer

    Im trying to keep things as simple as possible and even with twenty seventeen theme – there are some css tweaks that need to happen.

    it makes sense — simply because WP is “blog first” so most content is goofy on how it renders and presents BP pages.

    As far as I can tell buddyboss is the only game in town that does a great job of having clean design and straighforward code.

    my BP-Theme-wish list

    1) BP first *which focuses on great Activity page presentation, Members Directory Presentation & Great Member profiles.

    2) Mobile First approach would be super awesome. Most people view profiles and not necessarily doing actual “activity” post. So if someone can figure out a great way to render fast and beautiful activity/members-directory/member-profiles that is very readable on mobile it would be super awesoome.

    3) Great use of Menus/Accordions — The way BP works right now on members pages is TERRIBLE on mobile. You have scroll past the cover photo -> then pass the Avatar –> then pass 4 menu items to see any content of the users in the Members Profiles page.

    4) Great use of Member Profile Fields — I think by default as a “2 column table layout” to render the profile fields is not great.

    **I totally understand that the newest release of BP has interesting pre-built options but even with the default twenty-twenty theme it doesnt look great.

    Some thoughts..

    — The username in the profile page when too long looks weird and awkward — using CSS to ‘breakword’ is OK.
    — The Profile Field Name should be studied on how to render that well..
    — The Profile Field entries like (text fields, radial buttos, list, etc..) should have a better readable standard implementation like.. *This one is hard because you dont know the exact uses of each unique BP installs..
    — The Menus should be “slidable” on mobile so that the user doesnt have to scroll all the way down to start reading whats on that persons profile.

    *** It would be great if someone (some BP expert) post an Ultimate BP/CSS guide that shows how to target each of the BP specific elements… without doing theme surgery.. like a cut&paste into the CSS customizer –BONUS if it can include media queries 🙂

    anyway.. rant over..

    vsimm63
    Participant

    Hi There,

    I’m a newbie and I haven’t made any custom changes to the core files anywhere but……
    After new members register, then click “policy agreement & complete sign up” they’re taken back to the top of the register page. Also, when I login from website memu, I’m taken to WP login page.

    https://tribely.life
    Web hosting service: Blue Host (windows server)
    WP version: 5.2.4
    WP theme: SocialMag Pro version 1.1.2 by ThemesMatic (Buddypress plugin compatable)
    Buddypress: version 5.0 was added to the theme as a plugin
    NOTE: BP members sorted by personality trates. 69 profile field questions, 3 profile detail questions (standard BP), 3 account detail boxes (standard BP)

    Other Buddypress Add On Plugings (all have been diactivated & website reboot, but problem persists:
    1. Buddypress activity social share: version 2.2.1 by Wbcom Design
    2. Buddypress extended friendship request: version 1.2.0 by Buddy Dev Team
    3. Simple Buddypress profile privacy: version 0.7.9 by Justin Hansen
    4. Social sharing buttons: version 1.0 by ThemesMatic
    5. Paid memberships pro: version 2.1.4 by Stranger Studio
    6. Paid memberships pro-WooCommerce add on: version 1.6.1 by Stranger Studio

    Nahum
    Participant

    Got hit with a curveball when using multisite and putting activity page as static front page.

    I’m seeing the following:

    On a single install, when the activity page is set as the front page, the Edit Page link in the admin bar appears normally.

    On multisite, when the activity page is set as the front page on the main site, the Edit Page link in the admin bar goes away.

    Why is this? I can create back a custom admin_bar_menu Edit Page link for Activity Page on Front but would like to figure out why it dissappears in the first place.

Viewing 25 results - 76 through 100 (of 838 total)
Skip to toolbar