Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 337 total)

  • Nahum
    Participant

    @nahummadrid

    Definitely looking forward to that.


    Nahum
    Participant

    @nahummadrid

    Sounds like something is messing with the default behaviour then. Personal activity updates would never appear in any group unless it was “post in group”, vs “post in profile”

    Do you have a filter or plugin already set to do private sitewide activity stream?

    “Activity Stream for friends only” & “Currently, I have the privacy option the restrict each post to Public, Friends and Only me. But the Group code you gave me only works if I set the privacy to public.”


    Nahum
    Participant

    @nahummadrid

    @naomibuch I think I see what you are saying.

    Private group activities are appearing in the sitewide feed? Is that right?


    Nahum
    Participant

    @nahummadrid


    Nahum
    Participant

    @nahummadrid

    You might just over load members/single/parts/item-nav.php and members/single/parts/item-subnav in your child theme and just remove all the navs or replace them with something of your own.

    you could keep searching forums for topics on removing tabs there are some “solutions” to removing tabs.

    https://buddypress.org/support/search/bp_core_remove_nav_item/


    Nahum
    Participant

    @nahummadrid

    over riding that file in child theme with what i mentioned above is what i am sticking with currently at least for my purposes.


    Nahum
    Participant

    @nahummadrid

    you could edit the /forum to “topic” or “discussion” in the settings no? same for /forums can be something different as a page name.

    or might this be it? https://bbpress.org/forums/topic/how-to-remove-forum-from-url/


    Nahum
    Participant

    @nahummadrid

    Edit timed out on me up there and didn’t get to revise my reply in time!

    /buddypress/activity/post.form.php, overload it child theme

    /*
     * Template tag to prepare the activity post form checks capability and enqueue needed scripts.
     */
    
    if( bp_is_group() && !current_user_can('administrator') ) {
    
    } else {
    
    bp_nouveau_before_activity_post_form();
    ?>
    
    <h2 class="bp-screen-reader-text"><?php echo esc_html_x( 'Post Update', 'heading', 'buddypress' ); ?></h2>
    
    <div id="bp-nouveau-activity-form" class="activity-update-form"></div>
    
    <?php
    /*
     * Template tag to load the Javascript templates of the Post form UI.
     */
    bp_nouveau_after_activity_post_form();
    
    }
    
    

    Nahum
    Participant

    @nahummadrid

    @meisinotti you can restrict the post form to admins depending on what template pack you use… you could set something like,

    with nouveau, /buddypress/activity/post.form.php, overload it child theme

    /*
     * Template tag to prepare the activity post form checks capability and enqueue needed scripts.
     */
    
    if(bp_is_group_activity() && current_user_can('administrator')) {
    
    bp_nouveau_before_activity_post_form();
    ?>
    
    <h2 class="bp-screen-reader-text"><?php echo esc_html_x( 'Post Update', 'heading', 'buddypress' ); ?></h2>
    
    <div id="bp-nouveau-activity-form" class="activity-update-form"></div>
    
    <?php
    /*
     * Template tag to load the Javascript templates of the Post form UI.
     */
    bp_nouveau_after_activity_post_form();
    }
    

    assuming you don’t allow users to create their own groups, if you want to allow them to post updates on their own created groups then you’d need to check for that.


    Nahum
    Participant

    @nahummadrid

    @easleyr1 nice!


    Nahum
    Participant

    @nahummadrid

    Yes, deactivate your plugins 1×1 to see if you can narrow down the issue to a source.


    Nahum
    Participant

    @nahummadrid

    Thats weird. You should see on the left side a Log In and Register link and a search icon on the right.

    And you are not using any other plugin or code snippet to modify the admin bar in some way or making your site private? You have the General setting of Anyone can register ticked?


    Nahum
    Participant

    @nahummadrid

    what is your theme and what plugins do you have installed? when you say friends, is your site meant to be private? I don’t think there is a setting that would cause this. I’d think it would be a plugin or a customization made in the theme.


    Nahum
    Participant

    @nahummadrid

    I just see the user name and type out https://trvbe.com-/members-/krisavalon/

    So something is removing -/members from all your user urls.


    Nahum
    Participant

    @nahummadrid

    I tried now with bp legacy pack and the bs tooltip works as expected. something with nouveau in conflict.


    Nahum
    Participant

    @nahummadrid

    This is what I did to force it back. I put this in my functions. You could try that

    add_filter( 'show_admin_bar', '__return_true' );


    Nahum
    Participant

    @nahummadrid

    @brianstoiber do you happen to have woocommerce installed? I just noticed this myself. I turned off woocommerce and it revealed the toolbar.


    Nahum
    Participant

    @nahummadrid

    Yep, I was wrong! It is a BP setting sorry. still does your theme/a plugin you have also have admin bar settings?


    Nahum
    Participant

    @nahummadrid

    “Show the Toolbar for logged out users” doesn’t sound like a wp or bp setting? Is that a setting of your theme or a plugin? I could be wrong of course but sounds like something to do with theme/plugin.


    Nahum
    Participant

    @nahummadrid

    Sorry I misinterpreted the initial question, so you have 2 questions
    1. Upon logging in you’d like to redirect the user to his profile activity page.
    2. How to disable the wp-login for non-admins or something like that so that regular users never see wp’s login screen.

    2. https://wordpress.stackexchange.com/questions/62889/disable-or-redirect-wp-login-php would this be a good start to a solution

    1.https://buddypress.org/support/topic/login-redirect-to-activity-personal-page/ ?


    Nahum
    Participant

    @nahummadrid


    Nahum
    Participant

    @nahummadrid

    Yep, BuddyDev is one of my most trusted! Good support 🙂


    Nahum
    Participant

    @nahummadrid

    @easleyr1 your other members profile do exist https://trvbe.com/members/krisavalon/, are you using a plugin to remove the members slug? or doing something like this https://buddypress.org/support/topic/remove-members-slug-so-its-commembername/

    all the links to users have the members slug missing, so its not just friends.

    I’d check if any of the modifications have been made affecting this or if you have a plugin on that messes with the urls


    Nahum
    Participant

    @nahummadrid

    You say you deleted your “members” page? Is there still another members page in trash?

    Have you tried a different page other than ‘members’ and associated it to member component directory?


    Nahum
    Participant

    @nahummadrid

    Maybe something like this?

    add_filter('bp_member_registered', '__return_false');

    Cannot tell what page that is? Is that the members widget?

Viewing 25 replies - 1 through 25 (of 337 total)
Skip to toolbar