Search Results for 'buddypress'
-
Search Results
-
Topic: Group Desc
hi folks,
one question – how pre fill Buddypress group description?
regards
JehAs 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 enhancedPlease help someone…
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.
Topic: Query pages on profile
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 HEREMy 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 🙂
Is there any way to allow a user to take a screenshot within buddypress and insert?
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?
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,
RobHi…
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??
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,
AndyTopic: @Mentions Geodirectory
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?
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.comCould you tell me if this is possible with your plugin, if so how?
I found a site using apparently buddypress “http://presalida.com.ar/”
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.
Wordpress version: WordPress 4.4.5
Buddypress version: 2.6.1.1
designing on localhost using XAMPPI have successfully added a new tab in the groups index page called “custom” using the instructions found here:
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!
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/frPourriez-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.
Topic: Forms from Buddypress
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.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.comCan you tell me how to deal with this error please.