Hybrid Tabs CSS
Published April 27th, 2011 under Plugins
Today we released a small plugin as a companion to the Hybrid Tabs plugin. We hope someone finds it useful!
Published April 27th, 2011 under Plugins
Today we released a small plugin as a companion to the Hybrid Tabs plugin. We hope someone finds it useful!
Published December 23rd, 2010 under Plugins
The catch with using the Grunion Contact form plugin for WordPress has always been that you were limited to a very simple contact form and did not have the ability to modify the fields used. However a recent update to the plugin has changed this situation dramatically. The new version includes an easy to use interface which does not clutter your WordPress admin panel and allows you to modify your form via a simple drag and drop interface.
However there is one area which has added clutter to the admin interface. That area is the admin menu which now has a prominent “Feedback” link which allows you to see all the messages submitted via the form.
To remove that link, simply head on over to our “Disable Grunion Admin link” plugin page to install our plugin which removes it for you automagically.
Published December 19th, 2010 under Plugins
Our Deregister Contact Form 7 plugin is now available in the official WordPress plugin repository ![]()
http://wordpress.org/extend/plugins/deregister-contact-form-7/
Published December 19th, 2010 under Plugins
We needed a super small WordPress plugin for a client of ours which allowed us to have control over the CSS of individual words in each page title. We did this by applying a filter to the the_title() function which split each word out and I applied a span tag with a unique class to each one. This plugin is available on the “PixoPoint Add Span Tags to Titles plugin” page.
If you would like to use the functionality of the plugin but prefer to include such functionality in your theme, then simply include the following code in your themes functions.php file:
/**
* Primary span tag adding function
* Code from PixoPoint Add Span Tags to Titles plugin (http://pixopoint.com/products/add-spans-to-titles/)
*/
function pixopoint_add_spans_around_words( $name ) {
// Initially check that it doesn't contain HTML as that's bound to mess things up
$check = strip_tags( $name );
if ( $check != $name )
return $name; // Just spit out original string if HTML was included - no sanitization as assumes that user intended to include HTML
$name = explode( ' ', $name ); // Explode inidivual words into array
foreach ( $name as $number => $key ) {
$new_name .= '<span class="word-' . $number . '">' . $key . '</span>' . ' '; // Add span tags
}
return $new_name;
}
add_filter( 'the_title', 'pixopoint_add_spans_around_words' ); // Filtering the title
Published December 14th, 2010 under Plugins
The PixoPoint Email Submit plugin is now available in the official WordPress plugin repository.
If you appreciate the plugin, please rate it five stars for us ![]()
Published December 13th, 2010 under Plugins
One of our clients required a very simple WordPress plugin to allow them to collect email addresses on their site and to output those in a convenient format. The result was the PixoPoint Email Submit plugin which adds this functionality to your WordPress install.
The plugin has been submitted to the official WordPress plugin repository and will hopefully be available there shortly. In the mean time, check out the PixoPoint Email Submit plugin page for a download link and more information.