Search Results for 'private message button'
-
AuthorSearch Results
-
June 5, 2016 at 1:28 pm #254151MasoudParticipant
@danbp
first of all i have to thank you for your quick answer and great support.
i am very satisfied with the support of this plugin. you guys are great.
thank you very much.
—-
1 & 2 ) the function worked great, but the “private message” button in profile still remains!
i mean if a user can not send message so there is no need to show them that button.
is it possible to show that button only to admins too?3)
oh no no. i didnt mean WP DASHBOARD.
i dont want users to be able to change their email account on their own, after sign-up(bp sing up form), unless they contact admin of site, and request the change of email.
the option of changing email account is in
Setting Tab > General Tab
there is a place for them to write their new email and …
i want to hide and disable it for normal users and available only for admin.
look at this picture please.
the red area.May 30, 2016 at 10:36 pm #253918In reply to: Last active not showing in admin profile
semperayeParticipant* correction. The last active IS showing for admin, I just didn’t see it because it’s inside the “cover image.” This happens when a user is logged into buddy press and views their own profile, this is because in that instance, the “cancel friendship,” and “private message” buttons do not show up.
May 21, 2016 at 3:39 pm #253618mario83sParticipantI need to output “Send Private Message” button on a custom profile page.
I’ve managed to add “Add Friend” button but this one is bugging me.So far, I’ve managed to output only a link which actually works, but the problem is when I click on it, I need to type manually a user name to send message to.
I was hoping to get the functionality that when I click “Send Message”, the recipient is auto populated. Just like it’s on original buddypress profile page.
So far, I used this code..
if ( is_user_logged_in() ) echo '<a href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . get_the_author_meta('user_login') ) . '" title="Send a private message to this user" class="send-message">Private Message</a>';
May 10, 2016 at 10:57 am #253276jameshh93ParticipantOkay I managed to create a add friend button using some code found on this website.. but im still a little stuck on creating a send private message button? any help would be great! thank you!
May 10, 2016 at 10:30 am #253273jameshh93ParticipantHello does anyone know how to display links on wordpress post pages for the author of the posts buddypress profile link, send the author a private message and add friend with an if statement to check that the user isnt the author and if so echo nothing?
Would be extremely helpful!
Thank you!
May 10, 2016 at 8:16 am #253270jawynan1ParticipantWordPress Version 4.4.3
BuddPress Version 2.4.3link – http://dev.inclusivetech.net/hammydowns/
Although you need to be logged in to see the button on the listings page.Ok so obviously I have researched this matter on these forums before and have found useful
advice that i have used to make the button work. The one issue I am having trouble with
is pre-filling the messages subject field with the title of the item they wish to
message the user about.
The link works well and the user(Send To) field that the message is being sent to is correctly filled in after clicking on the button to message that person, similar to visiting a members profile page and then clicking private message.I created the bp-custom.php file to achieve putting the link on the listings page. The code in there is as follows:
function bp_custom_get_send_private_message_link($to_id,$subject=false,$message=false) { //if user is not logged, do not prepare the link if ( !is_user_logged_in() ) return false; $compose_url=bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?'; if($to_id) $compose_url.=('r=' . bp_core_get_username( $to_id )); if($subject) $compose_url.=('&subject='.$subject); /*if($message) $compose_url.=("&content=".$message);*/ return wp_nonce_url( $compose_url ) ; } //for auto populating message content add_filter(‘bp_get_messages_content_value’,’bp_custom_message_content_value’); function bp_custom_message_content_value($content){ if(!empty ($content)) return $content; $content=$_REQUEST[‘content’]; return $content; }
Again this works well but for some reason this line of code does not seem to be effecting my messages
subject field at all. $compose_url.=(‘&subject=’.$subject);I am calling the function correctly and the resulting http address is http://dev.inclusivetech.net/hammydowns/members/admin/messages/compose/?r=tvolmari&subject=Leather+Wallet&_wpnonce=181a9404ae
so I can see the subject title is being passed but it won’t populate my messages subject field.Does anyone have any possible advice on how to solve this??? Or maybe a least a new direction
I should start to look at to figure it out? I’m starting to run out of idea’s.. hahaAny help would be appreciated thx
May 8, 2016 at 5:44 am #253213Topic: Linking buddy press new message as a link on a listings page.
in group forum Installing BuddyPressjawynan1ParticipantWordPress Version 4.4.3
BuddPress Version 2.4.3link – http://dev.inclusivetech.net/hammydowns/
Although you need to be logged in to see the button on the listings page.Ok so obviously I have researched this matter on these forums before and have found useful
advice that i have used to make the button work. The one issue I am having trouble with
is pre-filling the messages subject field with the title of the item they wish to
message the user about.
The link works well and the user(Send To) field that the message is being sent to is correctly filled in after clicking on the button to message that person, similar to visiting a members profile page and then clicking private message.I created the bp-custom.php file to achieve putting the link on the listings page. The code in there is as follows:
function bp_custom_get_send_private_message_link($to_id,$subject=false,$message=false) { //if user is not logged, do not prepare the link if ( !is_user_logged_in() ) return false; $compose_url=bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?'; if($to_id) $compose_url.=('r=' . bp_core_get_username( $to_id )); if($subject) $compose_url.=('&subject='.$subject); /*if($message) $compose_url.=("&content=".$message);*/ return wp_nonce_url( $compose_url ) ; } //for auto populating message content add_filter(‘bp_get_messages_content_value’,’bp_custom_message_content_value’); function bp_custom_message_content_value($content){ if(!empty ($content)) return $content; $content=$_REQUEST[‘content’]; return $content; }
Again this works well but for some reason this line of code does not seem to be effecting my messages
subject field at all.$compose_url.=('&subject='.$subject);
I am calling the function correctly and the resulting http address is
http://dev.inclusivetech.net/hammydowns/members/admin/messages/compose/?r=tvolmari&subject=Leather+Wallet&_wpnonce=181a9404ae
so I can see the subject title is being passed but it won’t populate my messages subject field.Does anyone have any possible advice on how to solve this??? Or maybe a least a new direction
I should start to look at to figure it out? I’m starting to run out of idea’s.. hahaAny help would be appreciated thx 🙂
April 30, 2016 at 4:49 pm #253053In reply to: Private Message Delay in Sending
shanebpModeratorI agree that there should be some indication or disabling when the button is clicked.
You can open an enhancement ticket here – use the same user & pw you use for these forums.
There is a plugin that will disable the button when sending public and private messages.
You can get it here:
https://wordpress.org/plugins/bp-profile-message-ux/Or here:
http://www.philopress.com/products/buddymessageux-free/April 30, 2016 at 1:07 am #253045Topic: Private Message Delay in Sending
in forum How-to & TroubleshootingplumwdParticipantI am running WP 4.5 with up to date BuddyPress with Private Message enabled. I have noticed that when replying to a message, the send button doesn’t change, nor is there any indication that the message is actually being sent. This often results in double messages since the users are hitting “send reply” multiple times.
I have tested this with 2016 and the same thing occurs. Any way to notify the user that their message is being sent before it loads on the screen?
April 7, 2016 at 10:33 pm #252212bradleyrfParticipantHey everyone,
First of all, thanks so much for the work and effort you put into BP. It’s amazing what you all do.I recently updated to the latest BP and WP versions (the details you requested are below).
Issues #1 – when someone initially posts into a group, not a reply to a comment, users who have requested All Email option from the BP Group Email Subscription Plugin receive an email using that BP Group Email Subscription plugin’s email template vs. the new BP email templates. If someone replies to the comment, then the new BP email templates work perfectly.
Issue #2 – the email mentioned in #1 is from wordpress@mydomain.org. while the others are sent from mysite@mydomain.com.
Thanks for any advice you can send my way.
1. Which version of WordPress are you running? 4.4.2
2. Did you install WordPress as a directory or subdomain install? subdomain
3. If a directory install, is it in root or in a subdirectory?
4. Did you upgrade from a previous version of WordPress? If so, from which version? From 4.3.3
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? Yes
6. Which version of BP are you running? 2.5.2
7. Did you upgraded from a previous version of BP? If so, from which version? 2.4.2
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Advanced Cron Manager
Automessage
Black Studio TinyMCE Widget
BP Group Hierarchy
BP Profile Search
Broken Link Checker
BuddyBoss Wall
BuddyDrive
BuddyPress
BuddyPress Activity Plus
BuddyPress Global Search
BuddyPress Group Email Subscription 3.6.0
Select BuddyPress Groups Extras
Select BuddyPress Members Import
Select BuddyPress Message Attachment
Select CCL Salesforce Connector
Contact Form
Easy Google Fonts
Events +
Google Analytics by Yoast
Google Doc Embedder
Google Maps
HiFi
iframe
Invite Anyone
Page Builder by SiteOrigin
PHP Code Widget
PHP Snippets
PopUp Pro
Deactivate
Post Tags and Categories for Pages
Deactivate
Private Community For BP Lite
Redirection
Search shortcode
Shortcodes Ultimate
Simple Follow Me Social Buttons Widget
Simple:Press
UberMenu 2 – WordPress Mega Menu Plugin
User Role Editor
Wordfence Security
WordPress HTTPS
WP-FormAssembly
WPMU DEV Dashboard9. Are you using the standard WordPress theme or customized theme? BuddyBoss
10. Have you modified the core files in any way? Nope
11. Do you have any custom functions in bp-custom.php? Yes
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not running
13. Please provide a list of any errors in your server’s log files. None
14. Which company provides your hosting? BlueHost
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache
March 27, 2016 at 8:18 pm #251843bradleyfriedParticipantOkay, that worked! Now I can see all my WP members on the BP Members page.
The functionality for some users still appears to be limited, however.
– no friend request button on the other members in the list.
– no private message button on the other members in the list.
– no ability to join groups.
– no access to activity stream.etc.
-Brad
March 22, 2016 at 5:49 pm #251680In reply to: Private Message Friends Only
shanebpModeratorafaik, there are no plugins.
But it’s a simple filter.
https://buddypress.org/support/topic/disable-or-hide-private-message-button/March 12, 2016 at 2:07 am #251134Topic: Disable or Hide Private Message Button
in forum How-to & TroubleshootingnamronsParticipantIn an effort to prevent spam I would like to hide the “private message” button only if you are not already friends with someone. Can anyone suggest any code to achieve this?
March 4, 2016 at 11:26 am #250628MarkParticipant@djpaul Hi Paul,
I have no clue what that means! Will copy my details from this ticket into a bug report when I get a chance. It’s 3:22AM so I will do so probably tomorrow.
So I just pieced some code from Buddypress 2.5.0 (previously used code from 2.4.0 files during testing) files together using class-bp-core-whos-online-widget.php and bp-members-widgets.php to create a generic widget containing a generic loop in it. After putting that generic widget into a dynamic sidebar and then calling that sidebar above the cover image header the loop displays and doesn’t break the private message button. Weird way about getting my custom loop to display above the cover image header on a member’s profile but works for some reason. Thought I’d let you know just in case the info helps.
Not sure why the code I pieced together from Buddypress 2.4.0 (bp-members-widgets.php) didn’t work also when I first tried this random workaround. During that round of testing the loop displayed as intended but still broke the private message button. I’m not a coder so I have no clue what is happening, I just figured it was something to do with the loading of the code so I tried random things to try and get it to work. Noticed you no longer just use bp-members-widget.php for 2.5.0 so maybe that has something to do with my workaround working now. Weird.
Anyways, thanks for all your help. Will be great to have one of you experts take a look and remedy this quirk.
Have a great night.
Regards,
markFebruary 8, 2016 at 3:07 pm #249592regvgParticipantHave the same problem: new wp install 442 + buddypress 2.5.8, first on theme 2016, then theme quest, both all the links in profile but no “add friend” button,
in bp settings all functions are enabled,
sending private messages works fine,
group owner invite people works, toochanging theme didn’t help.
Has anyone pls a suggestion?January 6, 2016 at 8:56 pm #248453In reply to: Location of bp_member_header_actions ?
HastigParticipantThanks very much guys!
Is it just my blind eyes or is hookr.io impossible to read? Font size is tiny, color is invisible. A fantastic resource though, bookmarked it, thanks again!
For anybody interested, I just wanted a ‘send private message’ button that I could place anywhere on the page.
The simple way seems to be to use this..
<?php bp_send_private_message_button(); ?>
On click it will open the send message page with the person you want to message already set.
bp_send_private_message_button
is a function that echosbp_get_send_message_button
bp_send_private_message_button
is located in /bp-messages/bp-messages-template.phpsource http://hookr.io/plugins/buddypress/2.4.3/functions/bp_send_private_message_button/
if you’re wanting to change the text of the link you can add this to functions.php or bp-custom.php
function custom_change_send_private_message_text($args) { $args[link_text] = 'send message'; return $args; } add_filter( 'bp_get_send_message_button_args', 'custom_change_send_private_message_text', 1, 1 );
..thats courtesy of shanebp..
https://buddypress.org/support/topic/private-message-button-label-change/another version i was playing with if its of use to anyone..
function custom_change_send_private_message_text($args) { $userName = bp_get_displayed_user_username(); $args[link_text] = 'send ' . $userName . ' a private message'; return $args; } add_filter( 'bp_get_send_message_button_args', 'custom_change_send_private_message_text', 1, 1 );
..you would have to figure out how to remove the hyphen from the username.
January 6, 2016 at 7:56 pm #248447In reply to: Location of bp_member_header_actions ?
shanebpModeratorIt doesn’t handle the avatar.
It creates Friend, Public & Private messages buttons.
And provides a hook for you to add another call.See
function setup_actions()
in this file for where it is hooked to create the default buttons:
buddypress\bp-templates\bp-legacy\buddypress-functions.php
November 13, 2015 at 4:50 am #246705In reply to: Customization questions
scoobs2000ParticipantHi
in short everything you have asked can be done.But I’m a little bias as I honestly believe regarding technology there is nothing that can’t be achieved it just comes down to how much time and budget you have to invest… 🙂
Below is a bit of a ramble…. But might provide insight. after you organize your coffee and come back.
I have nearly completed a project that sounds similar in nature (few weeks from launch in final beta testing), however it was a highly customised solution (private membership site) .
With nearly 70 plugins, 100’s hours coding integration code (lots of trial and error) between the plugins and also compatibility tests with multiples of plugins to ensure no issues, because of slow load times the project requires deploying from CDN,fast servers and customised caching solutions.
most of work load appeasr to be bbpress – so an near out of the box solution, you prob don’t need to go that far.But not to scare you. Here are some pointers that might answer your questions, based on my understanding of the OP.
In my case I spent many months researching solutions with many platforms (open source / paid / managed premium) – buddy press was selected simply because is built on WordPress that’s already has the core abilities you need, you just need to “hook in to’em” and take advantage of this concept – you can keep working on bettering and adding separate components / features as time goes by, great for client, works out a bit cheaper in the startup phase and great for developer – land ya self a permanent support / ongoing development contract……
Is it possible to update profile content/meta? : In general yes, buddy press allows this out of the box
Either the user or the admin can update, you can have admin only fields (the user doesn’t access them – but the admin can)
if you use a membership plugin eg, s2member – you can extend this idea much further eg, only require email on signup, then all other fields are accessible from profile and can set fields on a per membership level,In your case, you might have different profile fields for students, teachers, Parents and only require a couple of basic fields to be completed on signup and all other fields can still be “required” when they reach their profile page.
For profile field management I recommend the s2membership pro plugin (free version available) http://s2member.com/My project has a “todo list” for each and every member – however I’m still to this day unable to find a plugin that interacts with a completed wp/bbp/buddypress site. So I had to code one. The todo list was designed / engineered in a way that interacts with “wordpress” in general, by storing a completely unique data feed much like the activity feed with time stamps and can be programmed to be linked to any site link, media download, page view, forum post, reply any activity on the site can be logged and applied to the feed which the to-do-list interacts with and auto completing (crossing of the item) each item also has dependencies, so you rattle off a list of activities before the task is crossed off and each to-do-list also has dependencies so it is not seen by a user until certain tasks are completed, eg, purchase a course from the store, or complete a previous to-do-list.
In short: Yes it can be done, however I’m not aware of any 3rd party plugin that does this successfully.
In my case I have the to-do-list shown in the sidebar so as a member goes through the tasks the list is also available to them no matter what page they are on. But possible to publish it in the profile page if required.
Regarding email notices, I recommend looking into the woo commerce sensei http://www.woothemes.com/products/sensei/ plugin for your courses that way you have management of email notices, in fact prob most of the things you require will be available via sensei – note this is a premium paid plugin with yearly ongoing licence costs.
Without a free trial version to try before you buy.But maybe gravity forms developer licence might be fine in your case as it has, gateway plugins, qiz and survey plugins – it would be possible to build certain simple courses on the gravity framework including delivery of custom emails – if building a form based system than certainly worth a look into – but would require a developers licence to get all the plugins you would prob require.
In fact what I do is use gravity forms email chimp plugin to send the members email address to an email list (automation campaign) in mail chimp (paid account) that auto sends a welcome emails that I have customize to suit the activity they have completed, this way I can send pretty html + marketing emails + scheduled follow up emails and take the work load off WordPress other than a quick API connect on demand.
Regarding: is it possible to have multiple logins or users access the same account/profile?
In simple: Yes, but it all comes to context of the profile, will each member be able to see other members profiles or will parents be able to edit a child profile etc.Although my project does not require the need for 2 or more members to edit a single profile, I do have multiple levels of context (horizontal and vertical memberships) all with their own set of rules who profiles they can see and what buddypress features are available to them – some members don’t have activity feeds or messages, But I needed to ensure that members that do have access to these features can’t access the features of cross membership and so on.
This is 100% custom code (no plugin) but while coding this up I recall thinking I’m 100% confident it is possible to add another level of check “if current user can edit displayed user” and go from there, all you would need is a profile field / meta that links multiple accounts together –
Eg, a parent account has a profiled field “child user name” – they just enter the child username / user ID – and now we would add the profile check if a parent is viewing the child’s profile.Regarding paying a deposit, and payment, this is my findings.
There was no single one membership / payment plugin that integrated perfectly into what I wished to achieve – I have tested many. please note I’m suggesting there are no plugins that do this stuff just none that achieved the outcomes I needed for my project.
– Tips: – start the project design based on the payment systems / gateway (the complete project and direction of development is 100% dependent on this) because the simple reason every feature you implement needs to check “is a paid member and what level (cap / role) ” – including free membership with paid features “is not a paid member” but has paid for… this includes recurring and non-recurring subscriptions with consideration of what you intend to do if a subscription expires.
Eg, a recurring subscription will either just auto subscribe and pay for the next time frame (or fail)
A non-reoccurring subscription will auto expire after a given time frame (or X cycles)The difference between to the two –
Is generally on a recurring subscription when it expires it also linked to a member account to “do something” eg downgrade membershipA non-recurring subscription is generally used for a onetime payment you have access forever feature- eg, a course and resources, you pay once on a deposit, subscription over several weeks when the subscription expires the member still has access to the course as long as they remain at minimum a free member on the site. (anyhow that’s how I have implemented things)
These two concepts are completely different in the way they interact with the member as well at many levels although on the surface appear to be almost the same, add in a deposit feature you are also opening another level of context to play with, mostly limiting the available options regarding the payment gateway service you will need to use or more so which services have this feature on offer.
As mentioned – my suggestion is start with the gateway solutions first and reverse the design back to the front end. – this is the big lesson I took away with this project (4 rewrites in total) as it was always a block relating to the gateway limitations (and laws relating to online subscriptions in my country).
My project:
Woo commerce (free) for shopping cart system including purchase of courses, subscription to site and deposit/ subscription to courses, plus all other products, deliverable products, workshops, webinars, one on one sessions, resource downloads from pdf to videos. Anything you can think off can be sold through wooWoo commerce quick cart – plugin (paid)– now I can add a buy now button on any page for any product including subscriptions – the membership info page has a standard 3 column price comparison chart with nothing more than a “sign up now” button – clicking the button auto adds the subscription to cart and opens the checkout popup with one click and without leaving the page (no need to send to store)
Sensei (paid)– for courses and fits well into woo commerce system (but requires a couple more plugins and custom integration code if implementing paid / subscription based courses )
Groups plugin (free) to easily manage roles and caps (as I have to teach client staff how to do this and manage the site) WordPress has this capability built in if your a coding ninja (I’m not)
Groups Woo commerce (paid plugin) to link groups to a purchase – apply a role / cap or groups of, to a user based on the purchase.
Then some custom code is required – to perform a check and if a user has a particular role or cap than apply the s2membership level – this check is done at the store level so if a member cancels or defaults on a payment – the membership level is auto adjusted depending on what role or cap is supplied to the user from the groups woo commerce automation. groups plugin manages non-recurring subscriptions so a expired subscription does not remove the users caps and roles (but a default on payment does)
S2member pro – for membership level management including profile fields management and most importantly complete site access management – I can apply access to each and every competent of the site this includes , forums, topics, replies, posts, pages, media, courses, and content within pages eg, home page displays different content based on the membership level / logged in or general public. s2member pro is also used to override default bbpress / buddy visibility settings eg, hidden forums only available to certain member levels – but requires custom code to apply or traverse access levels on submitting topics / replies to ensure widgets and other snippets don’t display private areas to members that don’t have access. (it allows you to write custom queries with zero concern or consideration to access levels)
For subscriptions (paid)– I use woo commerce Subscriptions plugin – this manages on its own site access based on paid recurring subscriptions (or in simple turns on or off user account based on payment) – pay x amount monthly to access certain site features, courses and resources, forums, pages, blog articles etc.
However – woo commerce subscriptions does not manage deposit / time based subscriptions (non-recurring subscriptions) eg, pay a deposit for a course and gain instant access then pay off on a subscription for x amount of weeks / months –
I was not able to find any plugin (free or paid) that does this, so I had to write a plugin currently under experimental concept stage.Other tips: often it’s better to find compatible, well supported and pay for premium plugins that have overlapping features and disengage these features you don’t want to achieve your goals and do as little integration code as possible, but anything you do needs to be well planned and though out as to not to touch core code in any platform, framework or plugin.
At the end of the day you want the ability to upgrade all systems as time go by.Eg, s2member plugin has its build in membership system that is “required to be active” for the plugin to work. – all I did was setup a single paid (never to be used membership) on a paypal sandbox store this includes setting up all the s2membership registration pages etc – then put a simple redirect in the .htaccess on any of these pages. Now to purchase membership you must go to the store (woo commerce) and purchase a subscription via woo – s2member has now has nothing to do with membership registration / payment systems.
And of course I have “force account creation” turned on at the store – you cannot make a purchase without signup at a minimum free site membership.
by disengaging the buddy, bbp, Wp, and all other means of registering (by redirect) but only leaving the woo commerce customer account registration available – The pop up registration form I use for free members is just a woocommerce customer account registration form (with no products attached) with a fallback to the s2membership cut down reg form (in case ajax / jquery etc not working on client side)And now all purchases, subscriptions, shop account, courses etc are now available from the buddy press profile page also via a “woo to buddypress” plugin (or in my case built into the theme)
May sound complicated but as mentioned I would really suggest starting with payment solutions and nut out this part of the project first as this will most likely force development direction,
one of my project goals was a solution that can cater for anything…. so,
Regarding variable deposit / costs amounts based on user input – if using similar approach as I did – you would just setup woo commerce discount codes per variable outcome / result and would just reveal the correct coupon code to the user on the checkout page. they just cut and paste this code into the discount field and click apply.
or setup up multi products – one product per price base. – have the user input their details first and the result would be – apply a groups cap / role then only offer the courses products in the store with the associated price base based on user caps / role –
woo discount coupons can be setup on multiple bases – eg, deposit amount / on going subscription amount or total amount or per product or per cart total etc.
for me was plenty of research into this including concept builds of other community platforms and as above is only a bit of a sample of features used relating to the OP.
I was under very strict key point goals and achievements requiring very specific outcomes many of these affected development direction how / why I implemented the above.There may be better simpler ways to suit your specific project, but thought it might be worth a mention for some direction. or at least insight into some of the plugins I use / ideas and concepts.
my usual disclaimer – if there is something in there for you, that’s great! if not that’s fine too!
enjoy!
September 5, 2015 at 7:08 am #244067djstevebParticipant@ajaysingh-1
man – there is post_comment, post_update – and a bunch of others on the hookr io page
http://hookr.io/plugins/buddypress/#index=anot sure what you mean post button comment section..
hmm.. section on the site-wide activity page?
via private message emails / replies?hmm.. group replies?
I don’t know anything about the functions and code actually – but hopefully the hookr info will help ya, or this comment will help you detail what exactly you are looking for – so if someone does know about this code they will know more about what you mean..
August 27, 2015 at 10:02 pm #243730danbpParticipantis there an other setting ? No other setting in BP.
Deactivate the child and use original Fifteen while testing.
– no error message ? No JS error in console (browser tool) ?
A similar topic here, with other advice
https://buddypress.org/support/topic/private-message-button-only-appears-sometimes/July 23, 2015 at 3:15 pm #242164modxParticipantHi, sorry if I ask a question here but it is also with regards to adding a Send Private Message button/link.
I would like to add it on the user profile. For example when a user views my profile, he/she can send me a private message through my profile page.
Any help is greatly appreciated. Thank you!
May 6, 2015 at 12:36 pm #238740In reply to: Button that links to the Private Message (compose)
Henry WrightModeratorOops, I just noticed I supplied you with an add friend button; nothing to do with private messages, so sorry about that. Let me take a look to see if I can find something.
May 6, 2015 at 11:54 am #238738In reply to: Button that links to the Private Message
Henry WrightModeratorClosing as a [duplicate]
March 7, 2015 at 1:36 pm #235598In reply to: [Resolved] Friend button styling
KSParticipantThanks Dan.
I did search across every file (using Brackets), so I found the .js and .php files where it’s used, but those classes were not found in any CSS file in my installation. Sorry, ‘looking’ was probably misleading. I meant I had searched thoroughly, using any one of a number of appropriate tools 🙂
I did find *some* of the attributes of the button, but not, for example, where the ‘Add friend’ button is getting its colour from, which is different to the ‘Send private message’ button for example. Some CSS has to be differentiating those two buttons, surely? And the colour in mine doesn’t appear anywhere in any CSS except for a class that isn’t applied to these buttons at all.
March 5, 2015 at 8:40 am #235488In reply to: Actifity feed, Note vs message
whoaloicParticipantThank you Henry for your answers.
Note is what I call “What’s new” message in Activity Stream.
That’s why you called public message or mentions?
It’s like a tweet finally ?For private messages, I notice that user could send a message to all users so I was wondering what’s the point of Friends connexion.
I was thinking that only users who are friends could send messages.Than you for the “favorite” button trac. It looks encouraging.
-
AuthorSearch Results