Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,176 through 8,200 (of 68,932 total)
  • Author
    Search Results
  • #264035
    aido141176
    Participant

    Hi danbp, thank you for your response. Unfortunately I’m not sure how I can get this to work.

    Can you please show me a loop that will show all activity for say a group with ID 2. Or even with a slug, say ‘group_slug’.

    Here is the loop I am using:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . "&primary_id=2" ) ) : ?>
    
    <?php while ( bp_activities() ) : bp_the_activity(); ?>
     
            <?php locate_template( array( 'buddypress/activity/entry.php' ), true, false ); ?>
     
        <?php endwhile; ?>
    <?php endif; ?>

    I tried both to incorporate your code into the activity loop but it didn’t work.

    I want display this activty not on a buddypress page. I want it to go on homepage. I can already get the group ID I just want to be able to make a loop that displays the activity of a curtain groupusing the group ID.

    If you could show me a whole complete loop that would work I would be really greatful.

    Thanks

    danbp
    Participant

    You have already asked for this in the past 2 weeks!
    How to add a tab or content (like user’s post) on a profile is explained in many topics if you would take a little while to search the forum.

    You want to use a third party plugin, but we can’t help you for this as we are all volonteers here, who have enough to do with BuddyPress. It is to you to read the software documentation and built it in your site.

    This topic is closed as duplicate. Conversation continues here.

    #264030
    danbp
    Participant

    Hi,

    you have to use a group_id and to ensure you’re in an appropriate loop (activity or group)

    To get a group id, you can for ex. do:

    // check for a group ID
    	if( bp_has_groups() ) {
    		// Grab current group ID
    		bp_the_group();
    		$group_id = bp_get_group_ID();
    	}	
    	
        // apply our changes only to this group ID's
    	// conditionnal action
    	if ( $group_id == 22 OR $group_id == 8 ) {  

    … and so on!

    You may also use bp_parse_args, depending where you use your custom work. In other words, you can create a complete new activity loop on a distinct page template for only one group.

    Using bp_parse_args() to filter BuddyPress template loops

    #264025

    In reply to: spam registration

    djsteveb
    Participant

    @malaruban – did you search the forum for this? It’s answered like very month since the beginning I think..

    everyone has different suggestions..

    1 many suggest “wp spamshield”

    2 I like “good question” plugin on one site, but use “buddypress humanity” on another..
    one I’ve considered replacing those wit his “user registration aid”

    3 I also use ip geo block – biggest help on most sites.

    4 strongly suggest getting the “shield” firewall plugin and going into lockdown menu and disabling xmlrpc and rest api – but your situation may vary.

    I use all four plus more on various sites (just one of them from step 2)

    #264024
    djsteveb
    Participant

    I use https://wordpress.org/plugins/buddypress-login-redirect/ – and it does exactly that.

    #264023
    djsteveb
    Participant

    page titles for member profile pages and group pages are not easy to change up – I posted some info I got a while back on this, but before I go digging for that info, I wonder if you really mean groups like buddypress groups.. since your url fragment there has “forum” in it – you may be refering to page title for the forums which I think is more of a bbpress issue (?) –

    #264016
    itskater91
    Participant

    Thanks! I actually figured it out with the BuddyPress plugin. Another plugin was blocking me from adding the BuddyPress Login to the widgets once that was allowed it fixed itself.

    #264014
    jenfilgate
    Participant

    I had to add this code to my functions.php file to get rid of it.

    /* Remove errors if any */
    error_reporting(E_ERROR | E_PARSE);
    /* End remove Errors */

    It just removes the warning, but doesn’t solve the problem that causes it. I wasn’t able to find a resolution to that and may need for my plugins to update in order to solve it. Mine was being caused by a conflict between BuddyPress and W3 Total Cache.

    #264013

    In reply to: BuddyPress Login Page

    clf885
    Participant

    I didn’t know that BuddyPress didn’t have a login page so my bad. What other details do I need to include?

    #264012

    In reply to: BuddyPress Login Page

    danbp
    Participant

    BuddyPress doesn’t use “a login page”. If you have a radio button for the “remember me” option, it is certainly because you’re using a third party plugin or theme or widget.

    But you don’t give any detail about your config, so it is just impossible to tell you more!

    #264011
    danbp
    Participant

    Hi,

    please try to search a little before asking such basic question! Ie, you would have found this one:

    https://buddypress.org/support/topic/create-dynamic-user-links-to-end-users-wallprofile-etc/

    #264007
    danbp
    Participant

    Can you give an example of what you tried and tell us where you did that change ?
    Also, you should test BuddyPress with one of WP’s default Twenty theme before activating any other theme.

    And more generally, giving some details can help too.

    #264006
    danbp
    Participant

    This field is visible by default.
    default profile activity

    If not, so the problem might be with your theme.
    For other what’s new form questions, search the forum.

    Some answers here:

    Height what’s new form


    https://buddypress.org/support/topic/how-do-i-remove-textarea-resize-without-editing-the-js-script/

    #264002
    danbp
    Participant

    Simply by not using code!

    Remove the call to user avatar from the templates and you’re probably done. 😉

    Or if you want to code, see here and search for bp_member_avatar.

    #263999
    danbp
    Participant

    Hi,

    sorry but this is not related to BuddyPress.
    Dashboard access is part of WordPress and the way it is displayed on your screensht indicate that it is also theme dependant somehow.
    You can hide any menu item from the WP toolbar by following these instructions

    or you can chosse to active/deactive the toolbar option in BP settings or use a plugin to limit dashboard access.

    #263998
    danbp
    Participant

    Hi,

    BuddyPress wording can easely be modified with the language file:

    Customizing Labels, Messages, and URLs

    Other method:

    Change “Activity” component’s name and slug to something else.

    or:

    Navigation API

    #263997
    danbp
    Participant
    #263973
    john.horning
    Participant

    We discussed it here: https://buddypress.org/support/topic/dont-hide-fields-when-user-views-his-own-profile/, but I got stuck. Maybe I’ll revisit.

    #263966
    Slava Abakumov
    Moderator

    Try getting the latest version of Kleo theme from themeforest.net. I’m pretty sure this is a theme issue, as BuddyPress itself is quite good in most places performance-wise.

    As a general suggestion – activate object caching (memcached or redis) – you will need to talk to your host if you are on a shared/managed hosting, or install everything by yourself if on VPS/VDS/own server. Object caching will greatly help, believe me or not.

    #263961
    Brajesh Singh
    Participant

    You may use

    
    bp_activity_post_update( array(
    'content'=> 'Something we wanted to say',
    'user_id'=> 32,//example, please change it
    ) );
    
    

    Please take a look at this

    https://github.com/buddypress/BuddyPress/blob/master/src/bp-activity/bp-activity-functions.php#L1938

    Hope that helps.

    #263958
    blondelovic
    Participant

    When i say the site beces slow it is especially for thz buddypress part. I Can’t publish easily a picture or even like. It takes tremendous time.

    #263957
    blondelovic
    Participant

    I’m using kleo theme. When i uninstall all plugins, i have my site running at it full speed. Very fast.but once i activate buddypress, the request or the site becomes slow just for logged in users. I dont understand.

    #263940
    kodacollider
    Participant

    Trying to take a look at the template file. Found it at: /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/assets/_attachments/cover-images/index.php

    In that file, I see the code:

    <script id="tmpl-bp-cover-image-delete" type="text/html">
    	<# if ( 'user' === data.object ) { #>
    		<p><?php _e( "If you'd like to delete your current cover image but not upload a new one, please use the delete Cover Image button.", 'buddypress' ); ?></p>
    		<p><a class="button edit" id="bp-delete-cover-image" href="#"><?php esc_html_e( 'Delete My Cover Image', 'buddypress' ); ?></a></p>
    	<# } else if ( 'group' === data.object ) { #>
    		<p><?php _e( "If you'd like to remove the existing group cover image but not upload a new one, please use the delete group cover image button.", 'buddypress' ); ?></p>
    		<p><a class="button edit" id="bp-delete-cover-image" href="#"><?php esc_html_e( 'Delete Group Cover Image', 'buddypress' ); ?></a></p>
    	<# } else { #>
    		<?php do_action( 'bp_attachments_cover_image_delete_template' ); ?>
    	<# } #>
    </script>

    However, on my site itself, the source comes out missing the script tag, and the angle brackets are in the form of lt; gt; etc.

    Any ideas? Could use some help on this.

    #263938
    Bunty
    Participant

    replace line number 31 with this

    printf( __( "What's new?", 'buddypress' ) );

    #263932
    Bunty
    Participant

    If you have latest version of buddypress then you can do from your FTP. Ask you server administrator to do so.

Viewing 25 results - 8,176 through 8,200 (of 68,932 total)
Skip to toolbar