By Richard on Thursday, 24 April 2014
Posted in General Issues
Replies 3
Likes 0
Views 0.9K
Votes 0
I have EasySocial set at a menu called Social with Dashboard menu layout and Login screen visible to Guests. The Mini Registration option is set to Quick mode.

The ..../social/ is the link I am using throughout the site to direct everyone to the Social section to login or register.

However the Register link in the Dropdown menu items in the EasyBlog, EasyDiscuss and EasySocial toolbars all go to the full registration page (I believe this is the standard setting), in my case it is to .../social/registration/

How can these 3 links be changed to .../social/ to go to the Social section of the website to register or login?
Hello Richard,

You need to modify the following files

/components/com_easyblog/helpers/helper.php - at line 4967 locate the codes below

/components/com_easydiscuss/helpers/helper.php - at line 3800 , locate the codes below

/components/com_komento/helpers/login.php - at line 51, locate the codes below


$link = FRoute::registration();


Replace it with,


$link = FRoute::dashboard();
·
Thursday, 24 April 2014 10:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect Mark, thank you, appreciated.

I also modified the following file in the same way for the register link on the EasySocial dropdown toolbar menu:

/components/com_easysocial/themes/frosty/toolbar/default.login.php - at line 28

It works, so I hope it was the right one to change!
·
Thursday, 24 April 2014 16:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Richard,

You are welcome. Glad to hear your issue now resolved
Sam
·
Thursday, 24 April 2014 17:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post