Search Results for 'buddypress'
-
Search Results
-
Hello , i would ask about the block of widget how can show something like this button contact teacher just under the title (course create by …. , showing button contact course creator , that’s in buddypress but i try to find solution make that button showing thnx
I have wordpress version 4.6.1. I have buddypress version 2.2.2 (child theme in use). I also have bbpress 2.5.10. My website is http://getjobhelp.ca
I am having issues with the activity stream…I am unable to see any activity posted by other people in my forum, regardless of what dropdown menu I use. I am able to only see my own activity. I hope the following example is specific enough, asI don’t really know how else to describe this.
***Example 1: when I am logged in as the “adminsitrator/keyholder”, I am able to see what I have posted in the activity stream but I cannot see anyone elses posts, no matter what dropdown menu I use i.e.; everything, updates, friendship, group updates, group memberships, posts, comments topics, replies, new docs, doc edits, doc comments.***
***Example 2: when I am logged in as a “User” I can see my own activity but I cannot see what anyone else has posted, regardless of which dropdown menu I use. (Same as above example but as a user) So in other words, the posts I made as the “administrator/keyholder” do not show up on my activity stream as a “user.”***
After reading through this help section to get help with seeing the activity feed, someone suggested to deactivate the “buddyboss wall” plugin…I did that and was finally able to see my own activity stream but still having the above issues.
I then installed the buddypress activity plus” plugin so users could interact through comments, videos and links…which appears and seems to work just fine. But When you cant see what anyone other than yourself posts in the forum, what use does it really serve? I would like for the members to be able to interact with each other but they wont know if someone else posted in the forum if the activity stream doesn’t work. (When I say forum, I do mean the whole site…not an individual forum)
Lastly, I really do not know anything about code or where to put it or how to find where to insert it into the css or php or whatever, as I am not a developer, I am just a networking forum owner looking for some help please. 🙂 Thank you.
Hello,
This is my first time using BuddyPress and I’m pretty new to WordPress and don’t know how to assign my “Register” and “Activate” page to a blank page correctly. I’ve looked at my “Members” and “Groups” pages and they both seem to be blank when editing but when I go to the page url they have dynamically loaded content. I’m not sure where this content is being generated from and how to get “Register” and “Activate” to do the same. Any help would be much appreciated!
Thanks!
Hello BuddyPress community,
I would like to know how could I have a specific theme template load for all BP pages.
I created a theme template called “buddypress” (just a couple of changes to the header) and I would like this new template to load for BP.Any ideas on how to make this happen?
I’m currently using wordpress version 4.6.1, and buddypress version 2.6.2. I am using the Gmail SMTP plugin. I have configured it correctly, and I can send test emails already. My problem is, Buddypress still won’t send activation emails. My question is, what is causing this problem, and how do I fix it?
Hello!
I would like to restrict the registration on my site to only a specific email domain, and only if the member type is X.
My registration form includes the basic name/email/password fields as well as the buddypress base group fields, where the user can choose the member type (set up with plugin BuddyPress Xprofile Member Type Field).Browsing around I found the following code to validate the email domain:
function is_valid_email_domain($login, $email, $errors ){ $valid_email_domains = array("gmail.com","yahoo.com");// whitelist email domain lists $valid = false; foreach( $valid_email_domains as $d ){ $d_length = strlen( $d ); $current_email_domain = strtolower( substr( $email, -($d_length), $d_length)); if( $current_email_domain == strtolower($d) ){ $valid = true; break; } } // if invalid, return error message if( $valid === false ){ $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using @gmail.com or @yahoo.com emails' )); } } add_action('register_post', 'is_valid_email_domain',10,3 );1) I tried replacing
$valid_email_domains = array("gmail.com","yahoo.com");with$valid_email_domains = (".edu");but it didn’t work – I guess I should add a variable before it, to precise anything.edu as a valid domain? In a function, what would be the way to pass the “anything” argument? (I apologize if I don’t use the proper terms)
Would it be “” ?2) I’ve tried checking how I could add one more validation argument, but I’m a bit lost.
After checking around and in the register.php, I guess I should use something like :$membertype = $_POST ( 'type' => 'recruiter' ) foreach( $membertype as $membertype ) {So, perhaps something like
function is_valid_email_domain($login, $email, $membertype, $errors ){ $membertype = $_POST ( 'type' => 'recruiter' ) foreach( $membertype as $membertype ) { I don't know what to put here - how to link both arguments "if member type is "recruiter" and if email domain belong to the whitelist then proceed, if not give an error message" $valid_email_domains = (""".edu");// whitelist $valid = false; foreach( $valid_email_domains as $d ){ $d_length = strlen( $d ); $current_email_domain = strtolower( substr( $email, -($d_length), $d_length)); if( $current_email_domain == strtolower($d) ){ $valid = true; break; } } // if invalid, return error if( $valid === false ){ $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using your .edu email address' )); } } add_action('register_post', 'is_valid_email_domain',10,3 );I’m probably completely wrong, I don’t know how to code, I’ve just tried putting several things I found together..but if someone has an idea on how I could make it work I would be very grateful
Topic: Groups on Buddy press
I’d like to use Buddypress only for groups, like a facebook group… but on my site.
I’d like to know that once people are in the group, if I can make my post (as administrator) get emailed to them… in addition to being posted on the page?
Also, is there an app on an iphone or android they can use for the group? or just use the phones browser and go to the page?
Thanks!