I am using Pixelpost on a personal photoblog : http://photos.c-ba.org.

I am also using Rewrite rules that allow me to have url like ‘photo/24′ instead ‘index.php?x=24′. In fact, it make a website in best position in Google’s result.

So I update my template. It is not hard. But you must be carefull about link composed by Pixelpost like RSS  links. Don’t forget to put ‘<base href=”yourwebsiteurl” />’ into each template file.

When it is done you have got a problem with URL into sitemap (if you are using the puglin) and RSS. SO you must changed by yourself url into Pixelpost and addon code.

For RSS, you must edit functions_feeds.php in the directory include. Search in this file the word  ‘link’ it will allow you to look evrywhere there is an update to do. You must becareful about rss links and put ‘atom.xml’ and ‘rss.xml’ instead the old url.

For browsing, I just update pictures’ link. I used the same method for rss. The file to edit is ‘functions_browse.php’ into ‘include’ directory. Near line 100 you must changed this line :

$thumb_output .= "&lt;a href=\"$showprefix$id\"&gt;&lt;img src=\"$thumbnail\" alt=\"$title\" title=\"$title\" width=\"$local_width\" height=\"$local_height\" class=\"thumbnails\" /&gt;&lt;/a&gt;";

By this one :

$thumb_output .= "&lt;a href=\"/photo/$id\"&gt;&lt;img src=\"$thumbnail\" alt=\"$title\" title=\"$title\" width=\"$local_width\" height=\"$local_height\" class=\"thumbnails\" /&gt;&lt;/a&gt;";

For sitemap, you must edit ‘google_sitemap.php’ into ‘addon’ directory.  And using the same method that I explained before.

In fact you can do more by updating url for category browsing or tag browsing but here I am tired. Edit the addon page by page archived.

Click here to download files I update (for rss, picture link into browsing pages, sitemap)