Search Results for 'buddypress'
-
Search Results
-
Topic: No Registration Page visible
Hello all
I install Buddypress for a while now and still cannot make the “register” page show up.
I have been through all the forums here and couldnt find a solution.
I have enable the “anyone can register” in WP admin. I gave created “register” and “activate” pages and associate them with the relevant Buddypress pages in Buddypress settings. When i “view” these pages from the Buddypress settings the look fine (empty but are there!).
The problem is when i log out from Admin, the only choice i have under my “members” menu, is “log in”. The “register” option is not there.
Any ideas why this is happening?
I will appreciate if anyone can figure out what the problem and give me a heads up.
My site is http://www.moneymakewise.com
Under “members” menu tab, i have assigned ALL buddypress pages (including “register” and “activate”) and as you can see, for a not logged in user, none of them shows there.
Any ideas?I need some alternative to hyperdb for buddypress, I have three bd servers, one master and two slaves.
Topic: Invalid Activation Key
Topic: Buddypress admin menu
Hi all,
Apologies if the questions I am about to ask have been answered in previous discussions, but I could not find anything through the support forums or over the web that did so.
I am wanting to create a social network, that is only visible to members that have payed. There will be only one membership option to begin with, requiring payment monthly to maintain membership.
1. Is this easily done with BuddyPress? I have a reasonable understanding of CSS and html having built customized websites through other platforms.
2. What is/are the best options/plugins for restricting content and forcing payment? I intend on allowing selected people to join without payment in the early stages. Can the plugin(s) handle this? (I have read a fair bit as of late about Paid Memberships-Pro. Is this the better plugin to meet my needs?)Thanks in advance for any help!
Regards,
Matt
Topic: Show & Tell: VeloHive.com
Hi All,
I want to share with everyone my most recent launch of a Buddypress install..
Its 99% out of the box WP/BP & Twenty Seventeen
I was able to get it up and going and do some refinements over the course of a weekend.
This isnt my first WP/BP implementation.. (but) this is the first time ever that I came close to an implementation just using the very basics of WP/BP.. *no crazy hacks, just all vanilla.**I do have WAY TOO MANY PLUGINS running**
But, I dont know how to get around that..
I really wish that many of the features that the plugins provide are core WP/BP functions.**The site ran slow
But, I did some caching and that helped a little bit (i wish i didnt have to using caching tho)**There are a lot of plugins I’d also like to try out and use… but the problem is im on php 5.3.5 (which i know i need to upgrade)
**I wish there are better guides and updated walk-thrus… most of them out there are fairly outdated
I would love to get feedback from the BP community about my current site https://velohive.com/
– how can I make it better
– how can I make it faster
– how can I improve engagement and signups**Special thanks to the folks over at buddyboss & buddydev… I found that I was on there site and help pages very frequently..
Topic: Will BuddyPress work for me?
I have a WordPress website that will host an online community. I am researching what social software will best suit my needs. Since I’m using WordPress for the site, Buddypress is obviously a good choice for the social networking platform. But I have specific requirement, which I will outline below.
In the community there will be multiple membership levels. There are two levels, the top two levels, that will need to have special functions, and be able to be integrated into an Events Calendar.
The top two levels of members will be: 1. Facilitators, and 2. Hosts
These top two levels of members will be creating and posting “events,” all around the world. The events will appear in an “events calendar,” which is searchable by location, and event type.
In addition, there will be a range of event types, and people need to be able to search based on event types.
However, there is one tricky part. People need to be able to search for each event type, and also whether the event is hosted by either a “Facilitator,” or a “Host.”
So if someone wants to attend for example, a movie screening, they may have a preference of either a Facilitator or a Host who posted the event.
And they also need to be able to include location in their search.
I realize this is a little complicated, but hopefully it makes sense.
Can Buddypress accomplish this? If so, would it be a complicated and labour intensive process to implement?
Hi all,
I’m new to buddypress and have no experience with php. I have how ever managed to follow instructions on previous posts on preventing users from seeing the admin profile and activity but it hasnt worked correctly and has come up with errors.
I managed to create the bp-custom.php in the wp-content/plugins directory but the admin profile still appears and just comes up with an error message saying fatal error. It still allows the option to add as a friend aswell unless that might be to do with viewing it from an account already adding the admin account with.
This is where I got the code Im using from:
https://buddypress.org/support/topic/hide-admin-from-members-and-activity/Code in the bpcustom file
<?php function bpfr_hide_admins_profile() { global $bp; if(bp_is_profile && $bp->displayed_user->id == 1 && $bp->loggedin_user->id != 1) : wp_redirect( home_url() ); exit; endif; } add_action( 'wp', 'bpfr_hide_admins_profile', 1 ); function bpdev_exclude_users($qs=false,$object=false){ $excluded_user='1'; // Id's to remove, separated by comma if($object != 'members' && $object != 'friends')// hide admin to members & friends return $qs; $args=wp_parse_args($qs); if(!empty($args['user_id'])) return $qs; if(!empty($args['exclude'])) $args['exclude'] = $args['exclude'].','.$excluded_user; else $args['exclude'] = $excluded_user; $qs = build_query($args); return $qs; } add_action('bp_ajax_querystring','bpdev_exclude_users',20,2); // once admin is removed, we must recount the members ! function bpfr_hide_get_total_filter($count){ return $count-1; } add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter'); function bpfr_hide_admin_activity( $a, $activities ) { // ... but allow admin to see his activities! if ( is_site_admin() ) return $activities; foreach ( $activities->activities as $key => $activity ) { // ID's to exclude, separated by commas. ID 1 is always the superadmin if ( $activity->user_id == 1 ) { unset( $activities->activities[$key] ); $activities->activity_count = $activities->activity_count-1; $activities->total_activity_count = $activities->total_activity_count-1; $activities->pag_num = $activities->pag_num -1; } } // Renumber the array keys to account for missing items $activities_new = array_values( $activities->activities ); $activities->activities = $activities_new; return $activities; } add_action( 'bp_has_activities', 'bpfr_hide_admin_activity', 10, 2 ); ?>Topic: NetForum Pro
Does BuddyPress work with NetForum Pro – Please note it must be the pro version.
Also we have multiple levels of users | Users can only access certain information depending on job title. Can we limit what groups they are part of?
Thank You
How can I allow profiles to be visible to all types of users? I.e users do not have to be logged into see profiles?
Currently a user has to be logged into view profiles. I want to open this up and use the profiles like a directory.
Any help much appreciated.
Thanks
Hello,
I have problem with “Please upload your profile photo to start using this site.” New users cannot use site before upload avatar. With avatar is auto download from Gravatar it’s still dont work. I dont use “Force BuddyPress Users to Upload Profile Photo” plugin. I dont know where can I find problem. Can someone help me?
Sry for my english ^^Topic: members page sorting
Hi,
On my members page we have the option to Order by: Last Active, Newest Registered, Alphabetical which are great options. However, when we choose Newest Registered you’d expect it to be newest registered members first but instead it shows what appears to be a random order of newest members.
e.g. it shows profile thumbnail, member’s names and how long ago they registered but it usually something like; first 20 minutes ago; second 1 day ago; 3rd; 10 minutes ago; etc… so it appears to be a random order.How can I make sure that it shows in a clear descending order of newest registered?
Wordpress version:4.7.5
Buddypress Version:2.8.2
Site link(members page): http://www.skills-universe.com/members/Topic: Can someone help me?
I have a problem with the BuddyPress verified plugin. Someone authorized to communicate with me please. It’s important. keremking2016@gmail.com
Hello,
I’m personally running a small community for my hobby. I changed it to WP and Buddypress few years ago.
It has been over 30,00 members.
However, my site is freezing and can’t use now. there has been a problem when Buddypress is activated.
My site takes so much time to load.
I have been testing many ways such as deactivate all of plugins, switching themes. and I found my site is super slow or takes forever to load when buddypress is activated.
BBpress is also fine to use. I have to stop instance and restart everytime. it loads not too slow at first and in a few min later, it loads very slow and finally stop.
As I said, when buddypress is deactivated, it works fine.I am using AWS EC2, RDS. server error log doesn’t tell much.
Is there anyway to debug buddypress or find the solution?
I love buddypress. Please let me fix and be a big fan forever.
Thank you!
Topic: Pre implementation questions
Hello,
I’m a newbie to buddypress and have a couple of hopefully simple questions before I implement to a website.
– How can I allow profiles to be visible to all types of users? I.e users do not have to be logged into see profiles?
– Can I add repeater fields to the registration form process? If not can I use the advanced custom fields (ACF) plugin?
Any help much appreciated.
Thanks
