A few people complained that the Search was not working when they used the Senorita theme.
After some research, I found out the problem was the “action” attribute for the search form.
In the Sidebar.php where you see
action=”/”
it has to be changed to
action="<?php echo $_SERVER['PHP_SELF']; ?>"
That will fix the problem.
I fixed it in the original package [...]
Archive for the 'Tips and Tricks' Category
Posted by admin on November 11th 2005
Senorita – Version 1.1
Posted by admin on July 11th 2005
post.php problem
A few of the users have been complaining about this issue in Connections theme and I believe it will be the same case in other themes too.
Fatal error: main(): Failed opening required ‘post.php’
To resolve this problem, please open up the index.php file and look for the line
< ?php require(’post.php’); ?>
and change it to
< ?php require(TEMPLATEPATH [...]
Posted by admin on May 03rd 2005
Header Image not showing up on Mac/IE
It seems to be reported by many people, that the header image of our themes, do not load on Internet Explorer in the Mac platform.
I found out that the solution to that is, removing the single quote from the url attribute of the background property in the style.css file.
In the style.css file, look for
#header { [...]
Posted by admin on March 15th 2005
Google Ads Flicker
When using the GreenTrack theme, I faced a small issue with Google Ads.
Those ads flickers for a short moment, when moving the mouse over the sidebar links.
I searched the internet and found a solution to that, atleast for GreenTrack users.
Just add border:none to #sidebar li a:hover in the stylesheet.
Thats it.
I found this solution at [...]
Posted by admin on December 07th 2004
Previous ‘n’ Posts
Previous n posts plugin.
Posted by admin on November 11th 2004
Separating comments and trackbacks
I did a google search on this subject and came across this link.
check it out this page from Eric Meyer, the CSS Expert.
http://www.meyerweb.com/eric/tools/ wordpress/mw_comments_trackbacks.html
Next time, when I build a theme package, I will try to include this also.
Thanks to Patricia and trench for their feedback.
