Hi, I wanted to hide goto button and goto combo, and what I did was open phpMyEdit.class.php and in the $default_buttons array deleted 'goto' and 'goto_combo'
ORIGINAL
var $default_buttons = array(
'L' => array('<<','<','add','view','change','copy','delete','>','>>','goto','goto_combo'),
'F' => array('<<','<','add','view','change','copy','delete','>','>>','goto','goto_combo'),
MODIFIED
'L' => array('<<','<','add','view','change','copy','delete','>','>>'),
'F' => array('<<','<','add','view','change','copy','delete','>','>>'),
|