OK Here is what you are going to want to do
Find the file
custom/modulebuilder/packages/<MODULE_NAME>/metadata/subpanels/default.php
and edit it and make the end of it look like this
PHP Code:
'summary' =>
array (
'type' => 'text',
'studio' => 'visible',
'vname' => 'LBL_SUMMARY',
'width' => '40%',
'default' => true,
),
'edit_button'=>array(
'widget_class' => 'SubPanelEditButton',
'module' => $module_name,
'width' => '4%',
),
'remove_button'=>array(
'widget_class' => 'SubPanelRemoveButton',
'module' => $module_name,
'width' => '5%',
),
),
);
Then edit
modules/<MODULE_NAME>/metadata/subpanels/default.php
and do the same thing. Then run an Admin->Repair->Quick Repair and everything should be back to normal
Make sure there is not a file named
custom/modules/<MODULE_NAME>/metadata/subpanels/default.php
if there is then delete it and then run the quick repair.
Let me know how it goes.
Bookmarks