Joomla Community Builder Code

Joomla Community Builder Code
Have a Joomla Community Builder custom field and need some code to display it within a page as a link. I’m sure this is an easy find, I just can’t find it. I have a CB custom field I want to display just below the Joomla Username. Have that one figure out:

Code:
<?php
$user =& JFactory::getUser();
if (!$user->guest) {
  echo ” . $user->username . ”;
}
?>

But then I need to call a custom CB user field and kind of hide it with 6 random numbers before and after the result with a link so it looks like this:

http://www.mydomain.com/new-page-lookuo/121212999999343434

where the 999999 is the cb_credit field and the 121212 is the 6 random before and the 343434 is the 6 random after.

Of course the random numbers would be diff every time page loads. Trying to kind of hid the cb_credit number in the middle.

THANKS!!

Leave a Reply

Your email address will not be published. Required fields are marked *