By Brandon on Friday, 24 January 2014
Posted in General Issues
Likes 0
Views 1.5K
Votes 0
Hi Mark and team,

Thanks for your great collaboration with jReviews team to get EasySocial working very well with it. I have one request I hope you can implement in a future release to further integration with jReviews.
jReviews supports adding a "send inquiry" button to listings allowing other members to send a message to the member who posted the listing. Currently this is handled by email.



I would like to be to have this link behave the same as if you were to click the message user button on someone's profile.




Any possibility of somehow making easy for the jReview team to implement this function?
This would be a very helpful function for many people if it were implemented.
Thank you for your time.
I don't think there's any way to implement this unless I hack the theme file. Perhaps there's some sort of triggers done by JReviews?
·
Friday, 24 January 2014 15:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Old thread, my apologies.

What line of code would I need to insert into my theme to trigger sending a message to a user?


·
Thursday, 06 March 2014 02:13
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Brandon,

Are you adding this anywhere on EasySocial pages? If you are, you can just add html codes


<a href="javascript:void(0);" data-es-conversations-compose data-es-conversations-id="9999" class="btn btn-mini btn-conversation mt-10">Write to me</a>


If you are not on EasySocial pages,


<?php
require_once( JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/foundry.php' );
Foundry::document()->init();
Foundry::page()->processScripts();
?>
<a href="javascript:void(0);" data-es-conversations-compose data-es-conversations-id="9999" class="btn btn-mini btn-conversation mt-10">Write to me</a>
·
Thursday, 06 March 2014 13:22
·
0 Likes
·
0 Votes
·
0 Comments
·
·
Thursday, 06 March 2014 13:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you very much Mark!
·
Thursday, 06 March 2014 13:40
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post