Equal
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error establishing a database99 times out of 100 there is an error with your database details. Double and triple check them. Also check that your database is localhost and not served from somewhere else. Some hosts do it this way.
Forum: Fixing WordPress
In reply to: Permalink structure change gives 404 errorHave you a link to your site that i could take a look at with the error?
Forum: Fixing WordPress
In reply to: how to have 3 subdomains to use the same wp installation?Take a look at WordPress MU.
Forum: Fixing WordPress
In reply to: Permalink structure change gives 404 errorI suspect that your .htaccess file in the root of your wordpress install is not writeable. Change the permissions and then see if it works.
Forum: Themes and Templates
In reply to: function get_posts() limitedHow about:
<?php query_posts('showposts=10&cat=1'); ?>Forum: Themes and Templates
In reply to: Gap between Page Top and Header Image for Tofurious ThemeRemove the top padding from the style #main in your stylesheet.
Forum: Themes and Templates
In reply to: multiple post backgroundsYour could do it with conditional tags to use a different class for posts in each category.
Take a look at this page:
Forum: Fixing WordPress
In reply to: permalinks are not configuringWhy not try entering this:
/%category%/%postname%/
This will display page like this:
yourdomain.com/pagename
And posts like this:
yourdomain.com/categoryname/postname
Forum: Fixing WordPress
In reply to: shifting installed wp to another folderHave you tried these ideas?
Forum: Themes and Templates
In reply to: hiding lists from excerptsWhy not add a specific class around the excerpt and then set lists within that class to display none. Like this:
<div class="excerpt"> <?php the_excerpt(); ?> </div>Then in your CSS try this:
.excerpt ul, .excerpt ol { display: none; }That will prevent them from showing all together. To just hide the bullet point or the numbers use this:
.excerpt ul, .excerpt ol { list-style-type: none; }Forum: Themes and Templates
In reply to: Celestial Aura Theme: How to show child pages in the menu?If you theme uses wp_list_pages in order to generate your navigation bar then using the depth parameter would help:
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_pages
So change it to something like this:
<?php wp_list_pages(title_li=&depth=2'); ?>The depth=2 means that the list will show parent and children. Set at 3 it would show parent, children and grand children etc…
Forum: Themes and Templates
In reply to: After I have created a page, why is not working?Try closing PHP after your page template information so you have:
<?php /* Template Name: Links Pages */ ?>Then open PHP and carry on:
<?php get_header();Forum: Themes and Templates
In reply to: Unable to upload file from computerThis is the permissions on the folders inside your WordPress install. Your host should be able to solve this for you. When you upload to WordPress it is trying to write to the wp-content folder but permissions are not letting it. Make sure that you have permissions set to 755 for the wp-content/uploads folder.
Forum: Fixing WordPress
In reply to: Disable hyperlinks in postsIf you have other authors on your blog that are putting these links into posts then why not just downgrade the user level so that for a post to appear it has to be okayed by an admin?
Forum: Fixing WordPress
In reply to: Display sub page content on parent pageI link to the website you are working on to provide a working example would help diagnose the problem. Hard to understand exactly what you are looking for with just your description.
Try here:
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_pages#List_Sub-Pages