• Resolved Hjorth007

    (@hjorth007)


    Hi

    Logged-in members can chat with each other, but messages or smiles doesn’t go through ? I have searches the Rencontre-settings but cant find the problem. Where should I look ? Could it be a plugin or theme-issuse ? I use the Responsive Theme.

    Henrik

Viewing 15 replies - 1 through 15 (of 18 total)
  • Plugin Author Jacques Malgrange

    (@sojahu)

    Hi Henrik,

    What do you expect ?

    • Contact Request => email and +1 in the corresponding count (right sidebar)
    • Smile => +1 in the corresponding count
    • Message => email and +1 in the message menu button (classical menu)

    Regards

    Thread Starter Hjorth007

    (@hjorth007)

    Hi again

    OK, I understand. So I have no need for the rencontre-message-page anymore ? I expected that page to show the messages send from other members….?

    Regards

    help same to me it says message1 when i press it i cant see what they say

    Plugin Author Jacques Malgrange

    (@sojahu)

    Hi,

    I’m not sure to understand. There is a bug ? You want an additional function ?
    Thank you for giving further details.

    Regards

    Thread Starter Hjorth007

    (@hjorth007)

    Hi again

    Just to make things clear…. When a member sends another member a message or a contact-request, they should in both cases receive a mail.

    There is no button or link to accept a contact-request anywhere ?
    There is no messages in the messages-page.
    When you click the link in the mail, you get to the empty message-page I mentioned before……???

    What am I doing wrong ?

    Regards

    Plugin Author Jacques Malgrange

    (@sojahu)

    Hi,

    You recieve an email (not a message). There are one sending per hour, so the email is sent within 60 minutes max.

    Contact request is just an information. You have no action.

    When you click the link in the mail, you get to the empty message-page I mentioned before……???

    May-be there is a bug here ?

    Did you saved the Rencontre/General/general tab (page where is settled the plugin) ?
    What type of permalink do you use ?

    Regards

    Thread Starter Hjorth007

    (@hjorth007)

    Hi

    Yes, I have set the plugin-page to the right page. I use the “Name of post”-permalink. I have tried to change it, but it doesn’t change anything…..

    Regards

    Thread Starter Hjorth007

    (@hjorth007)

    Anything new in this department ? My message-page is still empty even though there should be messages.

    Henrik

    Thread Starter Hjorth007

    (@hjorth007)

    Hi

    This is what I have tried to make the messages show:
    I use the rencontre-page-template in the page-settings.
    I have set the correct page in the rencontre-settings.
    I switched to the rencontre-menu, and can se the count in the menu-item-field, so I know for a fact that there is a message.
    When I click the menu-item all I get is a page with two collumns in an empty table. The headlines of the table is “member” and “date”, but no content.

    Is this a bug you are trying to solve or is there anything else you would like me to try out ?

    Regards

    Henrik

    Plugin Author Jacques Malgrange

    (@sojahu)

    Hi Henrik,

    Try this. inc/rencontre_widget.php, line ~1450, ($v->member) change to read :

    
    if($v->sender!=$current_user->user_login && strpos($a,','.$v->sender.',')===false)
    	{
    	$a .= $v->sender.',';
    	$q1[$k]->member = $v->sender;
    	$inbox[] = $v;
    	}
    else if($v->recipient!=$current_user->user_login && strpos($a,','.$v->recipient.',')===false)
    	{
    	$a .= $v->recipient.',';
    	$q1[$k]->member = $v->recipient;
    	$inbox[] = $v;
    	}
    
    Thread Starter Hjorth007

    (@hjorth007)

    Hi Jacques

    I tried it, but no luck ?? My inbox is still empty, even though there should be messages.

    Henrik

    Plugin Author Jacques Malgrange

    (@sojahu)

    OK,

    Try this, line ~1430, replace $q1 with this :

    
    $q1 = $wpdb->get_results("SELECT 
    		M.id,
    		M.sender,
    		M.recipient,
    		M.date,
    		M.read,
    		U.ID
    	FROM
    		".$wpdb->prefix."rencontre_msg M
    	LEFT JOIN
    		".$wpdb->prefix."users U
    	ON
    		(M.recipient='".$current_user->user_login."' and 
    		M.deleted!=1 and
    		U.user_login=M.sender)
    		or
    		(M.sender='".$current_user->user_login."' and 
    		M.deleted!=2 and
    		U.user_login=M.recipient)
    	ORDER BY M.date DESC");
    echo "*********Count result : ".count($q1);
    
    Thread Starter Hjorth007

    (@hjorth007)

    Hi

    I tried to put the code in the file, and now I get a “**********Count result : 0” in top of the page before the table, which is still emty. But there should be messages. I tried to send a new mesage, just to make sure, but still the count is 0.

    When I go via the rencontre-sidebar, to see who visited my profile, and then click on the profile who has sent me a message and then again click on “Send message”-button, I get to a page where I can see the messages between the profiles and the menu-item “Messages” is lit as an active menu-item….. so the messages is in the table somewhere.

    Can you reproduce this issue on your system or is it just me ?

    Regards

    Henrik

    Thread Starter Hjorth007

    (@hjorth007)

    Further info. I have tried to switch to wp-theme 2013 and disabeled all plugins except for Rencontre and the count is still “0”.

    Henrik

    Thread Starter Hjorth007

    (@hjorth007)

    Two posts up I said: “so the messages is in the table somewhere.” What I meant was: somewhere in the database-tables, not in the table on the message-page. ??

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Member-messages no coming through’ is closed to new replies.