I have created a module for Joomla 2.5, using Joomla documentation. I have included a drop-down and a text box in this module.
When I see this module in Module Manager, these form fields are visible, but when I see from site, these modules aren't visible. Please help.
Module XML:
<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="2.5.0" client="site" method="upgrade">
<name>Hello, World!</name>
<author>John Doe</author>
<version>1.0.0</version>
<description>A simple Hello, World! module.</description>
<files>
<filename>mod_helloworld.xml</filename>
<filename module="mod_helloworld">mod_helloworld.php</filename>
<filename>helper.php</filename>
<filename>tmpl/default.php</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic">
<field
name="lang"
type="sql"
default="1"
label="Select a language"
query="SELECT id AS value, lang FROM viep3_helloworld" />
<field name="mytextvalue" type="text" default="Some text" label="Enter some text" description="" size="10" />
</fieldset>
</fields>
</config>
</extension>
Regards
Nitin