By Steve on Friday, 07 November 2014
Posted in Technical Issues
Replies 11
Likes 0
Views 742
Votes 0
Hello, Please see the attached picture for your information.

When I clicked the author's point which would be linked to author's profile on easysocial. However, I cannot see anything on the author (on picture: blog-2)


Thanks and Best regards,
Steve
Hello,

Look like one of the simicolon got replaced in the code. Please see this screenshot for the correct code.
http://screen.stackideas.com/2014-11-07_1824.png

Hope this help and have a nice day!
Sam
·
Friday, 07 November 2014 18:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Steve ,

sorry for late reply to this,
Can i have your Joomla backend and FTP access so we can take a look of this?
Also can you provide us a post URL so that we can reproduce on this? Please advise.
·
Friday, 07 November 2014 16:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Please note.
·
Friday, 07 November 2014 16:51
·
0 Likes
·
0 Votes
·
0 Comments
·
hello Steve,

Is it possible provide us with your phpmyadmin access? If that was not possible, can you run this SQL in your phpmyadmin then send us the result?

SELECT * FROM `i6q83_social_apps` WHERE `id` = '202' LIMIT 0, 1
·
Friday, 07 November 2014 17:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Steve,

I am sorry for the confusion. The issue was caused by the wrong sef routing in EasySocial and nothing to do with the apps. I've added a fix on your site and now the link to user's points history page is working correctly.

Please verify again.
Hope this help and have a nice day.
Sam
·
Friday, 07 November 2014 17:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Please note it.
·
Friday, 07 November 2014 17:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Steve ,

Can you give it a try, my colleague already help you solved it.
·
Friday, 07 November 2014 18:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Sam,

Thanks a lot!

If I want the link to user's easysocial profile page, is it possible?


Best regards,
Steve
·
Friday, 07 November 2014 18:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Steve,

If I want the link to user's easysocial profile page, is it possible?


Do you mean when someone click on the points link, it bring the user to the profile page instead of points history page? If that is the case, you actually need to customise the link from your EasyBlog. Open the file 'JOOMLA/components/com_easyblog/themes/default/easysocial.points.php' and look for below code at line 12:


<a href="<?php echo FRoute::points( array( 'id' => $user->id , 'layout' => 'history' ) );?>"><strong><?php echo $user->getPoints();?> <?php echo JText::_( 'COM_EASYBLOG_POINTS' );?></strong></a>


and replace the above with:


<a href="<?php echo FRoute::profile( array( 'id' => $user->getAlias() ) );?>"><strong><?php echo $user->getPoints();?> <?php echo JText::_( 'COM_EASYBLOG_POINTS' );?></strong></a>


Hope this help and have a nice day!
Sam
·
Friday, 07 November 2014 18:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks!
·
Saturday, 08 November 2014 00:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Steve,

You are most welcome.
Have a nice weekend
Sam
·
Saturday, 08 November 2014 11:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post