Wordpress

WordPress Awesome Plug-Ins

wordpress-shopping-cart-plugin  wordpress-faqs-plugin 
wordpress-banners-plugin  wordpress-newsletters-plugin  wordpress-custom-fields-plugin 
     

Different Headers for Different Categories

Individual blog posts show a template named single.php. If you would like to have different headers depending on a category you can either use dynamic headers or this following code. ( I had sliced my header so I couldn’t use the dynamic header plug-in)…

Read the rest of this entry »

Br Tag Issue in WordPress- Finally a Solution

If you like to switch from visual to html view in wordpress quite ofter, you might have realized that while switching, you will loose br and p tags. This is not only annoying but also very time consuming.

I found this solution with this wordpress plug-in that also lets you add more quick tabs to your editiors panel like, font-family, achor tag, ap div and more.

TinyMCE

WP-Removing Homepage Title

As an entry page I would like my homepage to have a greeting or page header that doesn’t say “home” on my wordpress designs. If you want to hide all page headers, add the display:none to the style sheet for the h2 tag and add your page title into the post itself.

If you do want to only hide the home page header though, replace the title code in the page.php (or index.php) with this one:

<?php if ( is_home() ) { ?>
< h1 id=”h1off” style=”display:none;”><?php bloginfo(‘name’); ?></h1>
< ?php }  else { ?>
< ?php
}
?>

Xml Gallery in WordPress

Adding an xml based gallery to wordpress is seasy if you use the Kimili Flash embed.

Kimili Flash Embed

The swf, xml file and the images folders are ususally in the same folder in your web site root. The way wordpress pages are built, the swf won’t find the path to the files because it’s looking for relative links. With this plug-in and the following code, you can insert your flash slide show etc. almost anywhere in your wordpress site as long as you have the path to your files.

kml_flashembed movie=”/path/to/my/slideshow.swf” base=”/path/to/my/”

Add all of this in [ and /]