Author Topic: Community Builder Integration  (Read 817 times)

Redwreck

  • Newbie
  • *
  • Posts: 4
    • View Profile
Community Builder Integration
« on: April 13, 2012, 10:32:53 PM »
It is my understanding that CB avatars are supported in Simple Review, however I am not understanding how to implement this.   I have chosen to use Community Builder Avatars in the profile configuration tab of Simple Review.  Yet when a user submits a review the default thumbnail is not their cb avatar but, instead, /components/com_simple_review/images/image_unavailable.gif.  Is there any way to have the default be their community builder avatar--if so how would I implement it. 

Thank You and Regards,

Amy

NRyan115

  • SR Team
  • Sr. Member
  • *****
  • Posts: 445
    • View Profile
Re: Community Builder Integration
« Reply #1 on: April 16, 2012, 06:50:45 PM »
Hello, The avatar integration is for the comment system so that users who leave ratings and comments will have their avatar show up. The thumbnail and full size image sections of a review are meant for pictures of the item or thing you are reviewing. There is no pre-built connection between a review's image thumbnail and any given user's avatar.

Maverick

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Community Builder Integration
« Reply #2 on: July 11, 2012, 03:39:15 PM »
I am having the same problem as Redwreck...

How do I get avitar integration for the comment system to work? I am running Simple Review 3.0.13 and Community Builder 1.8.1.  When I go into Simple Review, Profiles it shows Community Builder installed = no.

What am I doing wrong?

At the time of this writing both of those are the latest versions

NRyan115

  • SR Team
  • Sr. Member
  • *****
  • Posts: 445
    • View Profile
Re: Community Builder Integration
« Reply #3 on: July 11, 2012, 06:58:54 PM »
Hello,

It is possible that there has been a change to CB that we may not have known about. You will probably need help from Row1 on this issue - can you please specify the version of Joomla you are using?

Maverick

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Community Builder Integration
« Reply #4 on: July 12, 2012, 04:24:39 AM »
Thanks for the prompt reply
Joomla 2.5.6

row1

  • SR Sole Developer
  • Hero Member
  • *****
  • Posts: 1244
    • View Profile
    • Sockware
Re: Community Builder Integration
« Reply #5 on: July 14, 2012, 08:20:29 PM »
Simple Review currently assumes that CB is installed if the following file exists:
Quote
www/administrator/components/com_comprofiler/comprofilej.xml

As a work around you could try change the following Simple Review file to force it into thinking that it is installed:
Quote
www/administrator/components/com_simple_review/addons/modules/Profile_Module/providers/ProfileProviderCommunityBuilder.php

Change this:
Code: [Select]
function Installed()
{
$path = JPATH_ADMINISTRATOR.DS.'components'.DS.'com_comprofiler/comprofilej.xml';
return file_exists($path);
}

to this:
Code: [Select]
function Installed()
{
return true;
}
If you find Simple Review useful please submit a Review (http://extensions.joomla.org/extensions/communities-&-groupware/ratings-&-reviews/4725/details), your positive reviews will help keep me going!
Please also make suggestions and possible improvements in the forum!

Maverick

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Community Builder Integration
« Reply #6 on: July 16, 2012, 03:40:15 PM »
 ;D Thanks, row1. That solves the problem.