Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private message button'

Viewing 25 results - 276 through 300 (of 327 total)
  • Author
    Search Results
  • #25334
    jnnkn
    Member

    Hi guys i have a problem that when i click on private message button on my friends profile compose page opens but the send to is empty while when i press the private message button on my non friend member it automatically enters the members name near the send to please help i couldn’t fix it i will go crazy

    archonic
    Participant

    I couldn’t find anything on this which probably means it’s something small and dumb. This is a recent issue (within the last 48 hours) that could have been the result of a setting change or an update (sorry, don’t know which).

    When a member hits “Request Membership” on a private group, the red error bar appears with “You do not have access to this group”. Being a member of the root site doesn’t help and I can’t find settings anywhere to change it.

    I’ve backdated all plugins (including buddypress) to those on my staging server (where everything is working fine) and no luck. That would suggest this issue is in fact a settings blunder. I’ve also poked around in the source code and can’t find an obvious reason for the error to be appearing other than the user not being logged in but that wouldn’t make any sense.

    Worth noting: On the broken site, “Request Membership” and “Join Group” buttons do not appear.

    http://dhcworks.carleton.ca/groups/
    http://dev.archonic.com/carleton/dhc/groups

    If you’d like to see what I mean for yourself, message me for test account access for my staging and production servers and I’ll provide it.

    Thanks in advance!

    #119764
    Boone Gorges
    Keymaster

    Just to be clear – by “autocomplete” you mean that, when you click the Private Message button, the user’s name is already filled in as a little box on the Compose screen, right?

    sdls
    Member

    Hey all!
    Quick note on this bug we found today. When sending a private message the autocomplete does not always fill in correctly. Friends and activity stream has been turned on / off to see if there is any intereference and still no success.

    Scenario is…Private messaging does not always autocomplete when clicking on “private message” in the users profile.

    User A clicks on the private message button and autocomplete shows correctly
    User B clicks on the private message button for USER A and autocomplete shows correctly
    User B clicks on the private message button for USER C and autocomplete does NOT show

    All of these users have the same role, and being a “friend” with each other has no effect to this scenario.any insight you could provide would be greatly appreciated. THANKS!

    #23731
    boobleay
    Member

    I’m making some custom buttons for my member pages using bp_send_private_message_button() as my template (see below). What I want the buttons to do is link to the page specified in the link_href field. I need that link to go to the archives page of whatever user’s profile was being viewed when the link was clicked. This is for a “view user’s posts” button on each member’s page.

    What would the syntax be for that particular link in the link_href field below? I’ve tried a few things but not having much success.

    Code:

    `/**
    * bp_send_private_message_button2()
    *
    * Copy of original bp_send_private_message_button()
    *
    * @uses bp_get_send_message_button2()
    * @since 1.2.6
    */
    function bp_send_private_message_button2() {
    echo bp_get_send_message_button2();
    }

    function bp_send_message_button2() {
    echo bp_get_send_message_button2();
    }
    function bp_get_send_message_button2() {
    return apply_filters( ‘bp_get_send_message_button2’,
    bp_get_button( array(
    ‘id’ => ‘private_message2’,
    ‘component’ => ‘messages2’,
    ‘must_be_logged_in’ => true,
    ‘block_self’ => true,
    ‘wrapper_id’ => ‘send-private-message2’,
    ‘link_href’ => LINK GOES HERE,
    ‘link_class’ => ‘send-message’,
    ‘link_title’ => __( ‘Send a private message to this user.’, ‘buddypress’ ),
    ‘link_text’ => __( ‘Post New Ad’, ‘buddypress’ )
    ) )
    );
    }`

    jeezyo
    Member

    drwebsitein, did you ever find a solution to this? im looking to implement a similar feature, and need to pass in the username.

    #22920
    Eyal
    Member

    Hi,
    i was looking around for a privacy solution in buddypress. Means, that a user will not be able to see a non friend’s profile. There is a plugin called “BuddyPress Profile Privacy” that work great for some people. However for me and for many other the plugin gives error and i couldn’t find a fix for it.
    i did manage to find a solution that for now seems to work for me. the original function of the function below i found here (http://premium.wpmudev.org/forums/topic/additional-buddypress-profile-privacy-settings) thanks to Richie_KS. the original function direct a user to a different page (non-friend.php) when he is trying to see a non friend profile. which can work just fine. However, i changed the function and now if i will go to a non friend page i will see his picture , “Add Friend” button and “Send private message” button. but no profile information will be displayed. This way i can also choose in which pages to block the information. (profile , activity , blogs…..)

    few simple steps :

    1) paste this function in your function,php :
    `
    //


    check if member is a friend


    //

    function bp_displayed_user_is_friend() {
    global $bp;
    if ( bp_is_profile_component() || bp_is_member() ) {
    if ( (‘is_friend’ != BP_Friends_Friendship::check_is_friend( $bp->loggedin_user->id, $bp->displayed_user->id )) && (bp_loggedin_user_id() != bp_displayed_user_id()) )
    if ( !is_super_admin( bp_loggedin_user_id() ) )

    return true;
    }
    }
    `

    2) i created a template file called “not-friend.php” where i put the message i want to be displayed . this is how mine looks like :

    `

    This information is avaliable only for friends

    `

    simple!!

    * i uploaded the file to the buddypress theme folder under /members/single/

    2) now you can go to the pages you want to make private (pages found in buddypress theme folder under /members/single) and add this to the top of the page:

    `

    `
    //////////////////////////////////////////////////////
    here goes the original information of the page.
    ///////////////////////////////////////////////////////

    and add this below the information( should be at the bottom of the page):
    `

    `

    as for now it works great for me. if any of you try it and find something wrong please let me know.

    Aaron Schreiber
    Participant

    I just got this problem reported to me by a lot of users. When they click the “Send a private message” button on the user profile page they are sent to the compose page with a different users name in the send to area, and it’s always random! It never works the way it is supposed to, I need this to be fixed ASAP I have a site with over 1400 members!

    #22197
    neosmedia
    Member

    Hi,
    Does anyone know how to change the button text in the core member functionality. For example I want to change “Send Private Message” to “Trade Love Note”. This is after two users are friends.

    Is it done in MyPHPadmin or in a file in the ‘wp-content’ folder?

    Thanks
    Tyler @neosmedia

    drwebstein
    Member

    Thank you for your response, Chouf1. Creating a button to link to the page from where they can send a private message is exactly what I was trying to do.

    Do you have any idea whether there’s a way to implement this so that they don’t have to manually enter the user name once they arrive at that screen?

    It seems like it might be doable with a second version of the bp_send_message_button() function that has been revised to accept the username as a parameter. I can tinker with the idea, but I thought I’d put it out there in case somebody knows whether or not there are any reason why this idea wouldn’t work.

    Thank you.

    danbpfr
    Participant

    To prevent spam, the fonctionnality you want to use is not avaible. You can see tthe function in bp-messages-templatetags.php:522

    Anyway you can add a button, which opens the send message page, but you need to add manually the user name.

    Open from your_child_theme/groups/single/members.php
    and add the function ` ` in the place you want.

    You can also learn to your user to use the profile page of their contact to send them a private massage.
    The number of click to do this is the same i think.

    It’s your choice ;)

    drwebstein
    Member

    In the list of all of the Members of a single Group, I’m trying to add a “Send Private Message” button, like the one that appears on a the Member Profile page.

    Is this possible? Can anybody recommend how I would do so?

    I’d also like to add the most recent status update for each member within the same list. Is that possible?

    Thank you.

    stephensimon
    Member

    Here’s where we encounter the error. First we go to the Members tab and select a member. On that member’s page, we click the “send private message” button. After filling in the email form and submitting, the page is returned with this error: “There was an error sending that message, please try again.” This only happens when attempting to send to a user with a country code extension in their email address. (We figured this out by looking at the user accounts that we couldn’t send messages to – the ones that triggered the error all had email addresses with country codes.)

    #21377
    shanebp
    Moderator

    I need to add a button on single profile pages.
    The button will send a private message to the user being viewed – but the message is preordained.
    (It’s a promotional thing)
    So we don’t want to go to a compose page – just send the message.

    In member-header.php, I add a button:
    `

    <a href="” title=””>

    `

    In bp-custom, I add the functions:
    `
    function bp_send_private_grrr_link() {
    echo bp_get_send_private_bzzzt_link();
    }
    function bp_get_send_private_bzzzt_link() {
    global $bp;

    if ( bp_is_my_profile() || !is_user_logged_in() )
    return false;

    return apply_filters( ‘bp_get_send_private_bzzzt_link’, bp_send_private_bzzzt() );
    }

    function bp_send_private_grrr() {
    $subject = ” I just sent you a BZZT!”;
    messages_new_message( array(‘sender_id’ => 1, ‘subject’ => $subject, ‘content’ => “BZZT!”, ‘recipients’ => 9) );
    // sender_id & recipients hard-coded for testing
    }
    `

    The above will send a message – But it does so as soon as a profile page is loaded.

    How can I stop the message from being sent until the “Send a BZZZT!” button is clicked ?

    #107386
    4colourprogress
    Participant

    Okay well I tried hooking the icon by adding another generic button div but it still wont acknowledge it as a link. I’m guessing it’s something to do with the fuction, but if I’m not suppost to put the code in that file then where should I be putting it ?

    `

    <a href="”>
    <img src="http://www.pixelcove.co.uk/images/addcontact.png&quot; title="Follow “>
    <a href="”>
    <img src="http://www.pixelcove.co.uk/images/messagecontact.png&quot; title="Message “>

    `

    4colourprogress
    Participant

    Hi All,

    Not sure if this is the right place for this so sorry if thats the case!

    I’m currently trying to change the 2 buttons listed as “Add Friend” and “Send Private Message” on my theme to icons instead of words.
    I’ve managed to get the “Send Private Message” Icon working perfectly by editing the file members/single/member-header.php but when I try to to wrap the bp_add_friend_button function in an a href but It doesn’t seem to want to work!

    Here is the code that I used for the icons

    `

    <a href="”><img src="http://www.pixelcove.co.uk/images/addcontact.png&quot; title="Follow “>

    <a href="”><img src="http://www.pixelcove.co.uk/images/messagecontact.png&quot; title="Message “>

    `

    Any advice on this would be greatly appreciated!

    Many Thanks

    Chris :)

    Hey guys, I hope you can help me.

    I have been setting up my buddypress install for a few weeks now (tinkering with many plugins and trying to get it just right before it goes public) and I’ve run into a couple of issues which I have been unable to resolve.

    I would like some parts of my site which are restricted to be viewable to non-members (or members who are not logged in) and some parts which are accessible to be restricted. My WordPress/BuddyPress settings are all set for public viewing/registering.

    Perfect: My Homepage is set to Activity Stream with selected activity types hidden from non-members and this is working well.
    Would like restricted: My Members page allows non-member to view my members list which I would like to change so If the user is not logged in they will be redirected to the register page.
    Would like partially unrestricted: My Groups page restricts non-member and redirects them to the register page but I would like non-members to have access to my Groups List but not individual groups.
    Would like unrestricted: My Forums page restricts non-member access but I would like all my public group forums to be accessible by all users.

    I am using plugins: BuddyPress Links, Jet Event System and Achievements which all add a nav button to BuddyPress header bar but all these pages have restricted access too. I would like all these pages to be viewable by everyone.

    Standard public blog pages created in wp-admin are accessible to non-members and I wondered if it is something I have done to my install while playing with plugins. I’ve been searching for a way to fix this for ages now on google and even in bp code (mostly theme which is bp default by the way) but can’t find anything. Pages redirect to **mysite.com**/register/?private=true which shows a red message bar at the top which says: This is a private network. You must register first before fully interacting with the rest of the community.

    Please help – I hope I’ve provided enough info (didn’t want to post a proper link to my site as I don’t want it public until it’s ready.

    Oh and thanks to all wp/bp/plugin devs you are awesome!

    #100969
    glittereyes
    Participant

    I agree to this! For now, how can I switch the places between the cancel friendship button with send private message buttons?

    cemery
    Member

    I’ve just tried to integrate Buddy Press into a custom template I built for my sit STRAYOutdoors.com, but I’m having trouble with the Member Buttons that members use to connect with each other.

    When a member tries to “Send Private Message” or “Mention this User” they are redirected to the latest blog post. Also, when a member tries to “Add Friend” they get a message that a message on the page that says “Friendship could not be requested.”

    I’m running WordPress 3.0.3 and BuddyPress 1.2.6. I used BuddyPress Template Pack 1.0.2 to add BP functionality to my theme. I’m using a number plugins, but would rather not disable them as I’m working on a live site (yes, I know, bad idea, but it’s still a small site, so the stakes are fairly low).

    These functions remained broken when I switched to using the default BuddyPress theme also, which makes me think it’s something to do with a plugin. (Does anyone know of any know plugin conflicts that might cause this?)

    I’ve looked around, but haven’t had any luck finding an answer.

    hotforwords
    Participant

    If you use Buddypress Template Pack and upgrate Buddypress to 1.2.6 and decide to update the template files that Template Pack copied into your WordPress Template directory with the updated 1.2.6 bp-default template files, things will break in your WordPress/Buddypress site. Add Friend and Send Private Message buttons will disappear (and maybe other things break as well.)

    Anyway.. I found a way to fix Buddypress Template Pack (which has not been updated since February, by the way.)

    Copy and paste over some of the items from functions.php in the bp-default theme into the bb-template-pack.php file in the Buddypress Template Pack plugin folder.

    On line 35 of bb-template-pack.php I changed bp-js to dtheme-ajax-js

    Then I pasted in everything from line 24 through 36 in functions.php in the bp-default theme functions.php and pasted it into bp-template-pack.php after the bracket } after line 35

    I have compressed a copy of my new bp-template-pack.php if you want it. You can download it here: http://www.hotforwords.com/files/bp-template-pack.zip

    #16181
    cmccarra
    Participant

    Hi,
    The user interactions buttons “Add Friend”, “Mention This User”, and “Send Private Message” don’t seem to be there under any of the profiles on my site. Any ideas why? Something disabled?

    Screenshot:

    #96119
    r-a-y
    Keymaster

    @intimez – Just checked Private Messages for Friends Only and the plugin still works fine on BP 1.2.6.

    BP 1.2.6 made some changes to the way buttons are rendered.

    If you modified the member header in your child theme, you’ll need to look at the changes made to /members/single/member-header.php and apply them.

    #16054
    intimez
    Participant

    After upgrade to 1.2.6, no longer there. Back to 1.2.5 ok.

    Add Friend
    Mention this User
    Send Private Message

    Maybe buddypress private messages for friends only plugin @r-a-y need update? Maybe it’s 1.2.6?

    Anyone can confirm?

    #15561
    Julian
    Participant

    Hi,
    a few days ago I installed Buddypress 1.2.5.2 on a fresh WordPress 3.0.1 instance.
    I usually access it with Firefox 3.6.10 with the NoScript Extension installed.

    Everything is working fine except one little thing: I am unable to post activity updates neither on my personal page nor in groups. If I do so, the loading wheel next to the post update button will spin infinitely. The success function of jq(“input#aw-whats-new-submit”).click in /wp-content/plugins/buddypress/bp-themes/bp-default/_inc/global.js will never be called.
    The bizarre thing is: Everything else works. I can post comments, new forum topics, private messages and create groups.

    Anyways, there are some workarounds that work for me:
    1) Use a different web browser (IE and Opera work)
    2) Uninstall the NoScript extension (just disabling it doesn’t do the trick)
    3) The strangest one: Post the update while the page is still loading

    I also checked the communication between my client and the server with Wireshark. It revealed that in case of success, the server answers with the new html page and in case of failure it answers with a “403 Permission denied on /wp-load.php”. This page will never be showed in my web browser.
    So this makes me think that there may be some problem with the user authentication in Buddypress.

    It also may be a problem with the cookies of my client as I have a duplicate cookie “wordpress_xxxxxxxxxxxxxx” with two different paths as value, respectively. I don’t know if thats a problem or just normal.

    Now I don’t know how to go on from here and what else to check.

    I would be very happy if someone could help me out in solving this problem.

    Best regards,
    Julian

    #14063
    roelant
    Participant

    I created a new (private) group (as just a subscriber). Then I requested membership for this group with another user and accepted that one.
    After that I tried to ban that user, but i got the following message:

    “There was an error when banning that user, please try again”

    But the user was still indicated as banned (and the user couldn’t request again, but he could write his motivation, etc. After clicking the request button it showed the message: “There was an error sending your group membership request, please try again.”)

    Am I the only one who gets this message?

Viewing 25 results - 276 through 300 (of 327 total)
Skip to toolbar