Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,426 through 10,450 (of 69,210 total)
  • Author
    Search Results
  • #253571
    insearchofasolution
    Participant

    @sharmavishal It won’t let me post my reply here so I try again after this post. I have just tried this but it does not hing really. Do you have any experience with this?

    Integrating with BuddyPress Profiles (Free Only)

    #253564

    In reply to: WordPress 4.5

    danbp
    Participant

    You’re welcome !

    Participate and Contribute

    danbp
    Participant

    Hi,

    read for usage and context for bp_parse_args on codex.

    #253558

    In reply to: Email template folder

    navyspitfire
    Participant

    Thanks for replying; I already have an ongoing issue regarding sending HTML emails from that codex page (my thread here).

    Also that codex page doesn’t really address my issue as a whole; there are a lot of email notifications that are sent out to users and admins, much more than are accessible in the Buddypress Emails admin menu option.

    #253556

    In reply to: Email template folder

    shanebp
    Moderator

    See this section: Customize Email Template on this codex page.

    #253555

    In reply to: WordPress 4.5

    Don
    Participant

    OK then, perhaps someone should update the last column of that page.

    In addition, https://wordpress.org/plugins/buddypress/ indicates the latest version of BuddyPress is WordPress compatible up to version 4.4.3.

    Thank you,
    Don

    #253546
    subair.tc
    Participant

    hi @henrywright , @danbp

    Thanks for your great help,

    i have solved the issue without hacking the code using the

    bp_activity_paged_activities_sql

    filter in class-bp-activity-activity.php ~L, 609

    the code below is i have used, please refer this thred , where i got some information regarding filters.

    add_filter( 'bp_activity_paged_activities_sql', function( $sql, $where_sql, $sort ) {
    	$pos = strpos($sql, 'WHERE a.id IN');
    	if($pos){
    		$in_items = implode( ',', $where_sql['in'] );
    		$sql = str_replace('ORDER BY a.date_recorded DESC' ,' ORDER BY FIELD(id,'.$in_items.') ',$sql);
    	}
    	
        return $sql;
    }, 10, 3 );
    
    

    Thanks again for your valuable time and please let me know any suggestions you have 🙂

    #253538

    In reply to: Sort Members

    Henry Wright
    Moderator

    Check out BP_User_Query

    BP_User_Query

    search_terms, meta_key and meta_value could be helpful depending on where you’ve stored your label data. I haven’t tried it, but xprofile_query might also be useful.

    #253536
    danbp
    Participant

    Base is the name of the field group which contains one mandatory field: Name.
    You can rename that field but not delete it.

    User Extended Profiles

    See also if this can help you:

    How to I delete “This field can be seen by: Everyone?” on my registration page?

    #253535
    sharmavishal
    Participant
    sharmavishal
    Participant
    #253529

    In reply to: WordPress 4.5

    danbp
    Participant

    Of course !
    https://codex.buddypress.org/releases/ > see latest… 🙂

    #253525
    danbp
    Participant

    Perhaps this can help you to go further.

    For point 2, maybe this snippet can do the job. Give it a try ! Add it to bp-custom.php

    function custom_display_xprofile_fields() {
    
    // single field item
    if ( $data = bp_get_profile_field_data( 'field=Industry' ) ) : // change field name to yours
    	echo '<div class="industry">'. xprofile_get_field_data( 'Industry', bp_displayed_user_id() ) .'</div>';
    endif;
    }
    add_action( 'bp_after_profile_loop_content' , 'custom_display_xprofile_fields' );
    #253524
    danbp
    Participant

    Hi @subairtc,

    see bp_activity_get_where_conditions filter in bp-activity-classes.php ~L. 418

    Here a similar question with more details.

    Also, maybe you can do something based on this snippet, with a different approach.

    /**
     * Change order of activities query string.
     * @param string $query Query string.
     * @return string $query Modified query string.
     */
    function bpfr_filter_activity_default( $query ) {
    	if ( empty( $query ) && !empty( $_POST ) ) {
    		$query = 'order=ASC';
    	}
    	return $query;
    }
    add_filter( 'bp_ajax_querystring', 'bpfr_filter_activity_default', 999 );

    Apologize if i’m wrong. 😉

    #253523
    shanebp
    Moderator

    BP recently added the BP Email API which uses its own methods.

    You can place the code in bp-custom.php rather than your theme/functions.php

    #253520
    shanebp
    Moderator

    Try this in your theme/functions.php

    add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_from( "you@yoursite.com", "Your Site" ); }, 10, 2 );

    See codex page.

    #253518
    Jerry101
    Participant

    Yes, they are all checked / enabled

    BuddyPress -> Components & BuddyPress -> Settings

    Can not add groups, not as Admin , Not as User. Neither can I as Admin via Admin panel Groups.

    but i still can’t see the “create group tab appear next to invitation tab.

    #253516
    subair.tc
    Participant

    I have added the ‘include’ argument with ‘bp_has_activities’ function as

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&action=activity_update&include='.$sorted_ids  ) ) : ?>

    where the ‘$sorted_ids’ the comma separated activity id’s in sorted order. But unfortunatly the BuddyPress Core will sort the activities in ASC or DESC order.

    I fount the Query used in core file ‘class-bp-activity-activity.php’ inside ‘plugins\buddypress\bp-activity\classes’ on line number : 585 as

    // Query first for activity IDs.
    $activity_ids_sql = "{$select_sql} {$from_sql} {$join_sql} {$where_sql} ORDER BY a.date_recorded {$sort}, a.id {$sort}";
    

    and i have replaced it as

    if($in)
    $activity_ids_sql = "{$select_sql} {$from_sql} {$join_sql} {$where_sql} ORDER BY FIELD(id,$in)";
    else
    $activity_ids_sql = "{$select_sql} {$from_sql} {$join_sql} {$where_sql} ORDER BY a.date_recorded {$sort}, a.id {$sort}";
    
    

    Now it’s working fine for me, But it’s not recommended to modify the core file

    So please let me know if any one know the filter hook used for modifying the Query from the file itself.

    #253514
    sharmavishal
    Participant

    check this but its a paid plugin

    Introducing BuddyPress Message Privacy Plugin

    #253513
    sharmavishal
    Participant

    google “buddypress portfolio” and you will find couple of options…

    #253505
    sharmavishal
    Participant

    my bad…i got confused..i was talking about another user blog plugin for buddypress…so u need to ask sbrajesh then…

    #253504
    sharmavishal
    Participant

    this has been asked many times on this forums….check the avatar related in the following article

    Getting Started

    #253495

    In reply to: Heavy resource load

    sharmavishal
    Participant

    install Query Monitor and Query Monitor bbPress & BuddyPress Conditionals this 2 plugins..figure out what is hogging your resources

    #253482
    jclark1234
    Participant

    I have spent 20 hours on tech support to figure this out.

    My host tech support at WP Engine went through and we tested every plugin and isolated that the capitalization appears only when buddypress plug in is activate.

    As I wrote in my original post “I am using wp 4.5.2 and the ispirit 1.1.2 and it replicates with the
    standard themes. It happens in safari, chrome and on iphone browser.”

    When I stay standard themes I mean the three that come with the wp install.

    We (wpengine and I) did redirects so that when the bp system generates the odd capitalization issue it redirects to the page with the caps.

    Go here and watch it redirect http://www.championcollegeservices.com/register to http://www.championcollegeservices.com/Register

    We did that redirect as a temporary solution so that people could at least sign on.

    The bug needs to be found and fixed.

    #253481
    Joost abrahams
    Participant

    I,m am very sorry but… You did make those changes somehow, wordpress and buddypress only outputs lowercase slugs.

    You are not typing internet adresses directly into your browser? Those links in your chase are generated by your theme? Did you try a different theme? Did you try to change the page slug?

Viewing 25 results - 10,426 through 10,450 (of 69,210 total)
Skip to toolbar