object81
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to enable lightbox in nextgen galleryHave you installed Lightbox or Slimbox?
I can confirm this. The Norwegian character æ, ø and å are not replaced when creating a URL based on the post title. This is actually quit annoying. Anyone with a solution to this?
Forum: Fixing WordPress
In reply to: Tag Cloud has HTML Line Breaks after Each Tag?Anyone with a solution to this issue? The ‘wordpress-tag-cloud-formatting’ plugin doesn’t work on WP 2.6. The wp_tag_cloud() function should take the parameter format=flat, but in IE there are still line breaks after each tag.
Forum: Plugins
In reply to: mysql2date() doesn’t work!! Right??A additional tweak to show special characters within the date string I had to use the htmlentities() function.
// Since they're different, let's replace the old stored date with the new one $stored_date = $item_date; // Display it on the page $str = $item->get_date(get_option('simple_date')); if (($timestamp = strtotime($str)) === false) { echo "ERROR: The string ($str) is bogus"; } else { echo '<li class="date">' . htmlentities(strftime("%A, %e %B", $timestamp)) . '</li>' . "\r\n"; }Forum: Plugins
In reply to: mysql2date() doesn’t work!! Right??Found a little workaround, since the mysql2date() function doesn’t seem to work. Here is my solution of displaying the date localized in modules like SimpleLife, Profilactic or ComplexLife (these modules are basically the same):
$str = $item->get_date(get_option('simple_date')); if (($timestamp = strtotime($str)) === false) { echo "ERROR: The string ($str) is bogus"; } else { echo '<li class="date">' . strftime("%A, %e %B", $timestamp) . '</li>' . "\r\n"; }Forum: Fixing WordPress
In reply to: mysql2date in ajax module brokenI wonder about the same.
Forum: Plugins
In reply to: wp-o-matic not fetching content on cron runIs there any better way of getting support for plug-ins then trough these forums? Have written three entries and havn’t got any answer.
Forum: Fixing WordPress
In reply to: how to enable lightbox in nextgen galleryThanks Guys! That did the trick.
But now I am wondering how to change “the key shortcuts” used for ‘previous’ and ‘next’. Looked trough the javascript of slimbox.js but couldn’t really find out where to change this. I need it to fully localize my wp installation.
Forum: Fixing WordPress
In reply to: how to enable lightbox in nextgen galleryPlease post a link to your page
Here is a link to a test entry with some photos.
Forum: Fixing WordPress
In reply to: how to enable lightbox in nextgen galleryI followed your instructions but still can’t get lightbox2 to work. I downloaded lightbox plugin and activated it. Then updated the settings on the ngg effects options page.
The only viewer working is thickbox.