icek123
Forum Replies Created
-
Having the same problem I was able to get around it by going to “Appearance->404 Error Page” and deselecting the “Hide the selected page from the Pages list” option.
- This reply was modified 9 years, 3 months ago by icek123.
Forum: Fixing WordPress
In reply to: Errors due to plugins…Having the same problem I was able to get around it by going to “Appearance->404 Error Page” and deselecting the “Hide the selected page from the Pages list” option.
@singer74 – As indicated by photocrati above you can easily hide image caption in the lightbox by using CSS:
<style>
#fancybox-title.fancybox-title-inside {
display: none !important;
}
</style>To hide the Title text of the image (tool-tip which shows on hover) I have reverted to a jQuery solution as follows:
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘.ngg-gallery-thumbnail img’).prop(‘title’, ”);
});
</script>Hope this helps!