30
If you do it in general settings, user can't choose which block with page title and other without page title, so I think per page is more professional.
You need to add titledisplay or something to sql file:
CREATE TABLE `mytabs_page` (
`pageid` int(10) unsigned NOT NULL auto_increment,
`pagetitle` varchar(255) NOT NULL DEFAULT '',
`titledisplay` enum('YES','NO') NOT NULL default 'YES',
PRIMARY KEY (`pageid`)
) TYPE=MyISAM;
then modify page functions inside /admin and /class php files to be able to change the value of titledisplay.
I think you are smarter than I teach you what you have to do .. lol