ryans149
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To: Show Full Postsin your index page, you will fine something like this:
the_excerpt()
replace it by the_content()
See this article for more details
http://codex.wordpress.org/Template_Tags/the_excerptForum: Fixing WordPress
In reply to: Editing different sections on a page?if this is a page, and will stay static, you can create table and td’s inside the page. Or you can go for a page template
Forum: Installing WordPress
In reply to: DNS Error – Server cannot be foundhave you changed your name servers or anything recently? or any changes in your DNS zone..
Forum: Fixing WordPress
In reply to: Error in feeds (full posts not shown)try to follow the feed in some widget or any feed client. not directly in the browser
Forum: Fixing WordPress
In reply to: How do I get rid of the sidebar stuff?those are hardcoded in your sidebar.php. Open the file and remove functions for meta..
Forum: Fixing WordPress
In reply to: How do I get rid of the sidebar stuff?add a text widget to sidebar and leave it empty
Forum: Fixing WordPress
In reply to: Linking to another wordpress blog in the main navif your navigation bar is in header, open header.php file and check which function is it calling for navigation. Along with that function, just add your own link, under the same div. You will need to play to maintain the design..
Forum: Fixing WordPress
In reply to: Post on page other than home pagego to settings –> reading
Forum: Fixing WordPress
In reply to: show html in sidebarhtml to sidebar ? You can use text widget
If you want this to display for pages only, use conditional tagsForum: Fixing WordPress
In reply to: Viewing site statsis it wordpress.com statistic plugin? You need to activate it using the wordpress.com API key..
Forum: Fixing WordPress
In reply to: inserting a link at the bottom of a postyou can use custom fields
Forum: Fixing WordPress
In reply to: How to get ‘continue reading’ read more to open in new window?It will be something like this:
<a href="<?php the_permalink() ?>">Continue ...</a>turn it to:
<a target="_blank" href="<?php the_permalink() ?>">Continue ...</a>Forum: Fixing WordPress
In reply to: How to have wordpress go to server 404?Forum: Fixing WordPress
In reply to: WP site down after admin login in two wp sites…in same database? So you should have changed the prefix..
Check wp_options table and make sure the domain name is correct
Forum: Fixing WordPress
In reply to: Log Into Local Network WP…….. HOW ???yes, you should be able to login, but you didnt specify if you are receiving any error..