Is possible add menu module only on list view/edit record?

Hi,

I have a problem how to add menu module only on subpage:
+ list -- edit record ------ add
+ list -- view record ------ add
- list view ------------------- not add

May be this is possible with any Joomla extensions or how to customize form/list/joomla templates?
Any idea?

In this moment i use joomla protostar template,
 
guess you could edit the protostar template and check the url and load a module position. So say your module is loaded in position 'my-custom' and your list's id is 1, your could edit your Joomla template's index.php file

PHP:
<?php
$input = JFactory::getApplication()->input;
if ($input->get('view') !== 'list' && $input->get('listid') !== 1) {?>
<jdoc:include type="modules" name="my-custom" style="none" />
<?php }?>
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top