outshine
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Install.php tries to download rather then runCan you provide a link to the website. Download issue generally happens if you have set impropoer mimes on the server. may be something wrong with the .htaccess.
Forum: Fixing WordPress
In reply to: different sidebar based off categoryIs there any way to do this from admin panel.ie. without manual intervention.
Suppose a blog has more than 100 categories and wants different sidebar for different categories.
Then is it possible to have widgetized sidebars for each categories from admin panel??
is there any pluginForum: Fixing WordPress
In reply to: Embed blog into external websiteYou can take help of lastrss for displaying rss content on php page.
Forum: Fixing WordPress
In reply to: Count the number of posts displayed on a page@michaelh
Worked like charm buddy.
Thanks a lotForum: Fixing WordPress
In reply to: Make an image show in the sidebar on the homepage onlyHow about this
<div id="sidebar"> <?php if (is_home()) { echo "<div class="myImage"> <img src="http://www.image-location.com> </div>"; } ?> </div>Forum: Fixing WordPress
In reply to: menu name in article – not wantedSo you want the the title of the article should show in title bar of browser but it should not show on the page. If you want this you have to manually edit page.php in your theme folder.
open page.php and look for something like
<a style="background-color: rgb(255, 0, 0);" href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>once you have found it, you just have to delete this line and voilla . you are done.
If you need anything else just let me know. 🙂
Forum: Fixing WordPress
In reply to: menu name in article – not wantedNot quite clear, if i understood you problem or not.
Is there a way to see the problem you are facing?Forum: Fixing WordPress
In reply to: Count the number of posts displayed on a page@doodlebee,
You has shown a solution. But actually we want to know is there a way to print the number of post per page in a particular category so that we can use this information to perform complex calculation.
If this information is available many loops can be manipulated and created easily.