Topic-icon Time Line on User Profile

Active Subscriptions:

None
11 years 5 months ago #27888 by macclure
Hi, I have finally finished setting up JFBconnect, works fine but on the bottom of the user profile page im getting:
COM_JFBCONNECT_TIMELINE_ACTIVITY_TITLE
COM_JFBCONNECT_TIMELINE_ACTIVITY_DESC
COM_JFBCONNECT_TIMELINE_DELETE_DESC
COM_JFBCONNECT_TIMELINE_NOACTIVITY
COM_JFBCONNECT_TIMELINE_CHANGESETTINGS

I have looked everywhere to find out what this is and how to correct it or even better turn it off, If someone could tell me how to remove this I would muchly appreciate it.

Cheers

Daniel

File Attachment:
The topic has been locked.
Support Specialist
11 years 5 months ago #27901 by alzander
Replied by alzander on topic Time Line on User Profile
Those strings should have been installed with JFBConnect in the /language/en_GB/en_GB.com_jfbconnect.ini file. Can you check that file to see if those language strings exist? Also, can you let us know what language you're using? Even if it's not en_GB, it should still work, but if you're using something else, it may help us narrow down the issue.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
11 years 5 months ago #27915 by macclure
Replied by macclure on topic Time Line on User Profile
Hi Alzander,

Thank you for your reply, the missing text tags was coming from the language file, I'm using currently de-De as main site language and it was missing from the de-DE.com_jfbconnect.ini so I coppied it from the en-En and the text tags are working now:

File Attachment:


Is there a way to tun off this function in the Profile? I'm afraid that when a user sees this they will think we're collecting data (as my friend did when she found it).
At the moment I'm just using Jfbconnect for a shop login, so nothing more than the login and user information is important to us at the moment.

Thanks,
Daniel
The topic has been locked.
Support Specialist
11 years 5 months ago #27940 by alzander
Replied by alzander on topic Time Line on User Profile
Daniel,
Thanks for the suggestion. In the next v4.3.1 release (due out in the next week or so as a roll-up release to any issues found with 4.3.0), we'll either hide those links automatically if Open Graph Action stuff isn't configured or have an option to choose to hide them. Honestly, if you're using a shop, Open Graph Actions are a great way for promotion.. "John bought xyz", "John reviewed xyz", whatever. We may not integrate with your current shopping extension yet, but if you're interested, let us know what you're using.

As for disabling now, the only way to do that is edit the /plugins/system/jfbcsystem.php file. Around line 118, you'll see the following block of code:
// Add the Open Graph links to the user edit form.
            if ($this->jfbcLibrary->userIsConnected() && JRequest::getCmd('option') == 'com_users' && JRequest::getCmd('view') == 'profile')
            {
                $document = JFactory::getDocument();
                $output = $document->getBuffer('component');
                $newLinks = '<a href="' . JRoute::_('index.php?option=com_jfbconnect&controller=opengraph&layout=activity') . '">View Facebook Timeline activity</a>';
                $newLinks .= '<br/><a href="' . JRoute::_('index.php?option=com_jfbconnect&controller=opengraph&layout=settings') . '">Change Facebook Timeline settings</a>';
                $contents = $output . $newLinks;
                $document->setBuffer($contents, 'component');
            }
Just delete the whole thing. We also noticed that we hadn't created translations for those links, which will also be fixed in the v4.3.1 release!

Thanks again for the report and hope that helps,
Alex
The topic has been locked.