Hi,
Is it possible with a php code to fetch the value from a created CB Field to show elsewhere on the side like you can fetch Joomla core profile info's?
Joomla core profile info's can be fetched pretty simple, for example showing a users Email can be done with:
Code:
<?php $user = JFactory::getUser(); return "$user->email"; ?>
Wondering if a similar php code can be used to fetch a created CB Field?
In my case it is a CB Text Field with name "cb_fyritka" located in the "Contact info" tab which value I would like to fetch and show other places as well, if possible.