Search Results for 'private'
-
AuthorSearch Results
-
April 17, 2012 at 5:59 pm #133148
tdoubleu
MemberThanks Hugo for your reply,
its not that i can’t create groups or topics.. its that those topics are not showing up in the “forums directory”.
May i ask you to try the following steps on your test install? :
– create a private group
– go to that new group
– go to “forum” in that group
– create a new topic
– go to “forum directory” in that group or just hit “forums” on the top navigation bar
– check if you see the newly created topic there– be sure that you are not using an administrator account
– doing the same with a public group -> no problemApril 16, 2012 at 2:57 pm #133086Hugo Ashmore
ParticipantIf you think this is a bug then raise a ticket on the BP trac along with precise steps to replicate the issue, and someone will have a look.
I can create a private group and create topics in it on one of my test installs so I do not think this is a bug.
April 16, 2012 at 9:22 am #133076tdoubleu
MemberHi Relachola,
thank you for your reply. So, if i got you right, you did’t get any response on this.
I can’t believe that noone is using forums in private groups.April 13, 2012 at 9:16 pm #132931@mercime
Participant@jcaynes == have issues with my site being closed somehow. ==
Check dashboard menu Settings > General – Membership – Anyone can Register? –> set it to Yes. If is set on Yes. Click on Save again.
Check dashboard menu Settings > Privacy settings – Site Visibility –> Set it to default where the site is open to everyone. Even on default setting, click on Save.
April 12, 2012 at 7:04 pm #132868jcaynes
Member@mercime, the plugin folder does not exist due to deletion. Therefore that php file also does not exist. Thank you for your assistance.
April 11, 2012 at 4:37 am #132809In reply to: Cannot Access “Private” group
mrjarbenne
ParticipantAre you the site admin? You should be able to access all levels of groups (public, private, hidden) without needed to be a member. Does it happen every time you create a private group, or just this specific group?
April 11, 2012 at 3:07 am #132801@mercime
Participant@jcaynes If you followed plugin instructions per plugin page, you would have created another folder and file like so
/wp-content/plugins/buddypress-private-community-config/mm-buddypress-private-community-config.php
Delete that as wellApril 11, 2012 at 1:31 am #132797jcaynes
Member@mercime, I have deleted it, but it is hanging on somewhere and causing problems, which is why I posted here.
Thanks!
Jan
April 10, 2012 at 11:39 pm #132790@mercime
Participant@jcaynes this plugin https://wordpress.org/extend/plugins/buddypress-private-community/ has not been updated for BP 1.5+. Delete it from your installation.
April 10, 2012 at 3:40 am #132754In reply to: Specify Friend, Family or Colleague
Famous
ParticipantI should have been more specific. I meant, can we separate these classifications because the majority of people seem to like keeping their private lives away from work and vice versa.
April 8, 2012 at 4:29 am #132651In reply to: How to add a background image icon to a button
@mercime
Participant== it looks so rubbish in IE. ==
Yup, IE < 9 is bane of designer/developer
There are still at least 2 solutions as I pointed to above if you want to pursue the buttons later.== But please is there a way to wrap the Edit Profile link which is in the item-header so that it shows on your own profile alone and not when viewing others profile. instead of hiding it under private message button. ==
Saw your new topic and answered you there https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-link-show-on-your-profile-alone/
April 7, 2012 at 4:34 pm #132614In reply to: How to add a background image icon to a button
Prince Abiola Ogundipe
Participant@mercime, thanks so much for your help so far, have given up on the button. it looks so rubbish in IE. i dont even check it until you call my attention to it.
But please is there a way to wrap the Edit Profile link which is in the item-header so that it shows on your own profile alone and not when viewing others profile. instead of hiding it under private message button.
The code am using is :
`<a class="edit-my"<a href="profile/edit”>Edit Profile`I mean may be a wrap to declare something like if is_ user_profile
Regards
April 6, 2012 at 11:42 pm #132578In reply to: How to add a background image icon to a button
Prince Abiola Ogundipe
Participant@mercime, thanks so much. the problem has been solved. what i did was i declare them seprately and it works.
div#item-header #send-private-message a{background: url(_inc/images/plus-icon.png)no-repeat 0 2px transparent;padding-left:16px;
}
div#item-header #send-private-message {background:#ededed;background:-webkit-gradient(linear, left top, left bottom, from(white), to(#ededed));background: -moz-linear-gradient(top, white, #ededed);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#ffffff’, endColorstr=’#ededed’);}April 6, 2012 at 11:23 pm #132575In reply to: How to add a background image icon to a button
@mercime
ParticipantThere can only be normally one background image per element in CSS2 so when you add the icon, it will override the gradient background created in parent theme. You could add extra bg-img using pseudo-elements but that’s good for modern browsers and IE8+ only.
You can use multiple background images for one element with CSS3 compatible with most modern browsers incl. IE9 above. But if you have users who use IE8 below, it will note show up at all.
One solution for cross-browser compatibility down to IE7 is to create an image with the icon and the gradient background, e.g. activity-time-since-with-gradient-background.png, together and hook that to the link:
`div#item-header #send-private-message a {
background: transparent url(_inc/images/activity-time-since-with-gradient-background.png) left center no-repeat !important;
padding-left: 25px;
}`
Of course your image name won’t be that long.The other solution is this: http://www.norestfortheweekend.com/2011/02/26/css3-gradients-multiple-backgrounds-and-ie7/ This is more involved but a great learning experience if you have the time.
April 6, 2012 at 7:43 pm #132566In reply to: How to add a background image icon to a button
@mercime
Participant@naijaping Hook the background image to your link. Add this to your stylesheet
`div#item-header #send-private-message a {
background: transparent url(_inc/images/activity-time-since.png) left center no-repeat !important;
padding-left: 25px;
}`In addition, you have two styles for `div#item-header #send-private-message` and the second one overlaps and hides the Edit Profile link. So look for `div#item-header #send-private-message`
Keep the first one below
`div#item-header #send-private-message {
float: left;
position: absolute;
right: 330px;
top: 22px;
}`Delete the second one below
`div#item-header #send-private-message {
right: 243px;
}`April 6, 2012 at 5:53 pm #132560In reply to: How to add a background image icon to a button
Prince Abiola Ogundipe
Participant@mercime, i created the child theme of bp default theme myself.
site url : http://suchworld.co.cc
i have tried private message button and also friendship button but not works.
Thanks for your help
April 6, 2012 at 4:52 pm #132550In reply to: Setting user profiles to ‘private’
Mary Jane
MemberI do that on jbsocial.com using the following plugins
Member Access
PC Hide Pages
Peter’s Login Redirect
Simple Access ControlApril 5, 2012 at 12:09 pm #132490relachola
MemberHi,
Yes, the user is member of the group, infact the owner of the group.Privacy level is set as below
“
This is a private group•Only users who request membership and are accepted can join the group.
•This group will be listed in the groups directory and in search results.
•Group content and activity will only be visible to members of the group.
“
For public goups, it works fine.The version of WP is 3.3.1 and 1.5.5 of BP.
Applied theme is BuddyPress Default 1.5.5
The defaul wordpress installation/theme is Tachyon 1.1 by RocketTheme, LLCYes, I can reproduce the issue with all plugins disabled.
Thanks
April 4, 2012 at 12:37 pm #132389In reply to: Simple photo community
Barna
MemberCan you pls let me know how can i get in touch with you in a private msg ?
thx
April 4, 2012 at 2:39 am #132366In reply to: Public Groups with Private Forums
lazyazian
MemberCan anyone help with this? I don’t know enough on how to code to do this myself, but I can look into tweaking code if I know where to look.
I started thinking about this more an think it’ll be easier to make the groups private, but to make the “Activity Home” and “Members Listing” public because I don’t want people to be able to just join any public group.
It should be something simple like (excuse my pseduocode):
if member = Not member of group
then show Activity Home and Group Members Listelse show everything
April 1, 2012 at 2:26 pm #132228In reply to: Buddypress breaks https
PJ
ParticipantPaul,
Ideally I’d like to have the whole site forced https since I have a private ssl. So, WP+BP in all https if possible.
I did a fresh install of WP and just installed BP, so I doubt it’s an image issue. Is there a way to go totally https?
I also went to Settings > General and changed WordPress Address (URL) to have an https rather than http. Anytime I click BP parts of the site it goes back to regular http.
April 1, 2012 at 3:36 am #132214In reply to: HobokenMommies.com
jummy
MemberOh this site is just beautiful!
Would you be kind enough to share some information about what kind of hosting (virtual private server vs shared hosting) this site is running on?
Many thanks!
March 29, 2012 at 7:14 pm #132137Boone Gorges
KeymasterIf you don’t want anyone in any group to be able to send invites, put the following in your bp-custom.php file:
function bbg_no_send_invites( $can_send_invites ) { $can_send_invites = false; return $can_send_invites; } add_filter( 'bp_groups_user_can_send_invites', 'bbg_no_send_invites' );If you want to be more selective than that – for instance, allowing only group admins to invite, or blocking invites only in private groups – you’ll need to put some more logic in there before setting
$can_send_invitesto false.March 29, 2012 at 1:43 pm #132122Etienne ROSENSTIEHL
ParticipantI made many changes. I probably did both. Now you know the problem, do you know a solution ?
(I use a very basic structure : WordPress, BussyPress, bd-default theme and Private BuddyPress.)March 29, 2012 at 10:13 am #132115In reply to: Search Buddypress Support Forums
richardpd
MemberHow do I find my BP forum posts here at BP support? I can find my WP forum posts at wordpress.org but not BuddyPress!
My ‘Your Activity’ link tells me the number of my posts but nowhere can I find a link to my posts (so I cannot review them!).
I follow Mercime (a moderator on this site)-but I cannot see a way to private message her for help?!
I am having lots of trouble running BP on my site and am finding help hard to get here.NB Why does my post say ‘Deleted User’ when I am logged in as richardpd?
NNB-Fixed ‘Deleted User’ issue…I was not logged in properly?! I am not sure how that happened but I changed my WP.org settings & relogged in & is fine now!! -
AuthorSearch Results