Support

  1. Megs
  2. General
  3. Wednesday, July 09 2014, 12:51 PM
Hello,
We've developed a .php code to add a sort of graph to the bottom of the profile page on my website.
I've tried a few things but I can't get it to show. I've asked the developer and he should get back to me at some point but I was wandering if you had any ideas on where the code should go?

Thanks so much!
Megs
Accepted Answer
admin Accepted Answer
Admin
Hi Megs,
Two way: Plugin or Module

Module
You can develop a modulo and set the visibility only on profile menu item. So in module you can use our API to get displayed user data:
$id=JRequest::getVar('id',null);
require_once(JPATH_SITE.'/components/com_jsn/helpers/helper.php');
$user=JsnHelper::getUser($id);


Plugin (advised)
You can write plugin based on our skeleton plugin (download at the end of this page https://www.easy-profile.com/docs/44-triggers.html)
- Download, install, enable it
- Go in /plugins/jsn/skeleton/skeleton.php
- delete these example functions triggerFieldAvatarUpdate and triggerProfileUpdate
Easy Profile have some hidden trigger to render content on profile
- renderBeforeProfile
- renderLeftSide
- renderBeforeFields
- renderAfterFields
- renderAfterProfile
There is another trigger to render tabs but is too complex. In future we will write a documentation for this.

You can write a function like this into skeleton.php:
public function renderBeforeProfile($userData,$epConfig){
$html='Your id is:'.$userData->id;
return $html;
}
  1. more than a month ago
  2. General
  3. # Permalink


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.

Request Support

Support is currently Offline

Support Availability

Working days: Monday to Friday. The support staff is not available on weekends; in the most of cases tickets will not be answered during that time.

Reply time: Depending on the complexity of your support issue it's usually between a few minutes and 24 hours for paid members and about one week for free members. When we expect longer delays we will notify you.

Guidelines

Before you post: read the documentation and search the forums for an answer to your question.

When you post: include Site Details if you request a support (you can use the form below the reply in Site Details tab).

Auto Solved Question: If after a week the author of the post does not reply to a request by moderator, the question will be marked as resolved.

Language: only English

Search Users

Easy Profile® is not affiliated with or endorsed by Open Source Matters or the Joomla Project. Joomla is Free Software released under the GNU/GPL License.