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.
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.
Here is a code that works fine but just under joomla 1.5 :?
I want a code that works in joomla 1.7 and thank you ^^
<?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 ^^
An easy way may to just use the built in Joomla redirect in 1.7.
http://magazine.joomla.org/issues/Issue-Nov-2011/item/604-Joomla-Redirect-Component-Tutorial
John
http://magazine.joomla.org/issues/Issue-Nov-2011/item/604-Joomla-Redirect-Component-Tutorial
John
Hi yuki,
This code will work in Joomla! 1.6-2.5 too:
Bob
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
This topic is locked and no more replies can be posted.