Link for my application

yuki 15 Feb, 2012
Hi,

Joomla 1.7, I managed to display my application ChronoForms via the menu of the homepage
but, in the "Identification" menu, I can not change the target of the link "Create Account" to point to my application :s
Someone can explain to me how?

Thank you.
yuki 16 Feb, 2012
Here is a code that works fine but just under joomla 1.5 :?
 <?php
defined('_JEXEC) or die ('restricted access');
$mainframe->redirect('index.php?option=com_chronoforms&chronoform=membre');
?>

I want a code that works in joomla 1.7 and thank you ^^
GreyHead 18 Feb, 2012
Hi yuki,

This code will work in Joomla! 1.6-2.5 too:
<?php
$mainframe =& JFactory::getApplication();
$mainframe->redirect('index.php?option=com_chronoforms&chronoform=membre');
?>

Bob
yuki 22 Feb, 2012
Thank you so much GreyHead , it's really nice 😀
This topic is locked and no more replies can be posted.