Search Results for 'private'
-
AuthorSearch Results
-
August 12, 2013 at 12:02 am #169726
whitewolf1988
Participant@bp-help WordPress is free and so’s buddypress. If you dont give me free then you suck!
August 11, 2013 at 9:33 pm #169722bp-help
Participant@whitewolf1988
Negative! I want a lot but I ain’t to old for my wants to hurt me! So please don’t ask this again!August 11, 2013 at 9:25 pm #169721whitewolf1988
Participant@bp-help I need for free! I want all for free please!
August 11, 2013 at 9:17 pm #169719bp-help
Participant@whitewolf1988
Negative! The only free version is on the WP repository.August 11, 2013 at 9:14 pm #169718whitewolf1988
Participant@bphelp Can I have for free please?
August 11, 2013 at 8:05 pm #169715bp-help
Participant@whitewolf1988
Updated to 3.6 and I also have a version that allows to unblock entire categories but I am thinking on monetizing it because hardly no one donates and I think the flexibility of unblocking an entire category is worth a couple bucks. Let me know if your interested.August 11, 2013 at 7:29 am #169696bp-help
Participant@whitewolf1988
Just updated Private Community For BP to 3.5 you can now unblock your posts as well as pages.August 9, 2013 at 6:26 pm #169644In reply to: Block This Page From Logged Out Users?
meg@info
Participanthi @tduschei, i suggest you use private-community-for-bp-lite plugin by @bp-help
August 9, 2013 at 12:32 pm #169630In reply to: DONATE TO SEE BP MESSAGES
shanebp
ModeratorWe should continue this conversation in private.
You can contact me via my profile info.August 9, 2013 at 1:15 am #169616In reply to: non-mod/admin of a group can't see contents
@mercime
Participant@rairai-ni What other plugins do you have activated in your site? Check if those are compatible with latest BP version. If not, deactivate those plugins and check if members of private group can see group’s contents.
August 7, 2013 at 9:05 pm #169545In reply to: Registration page not working
bp-help
Participant@grmadmin
It makes no logical since to view the registration if you already have the credentials to be logged in. That is default behavior. Instead of using another computer to check it why not just use a different browser on the same computer? Alternatively you could use the same browser by using firefox’s private window or chromes incognito window.August 4, 2013 at 5:15 pm #169334bp-help
Participant@whitewolf1988
There are other plugins out there that will accomplish this. This plugin is primarily for BP and bbPress pages. I may however integrate this in a future update.August 2, 2013 at 12:43 am #169235LogicWolf
ParticipantHi David,
Hoping I’ll be able to help. I’ve seen alot of questions on the topic of How To Change and Reorder BuddyPress Group tabs and not much great direction. Hopefully you won’t be saying that after my posts… What I’m really hoping is someone comes in with a simpler, more elegant solution 🙂
Were you able to control the standard tabs?
For the standard group tabs, you can control them directly like this:
if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) { $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10; $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60; $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110; }So the code to put in functions.php might look like this:
function whff_setup_nav() { if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) { $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10; $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60; $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110; } } add_action( 'bp_setup_nav', 'whff_setup_nav', 100000 );CUSTOM BUDDYPRESS GROUP TABS
Now, the non-standard tabs are the tricky ones. You can’t access them through $bp->bp_options_nav (at least I couldn’t figure out how to do this.)Nonstandard Group tabs through the $wp_filter global. A good starting point is to dump the $wp_filter variable and get a look at it’s guts. Add this code in functions.php:
global $wp_filter; foreach ( (array)$wp_filter as $key => $value ) { echo '<pre>'; echo '<strong>' . $key . ': </strong><br />'; print_r( $value ); echo '</pre>'; }$wp_filter is a bunch of nested arrays. Search through the output for your Group Tab Names (i.e. search for “Calendar”) and you will find something like this:
[00000000746c6153000000004e38ec1f_register] => Array ( [function] => Array ( [0] => BP_Group_Calendar_Extension Object ( [visibility] => private [enable_create_step] => [enable_nav_item] => 1 [enable_edit_item] => [name] => Calendar [slug] => calendar [admin_name] => [admin_slug] => [create_name] => [create_slug] => [create_step_position] => 81 [nav_item_position] => 40 [nav_item_name] => [display_hook] => groups_custom_group_boxes [template_file] => groups/single/plugins ) [1] => _register ) [accepted_args] => 1 )That’s your Group tab and all the hooks you need to change attributes (in this case it’s the tab that says “Calendar”.)
But… unfortunately you can’t use the [00000000746c6153000000004e38ec1f_register] as a handle — that string is random and changes every time. But, now you know the class name is BP_Group_Calendar_Extension Object and you can search for that in the $wp_filter array and make the changes.
Hope this gets you closer, let me know how you make out. Cheers David!
August 1, 2013 at 2:26 pm #169213In reply to: js loaded but AJAX doesn't work on custom bbp theme
kuching
ParticipantI did further tests.
If I try to disable bbpress only, I still don’t get it working; however I noticed that I can attempt to send private message replies – although it will throw an error after redirect and page reload.
If I try to disable all other plugins (including bbp) it still doesn’t work. Could it be my own theme? It’s hard to debug…Anyone ever ran across similar problems?
🙁
July 31, 2013 at 3:39 pm #169167In reply to: Removing members tab kills links
b1gft
ParticipantOn the default theme I just removed it from the menu bar. On the other theme which automatically shows pages, I made it private.
Same results both ways, stoped the links working.July 28, 2013 at 11:19 am #168939In reply to: BuddyPress 1.8 Issue
GhostPool
ParticipantI already have the following in my custom BP functions file:
if(bp_is_active('friends')) add_action('bp_member_header_actions', 'bp_add_friend_button'); if(bp_is_active('activity') && bp_activity_do_mentions()) add_action('bp_member_header_actions', 'bp_send_public_message_button'); if(bp_is_active('messages')) add_action('bp_member_header_actions', 'bp_send_private_message_button'); // Group Buttons if(bp_is_active('groups')) { add_action('bp_group_header_actions', 'bp_group_join_button'); add_action('bp_group_header_actions', 'bp_group_new_topic_button'); add_action('bp_directory_groups_actions', 'bp_group_join_button'); }As I say these buttons displayed in the theme in v1.7.3, they only disappear in v1.8. I think you’re right of course, it looks like a theme issue, I just cannot figure out what changed in v1.8 to stop these buttons working in my theme.
July 27, 2013 at 2:44 pm #168900In reply to: BuddyPress 1.8 Issue
GhostPool
ParticipantNobody else has had the same issue? Lets try a different tact. Has there been any changes made to private message, add friend and public message buttons in 1.8?
July 27, 2013 at 11:55 am #168898Henry
MemberHi @mercime
The thread example I posted “username/messages/view/30/” can actually have more than two members. Conversations can have lots of members.
Obviously I can tell if the last message in the thread was sent to me by looking at it. I wanted to know how to check programatically. Sorry if I didn’t make that obvious. 🙂
July 27, 2013 at 3:26 am #168892@mercime
ParticipantHow can I tell if that very last message was sent to me from somebody else or sent by me to somebody else?
@henrywright-1 Per structure of the example link you provided username/messages/view/30/ there are only two members in that thread, you and one other member. If the very last message has the avatar/username of the one other member with text e.g. “Sent July 12, 2013” then that message was sent by that one other member in the thread to you. Otherwise, if you see your avatarusername there at that very last message, then you sent that message to the one other member in that thread.July 27, 2013 at 1:18 am #168888Tecca
ParticipantEDIT: Read that completely wrong.
July 26, 2013 at 7:23 pm #168878Henry
MemberHi @mercime,
Apologies, let me explain..
If you see the message listed there then the message was sent
A private message thread can end up with many messages. Some of the messages in the thread were sent by you to a site member and some of the messages in the thread were received by you (sent to you by a site member).
I am interested in the very last message in the thread. How can I tell if that very last message was sent to me from somebody else or sent by me to somebody else?
Hope that helps?
July 26, 2013 at 6:42 pm #168871@mercime
Participant@henrywright-1 Not quite clear. If you see the message listed there then the message was sent. As to whether the other member received the message, not sure until you test it yourself in your installation. If this is not what you’re referring to, please be more specific 🙂
July 25, 2013 at 3:55 am #168779In reply to: BP Groups and Forums
Faramarz
Participant@mercime.. will do. Question, do I have to configure a wildcard for my websites? Here is my scenario: I have one main site WITHOUT buddypress installed and a sub-site WITH buddypress and I only want to have these features on my sub-site: Forums, Groups, Extended user profiles, Private messaging and Friends connection.
Also, I want my sites addresses to look like these
My Community site: http://www.domain.com/community .. also http://domain.com/community (without www) should be accessible
And my main site: http://www.domain.com/.. and http://domain.com/ (without www) should be accessible.
What kind of settings should I use to accomplish this?
July 24, 2013 at 5:31 pm #168749nando99
Participantthis makes buddypress unsuable for me… can anyone help?
July 24, 2013 at 7:03 am #168692In reply to: Private BP without a plugin
bp-help
Participant@ericaeide
Have you tested the plugin with all other plugins other than BP and bbPress deactivated because it works pretty sweet for me and I am not just saying it because it is my plugin? When I say deactivate all but BuddyPress and bbPress it means all and not just the ones you choose to leave activated. This is basic troubleshooting procedures! -
AuthorSearch Results