Stephan,
- remove add new and view pages on the Choose pages tab (step 5) in the PHPRunner.
- edit ..._list.php file manually: find and remove
this code:
<input class=button type=submit value="<?php echo mlang_message("SAVE");?>" id=submit1 name=submit1>
and then locate following line
$max_filesize_set=0;
and add this code before it:
?>
<tr height=50><td colspan=2 align=center>
<input class=button type=submit value="<?php echo mlang_message("SAVE");?>" id=submit1 name=submit1> </td></tr>
<?php
2, 4. to add print, export or other links to the edit/view pages modify generated files manully.
For example, to add Printer-friendly link to the view page put this code in the ..._view.php file:
<a target="_blank" href="categories_print.php">
<?php echo mlang_message("PRINTER_FRIENDLY");?></a>