I have followed the tutorial pdf perfectly and all is working perfectly.
EXCEPT -- I cannot make my normal register links become the chronoform like the last page of thePDF says to do.
I am in Joomla 1.5.15
<?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('customregister');
//MSS edited this to use chronoforms
?>
I have this at the top fo the default.php in the view/tmpl folder and have test that to make sure it is live with an echo call...
What do I need to do to insure that the only registration form available is the new chronoform?
What happens is that the user goes to
http://blueeyedpanda.com/web/component/user/register#content
EXCEPT -- I cannot make my normal register links become the chronoform like the last page of thePDF says to do.
I am in Joomla 1.5.15
<?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('customregister');
//MSS edited this to use chronoforms
?>
I have this at the top fo the default.php in the view/tmpl folder and have test that to make sure it is live with an echo call...
What do I need to do to insure that the only registration form available is the new chronoform?
What happens is that the user goes to
http://blueeyedpanda.com/web/component/user/register#content
Hi Jim,
Put the full url in the redirect. It will be something like
index.php?option=com_chronocontact&chronoformname=customregister
Bob
Put the full url in the redirect. It will be something like
index.php?option=com_chronocontact&chronoformname=customregister
Bob
Hi
I'm trying to get the redirect working as well.
I have this in components\com_user\views\register\tmpl\default.php:
But it's not redirecting...
Not sure what I'm missing.
I'm trying to get the redirect working as well.
I have this in components\com_user\views\register\tmpl\default.php:
<?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('index.php?option=com_chronocontact&chronoformname=aloha_registration'); ?>
But it's not redirecting...
Not sure what I'm missing.
This topic is locked and no more replies can be posted.