Connect with us

Plugins

Tested: Twitip ID Plugin

Published

on

There is a really neat plugin named Twitip-ID for WordPress. As you can see, if you have commented on this site I was using this plugin.

While it is still in beta testing I feel that it is a really nice plugin, plus it will automatically put the required field into your comments template without any editing. I choice to to manually input the field for custom css and styling.

This plugin is really awesome and allows for other to employ their Twitter ID for other to follow them, giving a little more incentive for people to comment:).

Custom Fields Taking Over

Custom Fields Taking Over

But I have been having a little problem. The Twitter ID’s are generated and stored into the post’s meta as a custom field. Im not sure if I am the only one affectied by this, but as time passed the custom fields generated by commentators started to take over the drop box, and wouldn’t allow the regular custom fields I use to show.

Another think i would like to touch base on is the fact that even if a comment got cought and filtered through Akismet, the custom field of some spammy email address and aa value close to SncSJHfd6sNSs was still generated and stored in the Database of the post..

So from my perspective, I am going to deactivate this plugin at this time and hope the the next releases with touch base on some of these issues.

Update:

Following a message I posted on the WP Twitip ID forum, Andy Bailey replied:

I am working on an update to the twitip plugin. at the moment it is only at beta stage and I have a few things I want to add or change for a proper release. I will get on it as soon as I can!

Plugins

Gallery Plus

Published

on

You may notice on some of our posts a gallery of images. We are using the built in WordPress up-loader, and when there are a few images we use the gallery insert button. But we are fans of jQuery and are using Thickbox.

As you know the basic gallery insert with attach the gallery images and link them to an image attachment page. Instead we installed the Gallery Plus plugin by Justin Hawkwood.

This plugin alone will add the ability under the Settings — options to add a “title” attribute in the <a> link and a rel attribute of “lightbox”.

Now I do have some site’s with lightbox installed, and I am a fan of the script, but I didn’t want to use the Scriptaculous script. And I do know that there is a Lightbox script based on jQuery.

Anyway… since I am using the Thickbox script on this site, the plugin needed a little tweaking:

There are two files contained in the download: gallery-plus.php & options.php, both with need to be edited. Lets start with the options.php:

Find.

update_option('gallery_plus_overlay', $_POST['gallery_plus_overlay']);

Add the 2nd line below, like this.

update_option('gallery_plus_overlay', $_POST['gallery_plus_overlay']);
update_option('gallery_plus_overlay2', $_POST['gallery_plus_overlay2']);

Next Find.

$gallery_plus_overlay = stripslashes(get_option('gallery_plus_overlay'));

Add the 2nd line below, like this.

$gallery_plus_overlay = stripslashes(get_option('gallery_plus_overlay'));
$gallery_plus_overlay2 = stripslashes(get_option('gallery_plus_overlay2'));

This is where it gets tricky. Find these next lines.

<tr valign="baseline">
<th scope="row"><?php _e('"rel" value in &lt;a&gt; tag:') ?></th>
<td><select name="gallery_plus_overlay">
<option value="none"<?php if ($gallery_plus_overlay == 'none') echo ' selected="selected"'; ?>>none</option>
<option value="lightbox"<?php if ($gallery_plus_overlay == 'lightbox') echo ' selected="selected"'; ?>>lightbox</option>
</select> Specify which, if any, javscript image overlay package to use. THIS PLUGIN DOES NOT INSTALL ANY OVERLAY PACKAGES.<br /><em>Note: Only applies when <strong>Link type</strong> is set to "image".</em>
</td></tr>

And Add these lines above.

<tr valign="baseline">
<th scope="row"><?php _e('Insert "class=..." Attribute In Link:') ?></th>
<td><select name="gallery_plus_overlay2">
<option value="none"<?php if ($gallery_plus_overlay2 == 'none') echo ' selected="selected"'; ?>>NONE</option>
<option value="thickbox"<?php if ($gallery_plus_overlay2 == 'thickbox') echo ' selected="selected"'; ?>>thickbox</option>
</select> <em>Note: Only applies when <strong>Link Images To Full Resolution</strong> is on.</em>
</td></tr>

It should look like this:

<tr valign="baseline">
<th scope="row"><?php _e('Insert "class=..." Attribute In Link:') ?></th>
<td><select name="gallery_plus_overlay2">
<option value="none"<?php if ($gallery_plus_overlay2 == 'none') echo ' selected="selected"'; ?>>NONE</option>
<option value="thickbox"<?php if ($gallery_plus_overlay2 == 'thickbox') echo ' selected="selected"'; ?>>thickbox</option>
</select> <em>Note: Only applies when <strong>Link Images To Full Resolution</strong> is on.</em>
</td></tr>


<tr valign="baseline">
<th scope="row"><?php _e('"rel" value in &lt;a&gt; tag:') ?></th>
<td><select name="gallery_plus_overlay">
<option value="none"<?php if ($gallery_plus_overlay == 'none') echo ' selected="selected"'; ?>>none</option>
<option value="lightbox"<?php if ($gallery_plus_overlay == 'lightbox') echo ' selected="selected"'; ?>>lightbox</option>
</select> Specify which, if any, javscript image overlay package to use. THIS PLUGIN DOES NOT INSTALL ANY OVERLAY PACKAGES.<br /><em>Note: Only applies when <strong>Link type</strong> is set to "image".</em>
</td></tr>

