The profile URL to CB profiles is missing when setting the linking to use Community Builder 2.0+. Specifically the issue is as follows.
IN: components/com_uddeim/getpiclink.php
ON: Line 137
FROM:
Code:
$url=""; //$url = $_CB_framework->userProfileUrl( (int)$ofanid );
TO:
Code:
$url = $_CB_framework->userProfileUrl( (int)$ofanid );
I'm unsure why it's commented out, but a better fix is to utilize getField API as follows to grab the formatname field.
ON: Line 136 - 138
FROM:
Code:
// cbimport( 'cb.html' );
// cbimport( 'language.front' );
global $_CB_framework;
$url=""; //$url = $_CB_framework->userProfileUrl( (int)$ofanid );
$gimmeback = "<a href='".$url."'>".$ofaname."</a>";
TO:
Code:
$gimmeback = CBuser::getInstance( (int) $ofanid, false )->getField( 'formatname', null, 'html', 'none', 'list', 0, true );