Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,426 through 12,450 (of 73,985 total)
  • Author
    Search Results
  • #261326
    penjeh
    Participant

    hi folks,

    one question – how pre fill Buddypress group description?

    regards
    Jeh

    Arnau
    Participant

    Hi,

    I have installed a buddypress for an educational community in catalan lenguage. I added all the students with CSV. Everything seems to works great.

    Some teachers ask me if there is an option to filter all the private inbox messages by user. We realise that if we search a user name in the inbox search, It doesn’t show all the messages with its user, just some of them.

    I don’t know is the problem can be related wht the users names that some of them contains accents. But the problem persist with all kind of names.

    Is there any way to simplify this search option or to solve this problem?

    We are using the last version of wp, extensions and twenty sixteen theme.

    Thanks a lot

    eavinu
    Participant

    As the topic says, I am trying to achieve this capability for group admin without success.
    I have the following:
    The website is community with branches (85 brancehs) and I use bp groups to handle the branches.
    The members register and should be assigned to the branch of their city (using bp registration groups) and the managers of each branch are assigned as group admins.
    The members are able to buy tickets to firld trips and other stuff and I need the group admins to be able to see which members from their own branch purchased a ticket to the trip.
    Is it possible to create capability to achieve this?

    I am using:
    wordpress 4.4.2
    Buddypress 2.7.2
    woocommerce 2.6.7
    wc4bp 2.5
    wc4bp xprofile checkout manager 1.2.1
    Buddypress registration groups
    capability manager enhanced

    Please help someone…

    #261319
    Steve
    Participant

    I have PaidMembership Pro installed. It has a Membership area. The membership are has a link to “edit” membership. When a user clicks it they go to the backend of WP to their member profile. This is not what I want.

    I want people to go to their BUDDYPRESS profile page. What php do I use to make this happen. Here is the code I am working with:

    <?php _e(“Edit Profile”, “pmpro”);?>><?php _e(“Edit Profile”, “pmpro”);?>

    I tried this but it failed:
    “><?php _e(“Edit Profile”, “pmpro”);?>><?php _e(“Edit Profile”, “pmpro”);?>

    Also, I am not a coder, so don’t start talking about functions and loops and stuff like that. You may as well be speaking Greek.

    I hope you can help.

    #261317
    Hugo Ashmore
    Participant
    #261312
    shtimatz
    Participant

    I would sugest No CAPTCHA reCAPTCHA plugin which works with BuddyPress registration. You’ll hit the root of the problem.

    Hope this helps.

    #261306
    ethernity4ever
    Participant

    Hello everyone,
    I have the following code added to my functions.php

    // Buddy Press Func.
    
    function my_redirect_canonical($redirect_url, $requested_url) {
     // If on a BuddyPress page, just go to the requested URL: no redirects!
     if ( bp_is_members_component() || bp_is_user() ) {
       return $requested_url;
     } else {
       return $redirect_url;
     }
    }
    add_filter('redirect_canonical', 'my_redirect_canonical', 10, 2);
    
    // Buddy Press Funktionen Posts im Profil
    
    add_action( 'bp_setup_nav', 'add_profileposts_tab', 100 );
    function add_profileposts_tab() {
    global $bp;
    bp_core_new_nav_item( array(
    'name' => 'Submissions',
    'slug' => 'submissions',
    'screen_function' => 'bp_postsonprofile',
    'default_subnav_slug' => 'Submissions', 
    'position' => 250
    )
    );
    }
    // show feedback when 'Posts' tab is clicked
    function bp_postsonprofile() {
    add_action( 'bp_template_content', 'profile_screen_posts_show' );
    bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }
    
    function profile_screen_posts_show() {
    query_posts( 'author=' . bp_displayed_user_id() );
    	if ( have_posts() ) :
    	get_template_part( 'author-user' );
    	else:?>
    	<div id="message" class="info">
    		<p><?php bp_displayed_user_username(); ?> You don't have any submissions. </p>
    	</div>
        <?php endif; ?>    <?php
    
    }
    
    //POSTS ON PROFILE ENDS HERE

    My problem is this query works for posts only, I want it to make it show current user owned pages instead of posts, but my coding skills are terribly bad, and I tried all kind of things, reading through wp guides etc. but i just suck at coding. Does anyone have a min to take a look at the code and tell me what i need to change to get it to show pages instead of posts.

    Thanks 🙂

    #261302
    robcnz
    Participant

    Is there any way to allow a user to take a screenshot within buddypress and insert?

    #261290
    Theodor Rehtisch
    Participant

    Hello everyone,

    I’m experiencing some strange behavior of the BuddyPress 2.7.2 Groups.

    First of all, the call
    $bp->groups->slug
    returns the wrong slug. It should return ‘gruppen’ but still returns ‘groups’. The slug of the page was set to ‘gruppen’ and the page has been set as the groups page.

    Second, the number of members in a group is incorrect. I got a group with 3 members in it, but in the backend (on the groups page) and on the frontend it says that there are 4 members.

    Third, after the last update some users complained that they wont see all the groups they’re in. I checked that in the backend, the users are still registered in their correct groups, so the frontend output is messed up.

    What could have gone wrong? Is the database damaged?

    #261287

    In reply to: Fatal error PHP 7.1

    lgreenwoo
    Participant

    I see that BP 2.7.3 is due the day before PHP 7.1 GA. Perhaps a fix can be included in this release so there’s no lag between PHP 7.1 GA and BP working on PHP 7.1 – otherwise I assume we’ll be waiting for BP 2.7.4?

    https://buddypress.trac.wordpress.org/milestone/2.7.3

    #261285

    In reply to: User WYSIWYG Editor

    Venutius
    Moderator

    For profile fields you can enable a rich text editor with http://buddyuser.com/plugin-review-buddypress-xprofile-rich-text-field

    #261282
    robcnz
    Participant

    I am relatively new to BuddyPress and my users will need a WYSIWYG editor so they can upload images/videos/etc. and bold/etc.

    Is this possible and if so, how?

    Any advice would be greatly appreciated.

    Regards,
    Rob

    RickHN
    Participant

    Hi…

    PROBLEM:
    How to filter members directory by site/blog id?, so in a multisite installation with one BP instance were possible to filter only the registered member in the current blog/site directory members.

    SOLUTION:
    In bp-custom.php:
    ————————————
    function include_users() {
    $sitio_id = get_current_blog_id();
    $included_users = implode(‘,’,get_users(‘blog_id=’.$sitio_id.’&fields=ID’));
    return $included_users;
    }

    In members-loop.php (about line #50, find and modify):
    ————————————
    $members_loop_query = apply_filters(‘woffice_members_loop_query’, bp_ajax_querystring( ‘members’ ).’&exclude=’.$exclude_members.’&include=’.include_users() );

    I take this idea from:
    http://twentythreedegrees.co.uk/exclude-include-members-by-user-role-in-a-buddypress-members-loop/

    BUT….

    Still have not found how to filter (or where to do that) for the member widget or even better, sitewide? (whereever a member list, plugin or widget need to list BP members).

    ¿Someone can give me some help with this??

    #261277
    Henry Wright
    Moderator

    Can you open a ticket on BuddyPress Trac? Please include as much detail about the problem as possible.

    #261276
    Bingo Bongo
    Participant

    Okay – thanks Dan.

    Deactivated Smart Countdown FX, and tried with 2016 theme, all plugins deactivated except buddypress.

    That works, many, many thanks 😉

    Now for more fun 😉

    #261274
    Colourscope
    Participant

    Hi,
    Can anyone give me the code to just simply remove the Friends tab which goes on display in the Profiles of BuddyPress, ie. where you have Activity | Notifications | Messages | Friends.

    I just want to hide the Friends tab so it’s gone/invisible but cannot see how and old scripts on this forum don’t work.

    Thanks,
    Andy

    #261264
    Venutius
    Moderator

    Do you know which plugin it was? That’s probably going to be important.

    The first thing I would check is to see if the plugin made a template overload of some of the BP pages:

    Theme Compatibility & Template Files

    I’d be looking to see if they had changes the Members Loop

    #261260
    cwilliamsusherin
    Participant

    I’m using the directory plugin Geodirectory & am attempting to integrate the @mentions & auto-suggestions from Buddypress into their Add-Listings section. For example: Theatre company posts an event, tag actors (from suggestions) who have a buddypress profile & pull certain data from their profile to display such as; photo, name, bio, etc.

    I’ve been playing with adding the auto-suggestion code to the Geodirectory core files but it isn’t working. Does anyone have any suggestions or can you point me in the right direction?

    desmotta
    Participant

    Hello,

    I want to create a site to realize the following principle:

    Families can register, create a profile with their centers of interest and “exchange” their child with that of another family in order to learn a new language.

    Families can search according to the center of interest of each family, language spoken and region …

    Families can charge for the stay in case it is not a “exchange” but only a “reception”.

    Each family has a personalized profile with their photos, a description, their interests and their availability.

    After the stay, a family can note and leave a comment on the stay made on the profile of the other family.

    Reference site:
    https://www.lingoo.com

    Could you tell me if this is possible with your plugin, if so how?

    I found a site using apparently buddypress “http://presalida.com.ar/&#8221;
    It resumes in the outline my final goal. (Except online sales)
    (Source: https://www.sourcewp.com/examples-of-buddypress-websites/)

    Thank you for your answers, cordially, Anaël.

    desmotta
    Participant

    Hello,

    I want to create a site to realize the following principle:

    Families can register, create a profile with their centers of interest and “exchange” their child with that of another family in order to learn a new language.

    Families can search according to the center of interest of each family, language spoken and region …

    Families can charge for the stay in case it is not a “exchange” but only a “reception”.

    Each family has a personalized profile with their photos, a description, their interests and their availability.

    After the stay, a family can note and leave a comment on the stay made on the profile of the other family.

    Reference site:
    https://www.lingoo.com

    Could you tell me if this is possible with your plugin, if so how?

    I found a site using apparently buddypress “http://presalida.com.ar/&#8221;
    It resumes in the outline my final goal. (Except online sales)
    (Source: https://www.sourcewp.com/examples-of-buddypress-websites/)

    Thank you for your answers, cordially, Anaël.

    #261252
    mmw562
    Participant

    Wordpress version: WordPress 4.4.5
    Buddypress version: 2.6.1.1
    designing on localhost using XAMPP

    I have successfully added a new tab in the groups index page called “custom” using the instructions found here:

    Add Custom Tab to Groups Directory

    Now that I have created it, I would like to be able to filter the groups loop once a user has clicked on that tab. How would I do that? Is there a way to do it with ajax exactly like its happening with the “all groups” and “my groups” tabs?

    Thank you in advance for your help!

    desmotta
    Participant

    Bonjour,

    Je souhaite créer un site permettant de réaliser le principe suivant :

    Des familles peuvent s’inscrire, créer un profil avec leurs centre d’intérets et “échanger” leur enfant avec celui d’une autre famille dans le but d’apprendre une nouvelle langue.

    Les familles peuvent faire des recherches selon le centre d’intéret de chaques familles, la langue parlé et la région…

    Les familles peuvent faire payer le séjour dans le cas ou ce n’est pas un “échange” d’enfant mais seulement une “réception”.

    Chacune des familles à un profil personnalisé reprenant leurs photos, une description, leurs centres d’intérêts et leurs disponibilités.

    Après le séjour, une famille peux noter et laisser un commentaire sur le séjour réalisé sur le profil de l’autre famille.

    Site de référence :
    https://www.lingoo.com/fr

    Pourriez-vous me dire si cela est possible avec votre plugin, si oui comment ?

    J’ai trouvé un site utilisant apparement buddypress ” http://presalida.com.ar/
    Qui à l’air de très bien fonctionner et reprend dans les grandes lignes mon objectif final. (Hormis la vente en ligne)
    (source : https://www.sourcewp.com/examples-of-buddypress-websites/)

    Merci pour vos réponses, cordialement, Anaël.

    #261246
    intanmunirah
    Participant

    Hi,
    is buddypress supports any forms?
    I am using form maker to create details about person. Thus i want the details created from the forms are published in ‘Profile’ in buddypress.
    Or is buddypress itself has it’s own form?
    Please help me.

    bcanr2d2
    Participant

    I have been able to get the profile photo working in a popup, so that it works during the edit compontent of buddypress. I would now like to hide the Change Profile Photo link when viewing the profile, and make it visible when editing.

    I have made a change to when the change-avatar action is allowed to run, and basically don’t want users actually getting to that page. When on the edit page, I have it loading via a popup that allows it to appear to be inline with the rest of the edit profile details.

    Am I using a hook that is dependent on the action edit?

    ma3ry
    Participant

    The following Warning shows below the links of my Edit Profile page, and also in my error-log.

    Warning: Creating default object from empty value in /plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php on line 453

    It is there using Twenty-Sixteen theme.
    It is there with all other plugins deactivated.
    I am on WP v4.6.1 using BP v2.7.2
    My website is https://christiangays.com

    Can you tell me how to deal with this error please.

Viewing 25 results - 12,426 through 12,450 (of 73,985 total)
Skip to toolbar