I have a side menu that I want to be visible with this form. How do I do that? I'm new to Joomla, so my apologies if this is a basic question.
Thanks!
What am I missing?
You need to write a module to call the form and upload it to joomla. You really only need 2 files the php and xml file.
I am surprised that ChronoForms does not provide one.
Give that a try.
I understand your problem, myself go over this problem by one line of PHP code at the template, but i think you can find a way at the joomal forums, search for this :
show module in URL menu item
not the same words, but the same idea, this is an issue with joomla all the time, you will find some ideas, however I prefer the PHP way, its like this :
in ur template html and under the module position which contains ur desired module lets say its :
<?php mosLoadModule ('user1'); ?> write this code :
<?php
if($option == 'com_chronocontact')
mosLoadModule ('user1');
?>
change user1 to whatever ur module resides inπ
cheers,
max
Hi all,
I understand your problem, myself go over this problem by one line of PHP code at the template, but i think you can find a way at the joomal forums, search for this :
show module in URL menu item
not the same words, but the same idea, this is an issue with joomla all the time, you will find some ideas, however I prefer the PHP way, its like this :
in ur template html and under the module position which contains ur desired module lets say its :
<?php mosLoadModule ('user1'); ?> write this code :
<?php
if($option == 'com_chronocontact')
mosLoadModule ('user1');
?>change user1 to whatever ur module resides inπ
cheers,
max
will putting this code in automaticaly show the form? how will it know what form to get<br><br>Post edited by: skytopdesigns, at: 2007/07/27 03:35
will putting this code in automatically show the form?
I think it's the other way round, this code will show up the module on the form page. But, as far as I can see this will show up on every form page?? I think a bit more code would be needed to be selective about the form.Bob
You don't need to do this any more, using V2.2 you can create a menu item from inside the form edit page and then show the module at the menu item, you will have it listed at the module page this way.
Cheers
Max
