Hi,
I need to add the following to the <?php, but only on a particular page on my site:$user = JFactory::getUser();
$user->load($user->get('id'));
$session = JFactory::getSession();
$session->set('user', $user);
$user = JFactory::getUser();
I need to do this because on this page the user credentials need to be refreshed after being changed.
The page in question has the url:
/welcome-to-the-directory
I duplicated the 'Master' style and assigned it to that page, but didn't see any place that made sense to add the code to. How do I go about doing this?
Joomla 3.1.5
Gantry 4.1.18
Thanks,
Will