I followed the instructions on setting up the Joomla registration forms. Tested and it works. But how do I get it to redirect to the chronoforms registration form from the J Login module ['Register' or 'Create a new account']? I've enabled the plugins...
Using the latest version of chronoforms V3.2 and 1.5.22 Joomla
I included the hack: <?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('index.php?option=com_chronocontact&chronoformname=registration');
?>
components/com_user/views/register/tmpl/default.php
Thank you!!!
Using the latest version of chronoforms V3.2 and 1.5.22 Joomla
I included the hack: <?php // no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('index.php?option=com_chronocontact&chronoformname=registration');
?>
components/com_user/views/register/tmpl/default.php
Thank you!!!
Hi rainie285 ,
It may be that the RocketTheme template you are using is over-riding the default view in com_user. You'd need to check if there is an over-ride file in the template's html folder.
Bob
It may be that the RocketTheme template you are using is over-riding the default view in com_user. You'd need to check if there is an over-ride file in the template's html folder.
Bob
That was exactly it!
/templates/(template name)/html/com_user/register/default.php
Replaced:
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
With:
// no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('/index.php?option=com_chronocontact&chronoformname=registration');
?>
Thank you!!!
Rainie dey
/templates/(template name)/html/com_user/register/default.php
Replaced:
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
With:
// no direct access
defined('_JEXEC') or die('Restricted access');
$mainframe->redirect('/index.php?option=com_chronocontact&chronoformname=registration');
?>
Thank you!!!
Rainie dey
Hi admin,
am also having a problem with the Joomla Registration Plugin my form is ok, it sends emails and saves to a table but i want users to be able to login and edit their profiles.when i test it by trying to register everything else works but the default joomla users table is not getting updated, what could be wrong, am using the latest chronoforms component
am also having a problem with the Joomla Registration Plugin my form is ok, it sends emails and saves to a table but i want users to be able to login and edit their profiles.when i test it by trying to register everything else works but the default joomla users table is not getting updated, what could be wrong, am using the latest chronoforms component
Hi cf_jamo,
Please check that the plug-in is enabled on the form Plug-ins tab. A **green** bar is enabled and red is disabled. Please only enable the plug-ins you are actually using otherwise they may interfere with each other. Also check the plug-in order to make sure that makes sense -- you can drag the bars to change the order.
Bob
Please check that the plug-in is enabled on the form Plug-ins tab. A **green** bar is enabled and red is disabled. Please only enable the plug-ins you are actually using otherwise they may interfere with each other. Also check the plug-in order to make sure that makes sense -- you can drag the bars to change the order.
Bob
This topic is locked and no more replies can be posted.