link "back to home" after registration - Joomla! Forum - community, help and support
hello everyone
sorry english. finished site jomsocial. have problem , have not found answer anywhere.
after registration form, there link "back home" possible change link? because not returns me home page of site.
the correct path is: mywebsite com
and is: mywebsite com/jomsocial
i read had edit file : components/com_community/templates/default/register.success.php
but stuck
. thank help
sorry english. finished site jomsocial. have problem , have not found answer anywhere.
after registration form, there link "back home" possible change link? because not returns me home page of site.
the correct path is: mywebsite com
and is: mywebsite com/jomsocial
i read had edit file : components/com_community/templates/default/register.success.php
code: select all
*/
defined('_jexec') or die();
?>
<div>
<div class="text"><?php echo $message; ?></div>
<br />
<div><a href="<?php echo $uri; ?>"><?php echo jtext::_('com_community_back_home'); ?></a></div>
</div> but stuck
so sound of things have installed joomla + jomsocial in subdirectory mail web site called mywebsite com/jomsocial , want home link go main web site not joomla + jomsocial installation. if correct following code should work (quick , dirty)
code: select all
*/
defined('_jexec') or die();
?>
<div>
<div class="text"><?php echo $message; ?></div>
<br />
<div><a href="http://www.mywebsite.com"><?php echo jtext::_('com_community_back_home'); ?></a></div>
</div>
Comments
Post a Comment