Now lets edit the gallery-plus.php file:

Find.

'overlay' => get_option('gallery_plus_overlay'),

Add the 2nd line below, like this.

'overlay' => get_option('gallery_plus_overlay'),
'overlay2' => get_option('gallery_plus_overlay2'),

Next Find.

<a href=\"$full_image_href[0]\"" . (($overlay != 'none') ? ' class="' . $overlay . '"' : '') . ($atagtitle ? " title=\"".trim(htmlspecialchars($attachment->post_title, ENT_QUOTES ))."\"" : '') . "><img src=\"$thumbnail_link[0]\" title=\"".trim(htmlspecialchars($attachment->post_title, ENT_QUOTES ))."\" alt=\"".trim(htmlspecialchars($attachment->post_excerpt, ENT_QUOTES))."\" width=\"$thumbnail_link[1]\" height=\"$thumbnail_link[2]\" class=\"attachment-thumbnail\" /></a></{$icontag}>";

And change the $overlay to $overlay2, like this.

<a href=\"$full_image_href[0]\"" . (($overlay2 != 'none') ? ' class="' . $overlay2 . '"' : '') . ($atagtitle ? " title=\"".trim(htmlspecialchars($attachment->post_title, ENT_QUOTES ))."\"" : '') . "><img src=\"$thumbnail_link[0]\" title=\"".trim(htmlspecialchars($attachment->post_title, ENT_QUOTES ))."\" alt=\"".trim(htmlspecialchars($attachment->post_excerpt, ENT_QUOTES))."\" width=\"$thumbnail_link[1]\" height=\"$thumbnail_link[2]\" class=\"attachment-thumbnail\" /></a>
</{$icontag}>";

note: I know that this is really just riding the plugin of the lightbox script and telling it to use the thickbox only script, but till it’s added in, this is the way I went about it.

Thanks

Continue Reading

Plugins

Scheduled Post Shift

Published

on

I just came across an article over at WPHacks.com about a “how to” shift and bring back posts hidden way in the archive. Seems really interesting, cause I have a few blog sites myself and some of them like thefrosty.com and jeanasays.com. Theses sites have been working hard for a long while and have built up a good 20 plus paginated archive of posts.

So I am going to try and download the plugin Scheduled Post Shift Plugin by Dagon Design.

Once I have a chance to review this plugin I will surely write about it. 🙂

Continue Reading

Plugins

Comment Validation

Published

on

Another plugin I am using on this site: Comment Validation by Jörn Zaefferer.

From Jörn’s site:

Why should you install it? Because you care for comments and want to help users reduce mistakes that hold them off from commenting at all.

Whats the technology used? jQuery and the jQuery Validation plugin with a few customizations to make it fit into the standard WordPress theme.

Is it compatible with other plugins? The plugin is tested with the Draw Comments plugin and works, though the performance is slightly degraded. Other plugins haven’t yet been tested.

Download WordPress-Comment-Validation-Plugin (zip)

And.. Test it out below, but then, do leave a true comment. 🙂

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Biggie Smalls Net Worth

Biggie Smalls Net Worth

Biggie Smalls Net Worth, If he was alive today, And more information you want to know. Biggie Smalls was also called The Notorious B.I.G., and he was an American rapper and hip-hop musician. Smalls was born with the name Christopher George Latore Wallace in 1972 in Brooklyn. The artist began his career in his teens […]

Alison Hammond Net Worth: How Rich is Hammond Actually?

Alison Hammond Net Worth: How Rich is Hammond Actually?

Alison Hammond is an English television personality who is known for presenting ITV’s ‘This Morning’ as the showbiz reporter. As of 2019, Alison Hammond net worth is estimated to be $1.5 million. Hammond was born on February 5, 1979, in Birmingham, England. Her father is Nevisian and her mother is Guyanese. Before she became famous she was a […]

Alexandria Ocasio-Cortez Net Worth: 5 Facts You Need To Know

Alexandria Ocasio-Cortez Net Worth: 5 Facts You Need To Know

Alexandria Ocasio-Cortez is one of the biggest and youngest female politicians to serve in the New York Congress. A political activist, Congresswoman, and clever politician. Born to a Catholic family of Bianca and Sergio Ocasio Cortez on October 13, 1989, in New York City. A self acclaimed democratic socialist, pulled one of the biggest upset […]

Dakotaz Net Worth: How Rich is the Twitch Streamer Actually?

Dakotaz Net Worth: How Rich is the Twitch Streamer Actually?

Dakotaz’s Financial Game: Unmasking the Twitch Titan’s Net Worth Brett Hoffman, the man behind the digital sensation “Dakotaz” (or “DK” for those in the know), is not just a Twitch Streamer but also a YouTube maestro. With Fortnite as his playground, he boasts a staggering 4 million followers on Twitch. As of 2023, the treasure […]

Trending