callmehippy
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Digg Digg] Wrong Twitter usernameI am posting this since it’s the first post to show up in Google.
You have to change the ‘twitter_username’ that you enter manually in your code for your own twitter username.
<?php if(function_exists(‘dd_digg_generate’)){dd_twitter_generate(‘Compact’,’twitter_username’);} ?>
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] [Plugin: Akismet] multisite useyou probably already figured out a way to do this, but here’s the code you have to enter in your wp-config.php file (the comment is not mandatory, of course) :
/** Define WordPress.com API Key */
define(‘WPCOM_API_KEY’,’your_api_key’);worked perfectly for me! many thanks.
Forum: Fixing WordPress
In reply to: Firefox downloads images instead of lightboxThink i resolved this issue…
Might be a problem with other classes loaded by the gallery or by Google.
Had the same problem with AJAX pagination script vs lightbox. And i found this solution on a forum.
You have to add this part of code to kpg.class.php at line 319 and 324.
onclick='myLightbox.start(this); return false;'Will look like
print <a href='$fullURL' onclick='myLightbox.start(this); return false;' rel='lightbox[kpicasa_gallery]'></a>Works for me