Search Results for 'private'
-
AuthorSearch Results
-
November 18, 2013 at 3:17 am #174373
In reply to: Disable Buddypress Sitewide Activity RSS
tse11
Participant@aces Thanks much, that was a great idea. Unfortunately it didn’t work. There has got to be a way to at least make these feeds private. If anyone knows, please let me know.
November 17, 2013 at 11:27 am #174338minto
ParticipantSame here, just like biswadip said.
Trac solution did not work.November 16, 2013 at 4:10 am #174275Ben Hansen
Participantyou may be able to hide the element but you won’t be able to obscure the profile url so there’s really no way (at least that i know of) to make usernames truly private.
November 13, 2013 at 5:19 pm #174191Biswadip
ParticipantSame happens to me.
wp3.6.1, bp1.8.1.
It only seems to happen when you are requesting membership for the private group from the page for the private group (http://www.example.com/groups/group-name/) but not if you are making the same request from the page for all the groups (http://www.example.com/groups/).
The trac ticket mentioned above has a suggestion for changing bp-groups-screens.php but that did not work in my case.
November 11, 2013 at 2:28 pm #174057In reply to: How private are private messages?
Marc K.
ParticipantIs there a way to hash private messages in BP for added security?
November 10, 2013 at 6:37 pm #174037In reply to: No all-in-one event calendar plug-in for Buddypress?
Marc K.
ParticipantHi Seth!
Interesting, I didn’t know that you had a BP integration in place for EE. With which BP version was it compatible?
I know that the BP core developers have their hands full of work, so I won’t blame them for not taking on a complete events module in the core.
For me the question now is, which plugin takes the least effort to extend on our own. And yes, I know about your crowdfunding like offer to fund extensions to EE. But I need to meet certain deadlines and I don’t think you can guarentee a certain development until then.
BTW, isn’t the “I’ll attend’ and ‘Maybe’ a pretty simple code addition? A user presses a button which captures that users user id and writes it into a custom field of the event page. The plugin then fetches those ids and shows avatars of those people who attend.
I found an interesting tutorial (http://wp.smashingmagazine.com/2012/01/27/limiting-visibility-posts-username/) which might lead the way for my other request, specific event visibility/privacy:
1. Only friends of events creator (again, write all the user ids of the event creator into a custom field thats not visible/accessible to users and then restrict visibility of event page to those users)
2. Only invited (would require more work. First have a way to notify other users of the event by private message or BP notification. Write the user ids of those into yet another custom field, rest see above)
I am pretty much a PHP noob. But are these things really so hard to do? More than a week of work for an experienced BP developer?
November 9, 2013 at 7:01 pm #174012In reply to: Filtering bp_format_time
shanebp
Moderator> looking at formatting the date in private messages … $just_date is false.
Then the filter will work fine.
The time will be part of the string passed in $date.
[ In your filter, var_dump $date – what do you see ? ]
You just have do some string and date operations on that string.November 9, 2013 at 6:50 pm #174011In reply to: Filtering bp_format_time
Henry
MemberI’m actually looking at formatting the date in private messages and in that case WP doesn’t call the function with
true.$just_dateis set to false by default so that part is all good.as you say I think i’ll have to write my own custom
bp_format_timefunction. Thanks for your help!November 5, 2013 at 5:16 pm #173863In reply to: Private Message button only appears sometimes
Anonymous User 13302461
InactiveOK I’ll try the workarounds.
Thanks a lot for the feedback.
November 5, 2013 at 4:57 pm #173861In reply to: Private Message button only appears sometimes
Paul Wong-Gibbs
KeymasterHi @welshdemo
The theme’s fine. The problem is actually caused by a bug in our widgets (you’re using the Members list and the “Who’s online?” widgets). We’re tracking the bug here https://buddypress.trac.wordpress.org/ticket/5170 and currently aiming to fix it by the 2.0 release, which is probably 4 months away. If we get a fix before then, we’ll put it into a 1.9.x small release.
A workaround is to make sure that no BuddyPress widgets are rendered before the main content of the page. i.e. try moving the widgets to the right-hand column, or a widget area at the bottom of the page, or just removing the widgets.
November 5, 2013 at 4:52 pm #173859In reply to: Private Message button only appears sometimes
Paul Wong-Gibbs
KeymasterThis was cross-posted to https://wordpress.org/support/topic/private-message-and-button-doesnt-always-appear-empty
November 5, 2013 at 4:38 pm #173855In reply to: Link to a private message
L-tic
ParticipantMine is in German, sry.
The 5th setting. So one before costum.November 5, 2013 at 3:26 pm #173844In reply to: Link to a private message
Henry
Memberarticle?
November 5, 2013 at 2:56 pm #173841In reply to: Link to a private message
L-tic
ParticipantAs for the user ID, it’s clear.
But I can’t read out the thread ID because to see the profile of a user, I have to set the permalinks settings to the name of the article.
And if I go to the profile with the default permalink setting, it gave me a 404.November 5, 2013 at 12:10 pm #173832In reply to: Link to a private message
Henry
MemberThe user ID of the admin is usually 1. That assumes you have just one administrator and that was the first user created when you set up BP. The thread ID is the ID of the private message. You can get this from the URL. It’ll end something like /view/86. It is the digit that you want.
November 5, 2013 at 10:33 am #173828In reply to: Link to a private message
L-tic
ParticipantOk.
The user id of the admin is mostly ‘1’, right?
So I would use this one:
<a href=”/<?php echo bp_core_get_username( 1 );
Is this correct?By thread id you mean the id of the specific user profile page?
If so, how do I get this id?November 4, 2013 at 10:19 pm #173803In reply to: Link to a private message
Henry
MemberYou’ll need the
$user_idand$thread_id;for the link to work.November 4, 2013 at 10:06 pm #173802In reply to: Link to a private message
L-tic
ParticipantYes, it’s involved in the conversation.. But it would look more elegant, if the user would be redirected to the exact page.
And yes, i get a 404 error.November 4, 2013 at 7:12 pm #173792In reply to: Link to a private message
Henry
Member@l-tic unless the person clicking the link is involved in the conversation, linking to a private message will surely result in a 404?
<a href="/<?php echo bp_core_get_username( $user_id ); ?>/messages/view/<?php echo $thread_id; ?>/" title="Message">Message</a>November 4, 2013 at 1:36 pm #173781In reply to: Link to a private message
L-tic
ParticipantI really need this function. No one?
November 2, 2013 at 7:10 pm #173716In reply to: Link to a private message
L-tic
ParticipantCan someone help me, please?
November 1, 2013 at 2:35 am #173674willandmae
ParticipantOh Your Right so sorry. Here is my link: http://tvbari.org So Sorry about that and Thank you for helping. Very Very Much!
I have it in the root. No Multisite. BP1.8.1 WP3.7 and the below:
URL: http://tvbari.heavenboundministry.com WordPress Version: 3.7.1 Theme: BuddyPress Default v1.8.1 Multisite Enabled: False PHP version: 5.3.27 MySQL version: 5.5.33 Current User Role: administrator Active Plugins: Akismet 2.5.9 by Automattic (url) All in one Favicon 4.3 by Arne Franken (url) Ban User By IP 1.06 by Danilo Andreini (url) BAW Login/Logout menu 1.3.2 by Juliobox (url) BAW Post Views Count 2.19.11 by Juliobox (url) bbPress - Private Replies 1.0.9 by Pippin Williamson and Remi Corson (url) bbPress - Report Content 1.0.1 by Josh Eaton (url) bbpress Simple View Counts 0.1 by jezza101 (url) bbPress 2.4.1 by The bbPress Community (url) Better WP Security 3.5.6 by Bit51 (url) Block Bad Queries (BBQ) 20130707 by Jeff Starr (url) BNS Support 1.6 by Edward Caissie (url) BuddyPress Group TinyChat Pro 1.2.1 by Van dat (url) BP My Home 2.0 by imath (url) (BuddyDev)BP Poke 1.0.1 by Anu Sharma (url) BP | You Are Blocked! 1.0Beta5 by Gabriel S Merovingi (url) Buddydrive 1.1.1 by imath (url) BuddyPress Docs 1.5.3 by Boone B Gorges (url) BuddyPress Extended Friendship Request 1.0.2 by Brajesh Singh BuddyPress Groups Extras Pro - Search 1.2 by slaFFik (url) BuddyPress Groups Extras 3.6.5 by slaFFik (url) rtMedia for WordPress, BuddyPress and bbPress 3.2.6 by rtCamp (url) BuddyPress MyMood 1.7 by Ayush (url) BuddyPress 1.8.1 by The BuddyPress Community (url) CalculatorPro Calculators 1.1.4 by jgadbois (url) Confirm User Registration 2.1.1 by Ralf Hortt (url) Events Manager 5.5.2 by Marcus Sykes (url) EWWW Image Optimizer 1.7.1 by Shane Bishop (url) Jetpack by WordPress.com 2.5 by Automattic (url) Kitchenbug 0.6.0 by Liquee Technologies Ltd. (url) Moods Addon for Ultimate TinyMCE 1.2 by Josh Lobe (url) Quick Flag 2.11 by Marko Martinović (url) Social Articles 1.4 by Broobe (url) Stop Spammer Registrations Plugin 4.3 by Keith P. Graham (url) TDLC Birthdays 0.4 by Tom Granger (url) Ultimate TinyMCE PRO 9.1 by Josh Lobe & Marventus (url) Visitor Maps and Who's Online 1.5.8.1 by Mike Challis (url) WangGuard 1.5.10 by WangGuard (url) WP Super Cache 1.4 by Donncha O Caoimh (url) Yet Another Related Posts Plugin 4.0.8October 31, 2013 at 1:53 pm #173653In reply to: Private messages outside /member/messages
Henry
MemberThis will help:
October 30, 2013 at 9:11 am #173600In reply to: Private Message button only appears sometimes
Anonymous User 13302461
InactiveAhh yes. seems to appear every time with default template. I will go to the theme support forum and ask there. Thanks.
October 29, 2013 at 11:20 pm #173584In reply to: How to get total private message count?
Henry
MemberGot it, if anyone ever needs this:
global $messages_template; $total = $messages_template->total_thread_count; -
AuthorSearch Results