I was testing out Fancybox 2 from Fancyapps and although they have some good documentation on their website I was unable to hide the title / caption when showing an image:
After playing around with the code for a bit I got it working using this. It is a little hackish but it did the trick:
jQuery(function($){
var fancyBoxOptions = {
closeBtn : true
,arrows : false
,nextClick : true
,afterClose : function() {
jQuery(‘#wpadminbar’).show();
}
}
jQuery(‘.fancybox’).fancybox(fancyBoxOptions);
});
They have this code listed on their website but it did not work for me:
//Disable title helper
$(“.fancybox”).fancybox({
helpers: {
title: null
}
});
//Disable overlay helper
$(“.fancybox”).fancybox({
helpers: {
overlay : null
}
});