Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,876 through 5,900 (of 68,917 total)
  • Author
    Search Results
  • #276697
    perteus
    Participant

    Hi, i have problem with this issue

    I have WPForo and BuddyPress (but issue was same with bbpress) And if somebody reply on topic when i have subcribion, i have in notification menu blank title. Only Date and time send and action menu. In my Database in wp_bp_notitications is

    id	13677
    user_id	3
    item_id	394
    secondary_item_id	49
    component_name   community
    component_action wpforo_new_reply
    date_notified	2018-09-24 13:48:17
    is_new		1
    #276694
    Prashant Singh
    Participant

    ohh ok got that.

    /**
    * Buddypress Members masonry
    *
    *
    * @package WordPress
    * @subpackage K Elements
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since K Elements 1.0
    */
    
    $output = '';
    
    extract(
    shortcode_atts( array(
    'type' => 'newest',
    'member_type' => 'all',
    'number' => 12,
    'class' => '',
    'rounded' => "rounded",
    'avatarsize' => '',
    'width_height' => '',
    'online' => 'show'
    ), $atts )
    );
    //var_dump($avatarsize);
    
    $params = array(
    'type' => $type,
    'scope' => $member_type,
    'per_page' => $number
    );
    if ($rounded == 'rounded') {
    $rounded = 'rounded';
    }
    
    $avatarquery = '';
    if( $avatarsize == 'large' ) {
    $avatarsizewh = explode( 'x', $width_height );
    if( isset( $avatarsizewh[0] ) && isset($avatarsizewh[1] ) ) {
    $avatar_width = $avatarsizewh[0];
    $avatar_height = $avatarsizewh[1];
    $avatarquery = 'type=full&width='.$avatar_width.'&height='.$avatar_height.' ';
    }
    }
    
    if ( function_exists('bp_is_active') ) {
    
    if ( bp_has_members( $params ) ){
    
    ob_start();
    echo '<div class="wpb_wrapper">';
    echo '<div id="members-dir-list" class="members dir-list">';
    echo '<ul id="members-list" class="item-list row kleo-isotope masonry '.$class.'">';
    
    while( bp_members() ) : bp_the_member();
    
    echo '<li class="kleo-masonry-item">'
    .'<div class="member-inner-list animated animate-when-almost-visible bottom-to-top">'
    .'<div class="item-avatar '.$rounded.'">'
    .''. bp_get_member_avatar($avatarquery) . kleo_get_img_overlay() . '';
    if ($online == 'show') {
    echo kleo_get_online_status(bp_get_member_user_id());
    }
    echo '</div>'
    
    .'<div class="item">
    <div class="item-title">'
    .''. bp_get_member_name() . '
    </div>';
    
    echo "<div class=item-meta><p>".
    bp_member_profile_data('field=Expertise')."
    </p></div>";
    
    echo '<div class="item-meta">
    
    <span class="activity">'.bp_get_member_last_active().'</span></div>';
    
    if ( bp_get_member_latest_update() ) {
    echo '<span class="update"> '. bp_get_member_latest_update().'</span>';
    }
    
    do_action( 'bp_directory_members_item' );
    
    echo '</div>';
    
    echo '<div class="action">';
    do_action( 'bp_directory_members_actions' );
    echo '</div>';
    
    echo '</div><!--end member-inner-list-->
    ';
    endwhile;
    
    echo '';
    echo '</div>';
    echo '</div>';
    $output = ob_get_clean();
    }
    
    }
    else
    {
    $output = __("This shortcode must have Buddypress installed to work.","k-elements");
    }

    Please try this code.

    Thanks

    #276692
    israel4lincelot
    Participant

    Does not work. I think it’s because de line I’m writing is within an echo already.

    Full code:

    <?php
    /**
    * Buddypress Members masonry
    *
    *
    * @package WordPress
    * @subpackage K Elements
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since K Elements 1.0
    */

    $output = '';

    extract(
    shortcode_atts( array(
    'type' => 'newest',
    'member_type' => 'all',
    'number' => 12,
    'class' => '',
    'rounded' => "rounded",
    'avatarsize' => '',
    'width_height' => '',
    'online' => 'show'
    ), $atts )
    );
    //var_dump($avatarsize);

    $params = array(
    'type' => $type,
    'scope' => $member_type,
    'per_page' => $number
    );
    if ($rounded == 'rounded') {
    $rounded = 'rounded';
    }

    $avatarquery = '';
    if( $avatarsize == 'large' ) {
    $avatarsizewh = explode( 'x', $width_height );
    if( isset( $avatarsizewh[0] ) && isset($avatarsizewh[1] ) ) {
    $avatar_width = $avatarsizewh[0];
    $avatar_height = $avatarsizewh[1];
    $avatarquery = 'type=full&width='.$avatar_width.'&height='.$avatar_height.' ';
    }
    }

    if ( function_exists('bp_is_active') ) {

    if ( bp_has_members( $params ) ){

    ob_start();
    echo '<div class="wpb_wrapper">';
    echo '<div id="members-dir-list" class="members dir-list">';
    echo '<ul id="members-list" class="item-list row kleo-isotope masonry '.$class.'">';

    while( bp_members() ) : bp_the_member();

    echo '<li class="kleo-masonry-item">'
    .'<div class="member-inner-list animated animate-when-almost-visible bottom-to-top">'
    .'<div class="item-avatar '.$rounded.'">'
    .''. bp_get_member_avatar($avatarquery) . kleo_get_img_overlay() . '';
    if ($online == 'show') {
    echo kleo_get_online_status(bp_get_member_user_id());
    }
    echo '</div>'

    .'<div class="item">
    <div class="item-title">'
    .''. bp_get_member_name() . '
    </div>

    <div class="item-meta"><p">
    <?php echo bp_member_profile_data('field=Expertise'); ?>
    </p></div>

    <div class="item-meta">

    <span class="activity">'.bp_get_member_last_active().'</span></div>';

    if ( bp_get_member_latest_update() ) {
    echo '<span class="update"> '. bp_get_member_latest_update().'</span>';
    }

    do_action( 'bp_directory_members_item' );

    echo '</div>';

    echo '<div class="action">';
    do_action( 'bp_directory_members_actions' );
    echo '</div>';

    echo '</div><!--end member-inner-list-->
    ';
    endwhile;

    echo '';
    echo '</div>';
    echo '</div>';
    $output = ob_get_clean();
    }

    }
    else
    {
    $output = __("This shortcode must have Buddypress installed to work.","k-elements");
    }

    #276688
    Prashant Singh
    Participant

    Ok, please check this: https://codex.buddypress.org/developer/member-types/

    BuddyPress had introduced member type concept and using this you can create multiple directories.

    There is a paid plugin https://www.buddyboss.com/product/buddypress-member-types/ that you can check. But still, the payment and free level security need some sort of customization.

    Thanks

    #276679
    Prashant Singh
    Participant

    Hi,

    You can check this plugin: https://wordpress.org/plugins/buddypress-shortcodes/

    But still, it will need customization to add different fields there.

    Thanks

    Prashant Singh
    Participant

    You can check buddypress-notifications.js file and I think you need to add new listener there. Then only you can run your script just after that, but editing a core file is never recommended.

    Thanks

    Prashant Singh
    Participant

    Hi,

    You can put code like this:

    function buddypress_notifications_layout() {
    	global $bp;
    	if ('notifications'== $bp->current_component){
                  wp_enqueue_script('test', 'http://example.com/wp-content/themes/twentyfifteen- 
                  child/js/test.js', array('jquery'), '1.0', true);
            }
    }
    add_action('wp_enqueue_scripts', 'buddypress_notifications_layout');

    Thanks

    #276668
    Prashant Singh
    Participant

    Hi,

    There may be possibilities that wpforo is not compatible with BuddyPress so please report to all of them after checking these issues.

    Thanks

    #276667
    Prashant Singh
    Participant

    Hi,

    Please check this plugin: https://wordpress.org/plugins/buddypress-members-only/

    Hopefully, it will help you.

    Thanks

    #276665
    christopher387
    Participant

    .S.: I’m using bbPress with BuddyPress….and I’m referring to the ability for the “updates” people make ~directly~ to the group front page — not updates they make in forums elsewhere that populate in the Activity Stream automatically.

    I think, I got the solution!

    #276664

    In reply to: Child-theme style.css

    shanebp
    Moderator

    buddypress\bp-themes\ is deprecated any only included for legacy installs.

    Your child theme structure seems okay.
    But try using the register templates from here buddypress\bp-templates\bp-legacy\buddypress\members\ in your child theme.

    #276662
    casper99
    Participant

    Same problem here.
    And: I won’t get an ajax recommendation by entering @username in the field with bp-nouveau.

    It seems to be a problem with the “bp-nouveau” theme.
    With the old standard-theme, it works!

    BuddyPress 3.2.0
    WordPress 4.9.8

    #276655
    hyrozen
    Participant

    The conflict comes when I add BuddyPress, the problem comes from BuddyPress.

    #276653
    Prashant Singh
    Participant

    Hi,

    These are only allowed to admins, please check this https://codex.buddypress.org/administrator-guide/group-settings-and-roles/

    If you want to do it for moderator, then you have to add capabilities using custom code which seems a bit tough right now.

    Thanks

    #276647
    Prashant Singh
    Participant
    #276645
    Prashant Singh
    Participant

    Hi,

    Please follow these links:

    Add custom filters to loops and enjoy them within your plugin

    BuddyPress Activity Filter

    Hopefully, this will help you.

    Thanks

    #276643
    Prashant Singh
    Participant

    Hi,

    Please take a look on this ticket: https://buddypress.trac.wordpress.org/ticket/5513

    Thanks

    #276633
    heikesworld
    Participant

    Sorry I posted this in the wrong category before… I accidentally deleted a user profile field that took me hours to create (it included all countries of the world). Is there any way to recuperate it?
    There should definitely be a double check for deleting these things, a note asking me if I really want to delete it.
    I can see in this thread https://buddypress.org/support/topic/how-do-i-find-custom-profile-field-database-entries/ that there is a file called wp_bp_xprofile_data table, I have contacted my hosting provider and they have made a backup of my site. Where would they find this table? What would I have to replace in the current setup? The whole buddypress plugin? A file in the plugin folder? Can I import it to my current site? It would be best if I don’t have to revert the whole site to a previous version as I have done changes to it. Please please answer quickly!!! Thank you!!!!

    aldorr
    Participant

    You can try placing this in the functions.php of your Child Theme. Though for buddypress you might want to use bp_get_profile_field_data instead of xprofile_get_field_data.
    I’m trying to do something similar, but the fields are not showing up in my email. I have a feeling the email is getting sent before the database is updated, but for the life of me, I can’t get them… Good luck!

    #276623
    r-a-y
    Keymaster

    You’re using the Kleo theme. Can you try another theme to see if it is a problem with Kleo?

    Same report here – https://buddypress.org/support/topic/bp-registration-page-preventing-new-signup-from-same-ip-address/

    #276621
    Prashant Singh
    Participant

    Hi,

    Please check this thread: https://buddypress.org/support/topic/description-groups/

    Thanks

    #276615
    r-a-y
    Keymaster

    You should post on the bbPress forums and not BuddyPress.
    https://bbpress.org/forums

    bbPress handles forums and BuddyPress handles the community aspect (profiles, groups, etc).

    r-a-y
    Keymaster

    Looks like the same problem as this user:

    register problem in mobile

    That user is also using the Kleo theme.

    What happens when you change your theme to something else like Twenty Seventeen or another WordPress default theme?

    #276605
    Layo_BCN
    Participant

    Hi,

    We have already been changing to the WordPress theme and the same thing happens, when you finish entering the data in the registration and registration update fields, the page is reloaded and loads the same registration page with the fields already completed just missing the password. , and it is put back and repeated in bukle.

    He also tested on another web that we have with another theme and deactivating all the plugins and still presenting the same error.
     
    in the Main web we use BuddyPress Version 3.2.0 and in the other one that we have tested we have Version 3.1.0

    I hope I can solve the situation for elelvamso two weeks without receiving user registrations since our potential partners are always conceded by the mobile and we usually receive more than 10 weekly registration.

    So it is URGENT that you can register to BuddyPress by mobile device.

    #276602

    In reply to: PM Spam

    proweb01
    Participant

    I installed this plugin and all PM spam stopped ever since. It requires a person to be your friend before they can PM you. https://wordpress.org/plugins/buddypress-private-message-for-friends-only/

Viewing 25 results - 5,876 through 5,900 (of 68,917 total)
Skip to toolbar