Hello all,
I used the sobipro member plugin to integrate jcomments, but i had somme erros when submitting comments.
Indeed, when i sent the comment, the form wasn't empty, i didnt receive any thank you message, notifications wasn't sent BUT comment was registered in the database, in the backoffice, and, after refresh the page or the comments, i could see it appears.
I had to do a condition in order to make it work properly :
(components/com_jcomments/jcomments.ajax.php)
around line 456
JCommentsObjectHelper::storeObjectInfo($comment->object_id, $comment->object_group, $comment->lang);
I had to insert a condition :
if($comment->object_group != 'com_sobipro')
JCommentsObjectHelper::storeObjectInfo($comment->object_id, $comment->object_group, $comment->lang);
Everythings works fine, but i dont know if this line is important for jComment... May a developper or a team member validate this correction ?
Thanks a lot,
Bruntho