To hide the ionic popup title you have to add your own css.
.customPopup .popup-title{
display: none;
}
create your popup from a url template:
$ionicPopup.show({
cssClass: 'customPopup',
templateUrl: 'mypopup.html',
scope: $scope,
title: 'No title'
});