Search Results for 'private'
-
AuthorSearch Results
-
May 14, 2014 at 11:40 pm #182939
In reply to: remove certain elements from private messaging
julianprice
Participant@bp-help I guess form this previous forum topic he’s wanting to create just utilize private messages https://buddypress.org/support/topic/using-buddypress-messaging-in-a-unique-way/
@sparkingproducts Can you gives us more detail of what you trying to accomplish because it could be as simple as deactivating a component or styling CSS elements to be hiddenMay 8, 2014 at 4:57 pm #182669tweakben
ParticipantHi Giacomo!
I added the following line to my themes functions.php:
/* Stop WordPress from auto embeds */
remove_filter( ‘the_content’, array( $GLOBALS[‘wp_embed’], ‘autoembed’ ), 8 );…and then composed a new Buddypress Private Message with http://www.mysite.com/blah.mp4 as the text.
Now it shows [video src="http://www.mysite.com/blah.mp4" /]
instead of the actual text. It’s still trying to wrap it, but at least not autoplay now.
May 8, 2014 at 12:39 am #182636In reply to: Filtering bp_get_send_message_button()?
modemlooper
Moderatorchange whatever you want in the arguments
function filter_send_message_btn() { $args = array( 'id' => 'private_message', 'component' => 'messages', 'must_be_logged_in' => true, 'block_self' => true, 'wrapper_id' => 'send-private-message', 'link_href' => bp_get_send_private_message_link(), 'link_title' => __( 'Send a private message to this user.', 'buddypress' ), 'link_text' => __( 'Private Message', 'buddypress' ), 'link_class' => 'send-message', ); return $args; } add_filter('bp_get_send_message_button_args', 'filter_send_message_btn');May 4, 2014 at 10:45 pm #182482In reply to: A text editor for messages !
Henry Wright
ModeratorHi @espellcaste
Try adding this to compose.php right under the private message
<textarea></textarea>wp_editor( '', 'content' );I do believe that should be enough to get the basic editor working for private messages on the compose screen.
Note 1: Untested
Note 2: You can also pass an array of arguments in the form of
$settings. This is optional. It will let you do slightly more advanced stuff like load TinyMCE or quicktags. See the Codex link above for more info.May 3, 2014 at 11:35 am #182392In reply to: How to message users… help?
Henry Wright
ModeratorAs an admin you can contact all uses using a sitewide notice. This depends on the messaging component being activated. If you want to contact members individually or if you want to disable private messaging then the only option I can see is to email them directly.
April 30, 2014 at 8:16 pm #182252In reply to: bbPress mentions not in BB notifications
nirgalo
Participantahhh found the solution through bbPress forums: search engine indexing must be enabled in the WordPress settings for this to work! This is quite problematic for private sites (well that not much as those use authentication to get into content). Any plan to address this?
April 29, 2014 at 11:42 pm #182220In reply to: report user report abuse flag something?
localiseorg
ParticipantThis sort of functionality is something that’s definitely required for BP – there’s no way an admin can go round reading everything on a busy site, abuse monitoring has to be crowdsourced to the members.
The plugin I’ve been testing, which was last updated in 2013, is this one: https://wordpress.org/plugins/bp-moderation/
Interestingly it covers just about everything – from members, private messages & their senders, statuses, activity comments, topics, forums, groups, posts, pages, blog comments, and probably a whole bunch of other things. I have a hunch they are hard-coded though.
It works to an extent, but glitches I’ve found so far include:
* Setting to define what text appears on the ‘Flag’ links don’t get applied to all links
* Flag link text for things like posts (and possibly pages) starts appearing in excerpts
* It’s using images rather than FontAwesome / Fontello via CSS = ugly and slow
* The admin menu icon is broken somewhat (looks ugly) but that’s minor thingIMHO if the UI could be cleaned up, images replaced with icon fonts, and somewhat improved control over link text implemented, this plugin would be pretty much there and would cover just about all aspects of WP, BP and (with some extra coding) probably even bbPress.
Unfortunately I’m pants when it comes to PHP so can’t help with this task 🙁
April 28, 2014 at 4:06 pm #182155nirgalo
ParticipantHowdy! So, as there is no reply to this post for days, I would assume either my question is so stupid it does not deserve any answer, or that the option to disable the creation of private/hidden groups is not yet present in BuddyPress. In such a case, can this feature be planned for a future release? Thanks.
April 25, 2014 at 6:15 am #182038nirgalo
ParticipantActually regarding the admin, I can see the Group and Activity entries in the admin menu, so this should be fine for most usages. However I still don’t see a way to prevent users from creating private groups, any idea?
April 19, 2014 at 9:31 am #181737In reply to: WP Multisite with BP or BP on its own?
DennisBarkerCV
ParticipantThis sounds like something that can be achieved without multisite.You can use Buddypress Groups and bbPress running as a forum for each group to achieve the discussion / chat.
Each project could become a BuddyPress Private Group with its own forum / docs.
If you want a seperate blog for each project then that would require multisite,but one blog categorised by project could achieve the same thing without the additional comlexity.
April 18, 2014 at 10:54 am #181655In reply to: Completely private members area
sharmavishal
Participanthttps://wordpress.org/plugins/private-bp-pages/
https://wordpress.org/plugins/private-community-for-bp-lite/above 2 work for me absoutely fine. great plugins by @bp-help
April 15, 2014 at 3:51 pm #181294In reply to: Completely private members area
ivarzLV
ParticipantThere’s no actually need any plugins, you can easily do this by adding these lines to your themes function.php file:
`<?php
add_action( ‘wp’, ‘custom_private_area’, 3 );
function custom_private_area(){
global $wp;
if (!is_user_logged_in()){
if ( bp_is_activation_page()
|| bp_is_register_page()
|| is_page_template( ‘wp-login.php’ )
|| ( in_array( $GLOBALS[‘pagenow’], array( ‘wp-login.php’ )))
)
return;
bp_core_redirect(get_option(‘siteurl’) . “/wp-login.php”);
exit;
}
}?>
April 15, 2014 at 1:27 pm #181291Henry Wright
ModeratorThe best approach is to list all of the places a member can enter text then try to lock each one down.
Off the top of my head I can think of:
The WP admin area – creating posts and pages etc
Comments (if you have comments enabled)
The BP profile area (xProfile fields)
The activity stream (commenting, replies, new updates etc)
Private messaging?
April 15, 2014 at 12:08 pm #181286In reply to: Completely private members area
Peter Hardy-vanDoorn
ParticipantPrivate BuddyPress by Dennis Morhardt works an absolute treat for me.
April 6, 2014 at 8:41 pm #180890wrowlands
ParticipantI am having the same issue. I am getting 404 error for requests to a private group. Very frustrating.
March 31, 2014 at 4:03 pm #180566In reply to: Bugs between bbpress and Buddypress
IngeT
ParticipantConfirming this bug, which lead to some drama on our forum. You think private topics are private, but turned out that if you click on the last reply links from a private forum, you sometimes can get in even when you don’t belong to the group. Not funny.
Also, subforums don’t inherit the settings from their parent forum.March 30, 2014 at 6:37 pm #180526In reply to: scalablity of buddypress
BuddyBoss
Participant1GB RAM is a minimum, 2GB RAM is ideal. As you scale up you may need more. On a good server setup you can actually see live (via SSH) how much of your RAM is being used up and how much is free. If you’re bottlenecking, you can contact the hosting company to add more RAM or bump you up to the next server. That is not the same as migrating to a new host… if it’s within the same company they should handle it for you seamlessly in the background.
Another option is to use Amazon (AWS) instead of a private server and it just scales up automatically as needed – they mostly charge by data rather than by server. They will be more expensive for most sites and will be slightly harder to set up, but they are also incredibly scalable.
A CDN isn’t really a “cache” in the way you imagine W3 working. It’s only caching resources (stylesheets, images, javascript files, etc) but not caching “content”. Your resources usually don’t go stale because they are not updated often. And if you do it properly, the cache can be broken any time you update a resource (by adding a version number to the enqueue in your theme). The version number gets appended to the URL of the resource, so if it changes the CDN thinks it’s a different file and immediately serves up a new file.
Content does go stale. By content I mean the data that is outputting for everyone to see right on the website. Like a profile, activity page, member directory, etc. This is the stuff that plugins like W3 are primarily used to cache (among other things as well).
You can integrate a CDN very easily using WP Super Cache. You can just turn off the content caching stuff and use it only for pushing your resources into a CDN. It’s a set it and forget it kind of setup for the most part.
If you happen to be in the Miami area on May 9, I’ll be speaking about scaling BuddyPress at the BuddyCamp (1st day of WordCamp Miami). http://2014.miami.wordcamp.org/
Should be a fun event.March 28, 2014 at 1:22 am #180420In reply to: "Forums for Groups" vs "Site Wide Forums"
Renato Alves
Moderator@batmanfan You can make a forum private, public or hidden.
Check out the doc: https://codex.bbpress.org/getting-started-with-bbpress/You have no idea what you can learn by reading it. =)
March 27, 2014 at 10:42 pm #180415In reply to: "Forums for Groups" vs "Site Wide Forums"
batmanfan
ParticipantThanks Trifon. But on Sitewide Forums, I can set it to ‘private’ or ‘hidden’ too right? so, just wondering what are the differences and advantages of one or the other?
March 27, 2014 at 10:39 pm #180414In reply to: "Forums for Groups" vs "Site Wide Forums"
Anonymous User 5853594
InactiveBasically yes.
The Sitewide Forums are available to everyone, while the Group Forums are a private forums for a specific group. Other than that, they just share all the normal forum functions.March 25, 2014 at 3:51 am #180268cukeving
ParticipantThe site is still in dev and locked with userid and password or IP address.
Is there a way to contact you privately?
March 15, 2014 at 1:02 pm #179835In reply to: Notification still not being displayed
colabsadmin
ParticipantHave you looked in the db to verify they weren’t deletes? Do you have any plugins installed that might effect that? I remember testing a private activity once that sent notifications even though someone didnt have access to them.
You can prove your theory about the majority being messages by looking in the notification table. In there there are fields that will tell you what component the notification is for (messages, mentions, friend requests, and so on). Hover you mouse over the read/delete actions for the notifications with missing titles. You’ll see the notification ID. Look for those specific IDs to see if there is a common component where this is happening. Either way, you can get the item_id (what you were actually notified on) and verify that item actually exists. If the component is ‘activity’ look for item_id in the activity table. If its from the messages component, then you can look for the item_id in the messages_messages table. (though even if the sender deletes the message, it will still be in the db, so this might not get you anywhere actually)
I’m curious to know what you find. Good luck.
March 15, 2014 at 4:57 am #179827In reply to: Help! button "post update" is not present
Patryk
ParticipantI have the same thing to me and not display private message button, etc
March 13, 2014 at 5:19 pm #179715mcpeanut
ParticipantFirst question would be to ask if your on shared hosting vps or private server?
maybee this link will help you if you take a look. i dont know what hosting your with but have a read anyhows.
https://wordpress.org/support/topic/godaddy-iis-and-removing-indexphp-in-urlp.s i dont know if there is a solution within that post but it may help you find out a little more.
also just found this post too for you.
https://wordpress.org/support/topic/getting-rid-of-indexphp-from-url
March 13, 2014 at 4:40 pm #179712In reply to: Protecting BuddyPress Members
bp-help
Participant@xxxtristamxxx
Try: https://wordpress.org/plugins/private-bp-pages/
Full disclosure, I am the plugin author.
Good luck! -
AuthorSearch Results