Accessing Custom Field Values

  • Chris scott
  • Topic Author
  • Offline
  • New Member
  • New Member
More
8 years 7 months ago #87102 by Chris scott
Accessing Custom Field Values was created by Chris scott
I have created a custom field for an external ID. I need to access that value on other joomla pages. Pages that are not in Membership Pro. Is there a way (plugin, or db query) to access that value?

Please Log in or Create an account to join the conversation.

More
8 years 7 months ago #87106 by Paul Knox
Replied by Paul Knox on topic Accessing Custom Field Values
I think I have a similar question. I have created a custom field and want to display it in an article. I'm building a reporting page with the following

<?php

$user =& JFactory::getUser();

if (!$user->guest) {
echo 'Hello ' . $user->name . '<br />';

echo '<br />You did the following cases';

}
?>

And want to add a custom field associated with the logged in user... I trield adding the custom field name 'osm_Profession' but nothing..

Paul

Please Log in or Create an account to join the conversation.