Tag–Archive for themes

A WordPress Theme Built Especially For The WP-Ecommerce Plugin!

7 Comments »

Update! I’m finally done, Whew!
Here is Color-Cart Green ( I know, I couldn’t think of a good name.All my brain cells went toward making the thing).
Also, there is Color-Cart Black but it costs 10 whole dollars! Please take the test drive and hopefully you will like it enough to buy it. If this new venture

(read more)

Revised File For Fake Grid View

10 Comments »

Very happy to report that you can still “fake” Grid View in Posts/Pages using version 3.12.6 of the WordPress Shopping Cart as the paid for Grid View Module. Most times upgrading a plugin will mean I will have to work very hard to re create the desired effects with the new code.

(read more)

Beefy SEO Title Tags for WordPress Header.php

1 Comment »

WordPress title tags in your theme’s header.php may not be the SEO ideal.
Try this instead:
<title><?php

// Page or Single Post
if ( is_page() or is_single() ) {
the_title();

// Category Archive
} elseif ( is_category() ) {
printf( __(‘Archive for &lsquo;%s&rsquo;’), single_cat_title(”, false) );

// Tag Archive
} elseif ( function_exists(‘is_tag’) and function_exists(’single_tag_title’) and is_tag() ) {
printf( __(‘Tag Archive for &lsquo;%s&rsquo;’), single_tag_title(”,

(read more)

Add an extra sidebar to any WP theme

No Comments »

Jai Verma has written out a very easy to follow tutorial on adding an extra sidebar to any WP theme.
Some people have a gift when it comes to explaining how to do something. Loads of people have written WP tutorials but seem to bury you in terminology so that very few could follow

(read more)