Topic-icon Edit Links on Joomla User Profile Page

Active Subscriptions:

None
12 years 4 months ago #40310 by Ivan
How can i get to the code that generates the 2 links (View Facebook Timeline Activity and Change your Facebook Timeline Settings)?

Also, can this be disabled from Backend?
The topic has been locked.
Support Specialist
12 years 4 months ago #40321 by alzander
Those links automatically appear there depending on how you have Open Graph Actions setup on your page. Per Facebooks requirements, there has to be some way for a user to disable and/or delete actions they've posted to their Timeline. If you're going to remove those links, make sure there is some other way for a user to see and edit their history.

As for the edits to make, those links are in the /plugins/system/jfbcsystem.php file. Around line 145, you'll see:
$htmlTag = '<a href="' . JRoute::_('index.php?option=com_jfbconnect&view=opengraph&layout=activity') . '">' . JText::_('COM_JFBCONNECT_TIMELINE_ACTIVITY_LINK') . '</a>';
$htmlTag .= '<br/><a href="' . JRoute::_('index.php?option=com_jfbconnect&view=opengraph&layout=settings') . '">' . JText::_('COM_JFBCONNECT_TIMELINE_CHANGESETTINGS') . '</a>';
Edit away!

I hope that helps,
Alex
The topic has been locked.