Customer incorrectly enable customize portal in VCD UI setting,then the custom portal not display any more in UI option
VCD 10.x
User error
1.Root user login to vcd db primary cell.
2.Login to postgres db:
su - postgres
psql -d vcloud
3.Query current status of UI setting on customize portal option:
select * from ui_plugin where plugin_name = 'Customize Portal';
Remember the customize portal id of the return line.
4.Manually enable the entry:
update ui_plugin set plugin_enabled = 't' where id = 'Customize Portal id from last query';