Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 76 through 100 (of 831 total)
  • Author
    Search Results
  • #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.

    #308632
    emskinner
    Participant

    Hello,

    I am wondering if and how I can make a custom activity post.

    Say for instance I want a user to be able to go to the main activity page, and instead of clicking on video or image etc they click on create ad, then below would be a form that would either integrate with one of the ad’s plugins where they could create the ad there vs having to go to another page to do it. Or maybe they want to post their lost pet so they would click on “post flyer” and below would open a form to fill out and then it would create a custom post of the photo of the lost pet and all the information; on another page you could list all of those custom posts like a common board. My goal is to allow the user to utilize as much of the site directly from the activity/group etc as possible. Thank you in advance!

    #308271
    Mathieu Viet
    Moderator

    Hi,

    First I’m sorry to read about these issues. I’ve just tested the first item of your list with latest BuddyPress, WordPress and Twenty Nineteen theme.

    I confirm that when I’m on the activity page of an hidden group and after scrolling down to load more activities, only the activities of this group are displayed.

    Have you tried to deactivate all plugins except BuddyPress, remove custom code, and switch to a Twenty “Something” theme to see if you still had the issue?

    About 404 on posts page, is it when you click on a the link of an activity relative to a page (meaning you activated the Site Tracking component and added some custom code to track the page post type) ?

    About BuddyBoss Media, have you tried to reach their support team ?

    FYI, this support topic explains how you can trouble shoot in case of issues, I advise you to read it.

    #307581
    colingdi
    Participant

    Hi folks,
    (sorry only noticed yesterday this went into wrong forum section – would edit but clicking that option put me back on the home page?)
    Could someone tell me if there is a delay or check system in posts to groups within Buddypress or what would cause intermittent delays.

    Scenario:
    Posted group updates for the past hour from 3 accounts intermittently. For the first hour the only posts visible on each users group activity view was their own posts (and any historical from last month).

    Then after 45- 60 minutes all posts became visible (i.e. expected behaviour) and all new posts posted after that point were visible.

    —–
    I can’t see how there would be a delay and then no delay, the activity feed I used was the base code with all customizations removed. I’m at a loss to figure it out and it’s so strange I’m doubting myself but this isn’t the first time this has happened (hence the testing that revealed this anomoly).

    #307484
    Babak Fakhamzadeh
    Participant

    I can call a custom template for my custom page like so:

    function my_new_group_show_screen_content() {
    	echo bp_buffer_template_part( 'groups/group-custom', null, false );
    }

    Then, just for testing, on that template, I record a visit to that page as an activity, like so:

    	$defaults = array(
    		'user_id' => '1',
    		'action' => 'A user just visited the custom page.',
    		'content' => 'It was considered a good time.',
    		'primary_link' => '',
    		'component' => 'groups',
    		'type' => 'naming',
    		'item_id' => $bp->groups->current_group->id,
    		'secondary_item_id' => get_current_user_id(),
    		'recorded_time' => gmdate( "Y-m-d H:i:s" ),
    		'hide_sitewide' => '0'
    	);
    
    	extract( $defaults );
    	
    	$r = bp_activity_add( array( 'user_id' => $user_id, 'action' => $action, 'content' => $content, 'primary_link' => $primary_link, 'component' => $component, 'type' => $type, 'item_id' => $item_id, 'secondary_item_id' => $secondary_item_id, 'recorded_time' => $recorded_time, 'hide_sitewide' => $hide_sitewide ) );

    So, I could now allow for the creation of instances of my_cpt on this custom page. When adding this instance to the WP database, I also store the group for which it was created. Then, on this custom page, I could show a list of all instances created for this group.
    And, when this instance has been created, I can save an activity connected to this group.

    michaeljcheney21
    Participant

    Ive tried multiple times with different usernames and emails but the registration page is not working;

    Register

    1. Which version of WordPress are you running?

    WordPress 5.2.2

    2. Did you install WordPress as a directory or subdomain install?

    no, on the root

    3. If a directory install, is it in root or in a subdirectory?

    root

    4. Did you upgrade from a previous version of WordPress? If so, from which version?

    no

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.

    yes

    6. Which version of BP are you running?

    Version 4.4.0

    7. Did you upgraded from a previous version of BP? If so, from which version?

    no

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    Akismet Anti-Spam
    Activate | Delete
    Used by millions, Akismet is quite possibly the best way in the world to protect your blog from spam. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.

    Version 4.1.2 | By Automattic | View details
    Select bbPress
    bbPress
    Deactivate | Settings | About
    bbPress is forum software with a twist from the creators of WordPress.

    Version 2.5.14 | By The bbPress Community | View details
    Select BuddyPress
    BuddyPress
    Deactivate | Settings | Hello, BuddyPress!
    BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!

    Version 4.4.0 | By The BuddyPress Community | View details
    Select Contact Form 7
    Contact Form 7
    Settings | Deactivate
    Just another contact form plugin. Simple but flexible.

    Version 5.1.4 | By Takayuki Miyoshi | View details
    Select Envato Market
    Envato Market
    Deactivate
    WordPress Theme & Plugin management for the Envato Market.

    Version 2.0.1 | By Envato | Visit plugin site
    Select Featured Image from URL
    Featured Image from URL
    Activate | Delete
    Use an external image as Featured Image of your post/page/custom post type (WooCommerce). Includes Auto Set (External Post), Product Gallery, Social Tags and more.

    Version 2.6.0 | By Marcel Jacques Machado | View details
    Select Google Captcha (reCAPTCHA) by BestWebSoft
    Google Captcha (reCAPTCHA) by BestWebSoft
    Settings | Deactivate
    Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).

    Version 1.51 | By BestWebSoft | View details | Settings | FAQ | Support
    Select Hello Dolly
    Hello Dolly
    Activate | Delete
    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    Version 1.7.2 | By Matt Mullenweg | View details
    Select Leadpages Connector
    Leadpages Connector
    Deactivate
    Connect your Leadpages account to your WordPress site to import Leadpages and Leadboxes

    Version 2.1.6.21 | By Leadpages | Visit plugin site
    Select OptimizePress
    OptimizePress
    Deactivate
    OptimizePress is the essential plugin for marketers. Create squeeze pages, sales letters and much more with ease.

    Version 2.5.21 | By OptimizePress | Visit plugin site
    Select Post Views Counter
    Post Views Counter
    Settings | Deactivate
    Post Views Counter allows you to display how many times a post, page or custom post type had been viewed in a simple, fast and reliable way.

    Version 1.3.1 | By Digital Factory | View details | Support
    Select Socialize Plugin
    Socialize Plugin
    Deactivate
    A required plugin for Socialize theme you purchased from ThemeForest. It includes a number of features that you can still use if you switch to another theme.

    Version 3.10 | By GhostPool
    Select The Events Calendar
    The Events Calendar
    Deactivate | Settings | Calendar
    The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.

    Version 4.9.7 | By Modern Tribe, Inc. | View details | Support | View All Add-Ons
    Select Theia Sticky Sidebar
    Theia Sticky Sidebar
    Deactivate
    Glues your website’s sidebars, making them permanently visible while scrolling.

    Version 1.8.0 | By WeCodePixels | Visit plugin site
    Select Visual Sidebar Editor
    Visual Sidebar Editor
    Deactivate
    An addon that allow you to use WPBakery Visual Composer or wordress editor to override sidebars

    Version 1.2.5 | By ERROPiX | Visit plugin site
    Select WishList Member™ 3.0
    WishList Member™ 3.0
    Deactivate
    WishList Member™ 3.0 is the most comprehensive membership plugin for WordPress users. It allows you to create multiple membership levels, protect desired content and much more. For more WordPress tools please visit the WishList Products Blog. Requires at least WordPress 4.0 and PHP 5.4

    Version 3.0.6282 | By WishList Products | Visit plugin site
    Select WordPress Automatic Plugin
    Wordpress Automatic Plugin
    Deactivate
    WordPress Automatic posts quality articles, Amazon products, Clickbank products, Youtube videos, eBay items, Flicker images, RSS feeds posts on auto-pilot and much more.

    Version 2.3.3 | By Miled | View details
    Select WPBakery Page Builder
    WPBakery Page Builder
    Settings | Deactivate
    Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.

    Version 6.0.5 | By Michael M – WPBakery.com | Visit plugin site
    Select Yoast SEO
    Yoast SEO
    FAQ | Premium Support | Settings | Deactivate
    The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.

    9. Are you using a standard WordPress theme or customized theme?

    Socialize Child Theme

    10. Which theme do you use ?

    Socialize Child Theme

    11. Have you modified the core files in any way?

    no

    12. Do you have any custom functions in bp-custom.php?

    no

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?

    built in i think

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress

    dont think i have these – just cant get registered as a pretend user on the registration page

    15. Which company provides your hosting?

    D9

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?

    Apache i think

    17. Which BP Theme are you using?

    dont know

    18. Have you overloaded any BuddyPress template files.

    no

    19. Any other site customisations that might have a bearing on the issue?

    no

    #307411
    storyparlor
    Participant

    Hello

    I just installed and activated BP on my site. I am a little confused though. As soon as I activated BP plugin it created a bunch of pages. That’s fine, I get all that. As of activation though something else occurred that I don’t understand.

    It appears that BP auto created a menu with the pages Members and Activity on my site. I can’t find that menu to move it or customize it. My theme has no menus created (it’s a fresh WP site I am just starting.)
    How do I get those pages to disappear, or to be able to move them? I can’t even add the other BP pages to that menu because there isn’t one.

    Any help or clarification would be much appreciated.

    Thanks,
    storyparlor.com

    #307366
    colingdi
    Participant

    Hi,
    So we want to output a custom message in activity loop if the user is accessing from a group they are not a member of. Currently it outputs “Sorry, there was no activity found. Please try a different filter.” which isn’t intuitive as to why they can’t see anything. My code based on other googled answers is fairly simple though ineffective.

    
    if (bp_is_page( BP_GROUPS_SLUG )) {
                    echo ("request to join group to see feed");
                }
    

    Have I missed something? As nothing outputs at all.

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