WordPress Plugin NextGEN Gallery Sorting Bugfix

The changing the sort options of WordPress plugin “NextGEN Gallery” doesn’t affect on the images of the gallery sorted by tags. To fix the bug, do the following changes in nextgen-gallery\lib\ngg-db.php (more…)

Lightbox 2 bugfix

There is a bug in Lightbox 2 slideshow. When an image has no title during slideshow it shows the title of previous or next image title. To fix this problem add in lightbox.js

else{
this.caption.update(“”).show();
}

after

// if caption is not null
if (this.imageArray[this.activeImage][1] != “”){
this.caption.update(this.imageArray[this.activeImage][1]).show();
}

WordPress theme “Cherry Dreams” sidebar problem for IE6

To fix the problem add in header.php

<!–[if IE 6]>
<link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/iestyle.css” type=”text/css” media=”screen” />
<![endif]–>

after

<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />

then create file “iestyle.css” in theme folder and add

#sidebar{
margin:0 9px 0 0;
width:226px;
float:right;
text-align:left;
}