e-sushi
Forum Replies Created
-
Forum: Plugins
In reply to: WP-PostRatings CSS issue (i think)Hmmm… you should take a look at the sourcecode in your webbrowser.
Most browsers offer this through the right-click menu.It could well be that you are using a CSS CLASS or ID that collides with the wp-postratings CLASSes or IDs; meaning: maybe an ID or CLASS used by the plugin is exactly the same as the one you use to format the main thumbnails.
Forum: Plugins
In reply to: Bad Behavior Conflicting with Robots-MetaYou could drop the “robots-meta” plugin all together by using conditional wordpress tags in your header.
Here is an example that will allow indexing the main index page (aka home page) as well as single posts and pages or the category archives:
<?php if((is_home() && is_front_page() && !is_paged()) || is_single() || is_page() || is_category()) { ?> <meta name="robots" content="noodp,noydir" /> <?php } else { ?> <meta name="robots" content="noindex,noarchive,noodp,noydir" /> <?php } ?>
You’ll find ample information about those ‘is_page()’ and ‘is_category()’ etc. here at www.ads-software.com!
Maybe that helps you out?
Forum: Plugins
In reply to: How do I get thumbnail to showCan you give us an example of the errors you get?
That will surely help us all to identify the problem for you.Forum: Plugins
In reply to: [Plugin: Top Level Categories] Pagination for Categories BrokenYou should have first checked the plugin site for information about that issue before claiming a plugin is dead! As it seems, you were just too lazy to dig into your problem by taking a look at the Plugin Homepage.
But, to make it easy for you… here’s the sollution that I herewith bluntly quote from the Plugin Homepage:
This is a known issue, for which there is unfortunately no good workaround. If you add a suffix to your permalink structure (such as .html) you can fix this issue. For example, try %category%/%postname%.html — I realize this is not ideal, but there is no good solution for this issue.
So, just make sure your “permalinks” use a file-extention and not a backslash and you’re settled.
Case closed.