Forum Replies Created
-
I’m speaking for both of my issues, btw. The one referenced here and the other one that I linked to.
Well, I changed my other admin’s password and logged in again, and now that one shows up. I’m scratching my head, here.
Does everyone have to log in again in order to show up in members, even though they’ve activated their e-mail? This doesn’t make sense to me.
And I’ve read through the Getting Started info a few times. I believe I have everything set up correctly. I’m not sure what I could be doing wrong.
Hi danbp,
Thanks for replying! I’m not entirely sure I understand what you are saying.
I only have 1 user listed as pending. Using the Unconfirmed plugin, I can see they have not clicked the activation link. However, my other users apparently have.
I can see all of the 14 users for my subsite (that have clicked the activation link) in my_site/wp-admin/network/users.php. However, only 8 are showing up in /members. (One of the users not showing up is another admin account of mine, which I have definitely logged in with.)
My entire site is WP. I do not have it installed as a blog in a subfolder, etc.
Did I misunderstand what you meant?
I’m by NO means an expert, but I’ve used BP off and on for years, and this is the first time I’ve ever encountered this issue.
Thanks so much!
Thank you for responding. 🙂
Some yes, some no. Mostly no. Using User Switching, I’ve tried to switch to the accounts that aren’t showing, but they still did not get added to the members area. Thanks for the tip, though.
I now have 14 users on my site, but only 8 are showing up in /members.
Any other ideas?
Thanks!
Aaand now it’s randomly working. LOL Maybe it just took time to update after fixing those things? IDK.
Anyway, thanks for all of your hard work. I love BuddyPress!
<3I pasted it into the WP Edit CSS section and got an error for lines 53 and 55. I think the <b and need to be deleted.
But I’m still having the same problem. lol
I just realized that my individual groups do not display properly/aren’t responding to the CSS adjustments. Any idea why that could be or what I could add to the CSS?
Thanks! 🙂
No worries! I figured as much. And I did, thanks. For some reason, the code tag kept stripping parts of them out here when I tried to post them. lol Ah, well.
I think I have it working, though. Thanks so much for responding so promptly and for fixing that. I love BuddyPress, and I keep finding more ways to use it than I ever expected.
Thanks for all that you do.
Why does it hate me so? lol
I guess I’m doing something wrong or am somehow not understanding how the code tag works as it isn’t all coming through. Sorry, I tried. 🙁
For anyone else having problems reading it on the other page, I found a copy from one of my other websites that I used.
Bottom of header-buddypress.php:
(minus the spaces – hope it works this time)
Top of sidebar-buddypress.php:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`Everything in the CSS files is fine, except the top should say:
`/* BuddyPress Component Finishing Styles
————————————————— */`I feel like I need to append this to say that when I mean wrong, I mean some sort of technical glitch.
I give up.
Any thoughts otherwise? My whole BuddyPress area is broken. 🙁
Well, then.
“
I added spaces between the . Let’s see if that makes a difference.
Hmm… not sure why it didn’t take that other one. Trying again.
At bottom of header-buddypress.php:
“
There is a whole bunch of wrong with the code from the walkthrough…
I’m guessing it should be these? (If so, it still didn’t work for me. )
At bottom of header-buddypress.php:
“
At top of sidebar-buddypress.php:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`Ohhh, my bad. Good to know. Thanks!
If I’m reading it right, it looks like this removes them completely. Is there a way to customize which ones link and which don’t?
I wish I could figure this out as well. It’s a several-step clicking process for them to do it individually – more of a pain than I want to put them through. I can’t find where to set the e-mail defaults at all.
Were you able to find a solution>
I’d really like a solution to this as well. I noticed that these forums have some with a lock symbol, and that’s exactly what I’d like to see.
Any thoughts on or solutions to this yet?
Thanks!
Okay, so what if I’m looking to do the exact opposite? What if I want to specify which fields are always clickable? I’d like to be have members’ locations always clickable.
Any thoughts?
Thanks and best wishes,
Kristen*BUMP*
Gosh I wish I knew coding…
Did you ever figure out how to do this? It’s exactly what I’m looking for…
I would really like to know how to do this as well. I will have a community of mixed ages so I would like to lock the birthday field to help keep the kiddies safe.
Anyone have any thoughts?
Hey all-
I’m trying to create a very simple plugin workaround but I’m doing something wrong in the coding. Would someone here more experienced than I be willing to help me figure out what I’m doing wrong? I’m basically just trying to redirect non-logged in users to a specific page that tells them they need to be logged in. This was inspired by the BP Profile as Homepage plugin.
But right now I’m getting this error:
`Parse error: syntax error, unexpected $end in /home/content/65/3511365/html/anthempages/wp-content/plugins/BP Privacy Redirect/bp_privacy_redirect.php on line 71`I may be way off but it may just be a simple fix.
Any thoughts? Anyone? Pretty please? (I’m not above begging!)
`<?php
function members_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/activity/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function members_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/members/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function groups_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/groups/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function forums_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/forums/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
};?>`
Honestly I don’t think s2member is an option for me as it seems to conflict with another one of my plugins.
Has anyone been able to resolve this yet? Pretty please?
I’ve been experimenting with some code to make into a plugin but it doesn’t seem to be working – I get lovely fatal error.
Parse error: syntax error, unexpected $end in /home/content/65/3511365/html/anthempages/wp-content/plugins/BP Privacy Redirect/bp_privacy_redirect.php on line 71
If anyone is a php guru maybe you could see what I’m doing wrong? Here’s what I have:
`<?php
function members_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/activity/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function members_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/members/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function groups_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/groups/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
}function forums_logged_in_only()
{ global $bp;
if(is_user_logged_in() && $SERVER{‘REQUEST_URI’}==’/forums/’){
/*user is logged in*/
}else{
wp_redirect(get_option(‘siteurl’) . ‘/welcome’);
};?>`
If we can get this working I would be so happy to put it out there as a plugin for everyone. But could someone please help?
Thanks and best wishes,
Kristen