PDA

View Full Version : Delete titles and descriptions


karen308939
02-10-2010, 10:31 AM
When I remove the titles and descriptions in the admin interface, the page still shows the box where this would show up when I hover. How can I get rid of that?

Jimmy Wu
02-10-2010, 10:48 AM
Do you mean that you are inserting blank titles and descriptions?

Which gallery design are you using?

karen308939
02-10-2010, 10:54 AM
Yes, blank titles and descriptions. I am using Ribbons + Fullsize (dark). I am on ie8.

Jimmy Wu
02-10-2010, 11:46 AM
To disable the popup you would have to open up the PowerGallery/galleries/ribbon_fullsize/js/gallery.js file and find the block of code that starts with:
//tooltips

and comment it out, so it looks like this:
//tooltips
/*this.tips = new Tips(this.thumbs.images, {
className: 'pg-rf-tip',

<additional code here>

this.tip.setStyle('top', '0px');
}
});*/


This will disable the mosueover popup for ribbon + fullsize only. If you decide to change the design you will have to make additional modifications.

karen308939
02-10-2010, 05:54 PM
That worked perfectly! Thank you!

Jimmy Wu
02-11-2010, 10:25 AM
Great to hear it. If you run into any additional issues, feel free to open a new thread.

The reason I told you to just comment it out is if you want to add the flyovers again, you will just have to uncomment that block of code and you will be to go.