Search Results for 'buddypress'
-
Search Results
-
So ive created a website using wordpress and buddypress, i have email activation active, users are getting the emails but when they click the link there accounts go in to pending mode, then i have to go into users and activate them myself is there anyway for it to automatically active it when they go through the link ?
any help is appriciated
Hello,
I have created two custom fields using buddypress plugin. Those are age and country. I want to divide content by age and/or country but I still don’t know how to do it. How can I get the data that users input during registration and insert that into a template?
Let’s say that someone clicks on an age group 20-30’s. In that group I’d like to display the content only of the users whose age falls into that range.
The same with countries. If someone clicks on the UK then all the UK users’ blogs will be displayed.I would really appreciate your help. Thank you
Regards
David
Hello,
I am using WordPress’ WYSIWYG editor to enhance the What’s New textarea. That’s all working fine, however, the new autosuggest @mention only seems to work in the text editor.
Is there a way to get it working within the visual editor?
Using WordPress v4.2.2 and BuddyPress v2.2.3.1.
Topic: Help with BP integration
Hi there! Thank you VERY much for taking the time to help me here, I can’t tell you how much it means to me!
First off, some info for you…
Latest Buddypress version
Latest WordPress Version
Theme: Avada
New to wordpress and buddypressProject: Social networking website(Ambitious, I know…) Xenoko is going to be an online community for alternative art, music, fashion, and media with a darker, edgier flair. It will eventually be tied to ecommerce and individual shops and whatnot, but thats the future. For now, I just need a blog and forums and profile set up. I’m trying to create a substitute website on a budget until I get the money to pay for a professional solution.
Site: http://www.Xenoko.com
I will try to keep this direct and detailed, thank you for your help!
I think something might have gone wrong? Do I need to go into ftp and move the buddypress folder into my theme folder?
1.) I’m having trouble integrating buddypress into my site. When users click on My Account in the top right it takes them to a page with [woocommerce_my_account] shortcode on it. I’d like to turn that into a log in that takes them to their buddypress profile. Is this simply just a php function call? like bp_loggedin_user_domain() if I want the link to take the user to their profile when clicked on or something? How can I do this? Thanks!
function redirect2profile(){
include_once( ABSPATH . ‘wp-admin/includes/plugin.php’ );
if($_SERVER[‘REQUEST_URI’] == ‘/profile/’ && is_plugin_active(‘buddypress/bp-loader.php’) && is_user_logged_in()){
global $current_user;
wp_redirect( get_bloginfo(‘url’) . ‘/members/’. $current_user->user_login . ‘/profile/’);
exit();
}
}
add_action(‘init’, ‘redirect2profile’);Using this code I could hijack a page I create called “profile”, but it doesnt bring you to a signup page if you arent logged in. I’m not very experienced with php, so thanks for your help.
2.) Similar the last question, I would like My Account to show as Log In before the user is logged in and My Account afterwards. I can’t remember the dynamic function to do so. I know its probably an If Else function, how would I implement it?
Again, I can’t tell you how happy I am for any support you can provide, it is invaluable!
I am working in wordpress and using buddypress theme. In my php file i want to set value of a buddy press functions into an array parameter like following
PLUGIN_METHOD( array( ‘Para1’ => ‘Value1’, ‘Para2’ => bp_activity_user_link(); ) );
But i am unable to set value of function’s into array.Please suggest me right way.
Thanks in advance!
I have built an online community for historyteachers with BP and BBpress and Events Manager.
Now I would like to create small online courses with video, quizzes and maybe a badge when you complete the course. Buddypress Courseware seems to be dead…?
I have looked at Coursepress , but I would like it to be compatible with BP – activity feed, badges in member header and so on…
This would be quite a challenging task, I know. Maybe it would be possible with public funding …?
Hello, I want to change “Members” to “Employees”. I’ve created the Employees page and configured buddypress settings to use it, however the header title of this page still says “Members”.
I’ve figured out that I can edit /wp-content/plugins/buddypress/bp-members/bp-members-loader.php
and edit the line:
'directory_title' => _x( 'Members', 'component directory title', 'buddypress' ),to
'directory_title' => _x( 'Employees', 'component directory title', 'buddypress' ),However I don’t want to edit core files. I tried copying this file to /wp-content/themes/my-theme/buddypress/bp-members/ and making the changes there but they did not apply.
Is there a way to do this change with a function?
Topic: Extending the register form
Hi,
Iām working on a plugin trying to extend the registration functions of Buddypress. I have figured out how to over-ride the register page, and i can see many of the function in the bpxprofile and members stuff. However, I was wondering, what happens after the user clicks the submit button? What functions are getting called to get the raw data into the system and create a user?
Thanks in advance!
