Forum Replies Created
-
@iiseptum
Cool, glad it helped.@iiseptum
Maybe this will help. I think the only thing that is changed though is now you would make the edit on lines 36 and 56 and you would probably want to copy that js file into your themes buddypress folder. I am a bit rusty though so I may be wrong.
https://buddypress.org/support/topic/why-does-a-vertical-scroll-buttons-appear-when-you-click-inside-the-post-field/@numumar
I hope this doesn’t sound dumb for asking but have you installed WordPress? Reason being is BuddyPress and bbPress are WordPress plugins so having WordPress installed is a prerequisite to using BuddyPress and bbPress. Again sorry if its a dumb question.@car1979
Not sure if that code still works but you could place it in bp-custom.php:
or in your themes functions.php@alice-kaye
Go to dashboard/menus and in the top right corner click screen options and make sure the box beside buddypress is checked. Once checked you will see the options to add buddypress items in the edit menus tab. Good luck!@manleyf3
Have you tried updating permalinks?@manleyf3
Have you tried activating the twenty-fifteen theme included in WP to see if the issue persists? I am assuming your issue is coming from the “BeeTube” theme which is a premium theme that we don’t have access to so if after activating the twenty-fifteen theme fixes the issue then you will need to contact the “BeeTube” themes support to help figure out what the issue is with the theme. After all when you paid for the theme you should be entitled to some degree of support from them.
Good luck!@tstrickland415 @kobrakai75
I am not sure this is possible at this time but maybe someone else can chime in because I may be wrong because member types is still fairly new to BP and I have yet to play around with it.@rosyteddy
Whats river commenting?Thanks @henrywright this update makes it even better to use in my dev environment!
@manleyf3
You will need to supply more info on your setup in order for the community to help. Please supply WP/BP versions, theme, and plugins used. Thanks!@rapforthemoment
Have you tried this plugin:
https://wordpress.org/plugins/dynamic-widgets/@mcpeanut @vitamincee
Just out of curiosity what role editors are you referring to so the OP can explore that route and can these role editors allow you to assign moderators that wouldn’t have full admin rights? For instance could you as an admin assign a moderator that could edit the activity stream and forum topics without them being able to view the other users PM’s? If so that may be what the OP needs. Thanks!@mcpeanut
While I appreciate your concern on the OP’s topic you should also be aware that most social network admins including the big ones you may be using have access to PM’s as well as IP’s and Internet Service Providers. If your that paranoid about who has access to your data then I suppose the best policy would be not to volunteer it by joining in the first place of course this is just my honest opinion.The part which made me think it was a bug was when I opened the test user’s message from viewing their profile, it brought me to my own profile, but displayed the user’s messages.
I can’t replicate this behavior but as an admin I can go to a members PM’s they have sent and view them. It didn’t take me as an admin to my own profile and show up in my PM’s.
@rosyteddy
I suppose that is why a site owner should seek legal advice when creating a sites “Terms of Service” and “Privacy policy.” I seriously doubt any ethical admin would be reading other users PM’s without just cause or if they were served a court subpoena to access the PM’s.@vitamincee
As @henrywright mentioned that is by design. Otherwise how would you be able to solve issues between users as an admin if one of your users complains that another user is sending harassing private messages. If you was locked out of viewing the private messages as an admin then you really couldn’t determine if its a legit complaint or someone just causing drama.@aymanomar85
@mentions works for me using the latest WP/BP, twenty-fifteen theme, Private Community For BP plugin, and BuddyPress Identicons plugin. Very basic setup for myself so you will need to provide more info on your setup so others can help. 🙂@michaelhpdx
Not sure if these fixes still work but its worth a try:Making WordPress SEO plugin compatible with BuddyPress Part 2
Good luck!Hi @danbp and @henrywright
When I used to have my plugins up on the repo I started writing in the description to “Please read the F.A.Q before installing this plugin” That helped a lot with support requests that were unnecessary. I followed my own advice when I installed Henry’s plugin and I knew the behavior to expect and therefor I didn’t have any issues. The plugin is pretty handy for development and earned my 5 star vote. Thanks again guys!@henrywright
Great job!
I installed the plugin and it works a treat and left a 5 star review. Congratulations!@ctyldsley
Use the below code if you only want the image linking to their profile for logged in users.if ( is_user_logged_in() ) { <a href="<?php echo bp_loggedin_user_domain(); ?>"><img src="<?php bloginfo('url'); ?>/wp-content/uploads/2015/01/ManageProfile.png"></a> }@ctyldsley
I am assuming you will be be putting the image that connects each user to their profile in a template although I am not sure which one you would want to place it in but something like this should work:<a href="<?php echo bp_loggedin_user_domain(); ?>"><img src="<?php bloginfo('url'); ?>/wp-content/uploads/2015/01/ManageProfile.png"></a>Thanks @danbp for the bug confirmation. I opened the below ticket:
https://buddypress.trac.wordpress.org/ticket/6234@buddies
If after following Hugo’s advice does not resolve your issue then place the below snippet in bp-custom.phpfunction bphelp_members_page_private_redirect() { if ( bp_is_members_component() ) { if(!is_user_logged_in()) { bp_core_redirect( get_option('home') . '/register' ); } } } add_filter('template_redirect','bphelp_members_page_private_redirect',1);Good luck!