Joshua Sigar
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Forum Profile improvementsThanks. got it now.
Forum: Everything else WordPress
In reply to: Forum Profile improvementsNice!
I can’t seem to subscribe to my favorites’ RSS. Sage (firefox extension) doesn’t pick it up.Forum: Themes and Templates
In reply to: Will Pay for ThemeOnce my summer school over this week, I would probably get bored quickly, so, heck I’ll do it for you.
Friday is my final exam, so I’ll start after and probably get it done in the weekend. Hit me up at alphaoide a.t. gmaildotcom if you’re interested.
Forum: Fixing WordPress
In reply to: Extra code above header?In both header.php and index.php, you have
<body>. You need only one of them, preferably in header.php.Forum: Fixing WordPress
In reply to: Extra code above header?Paste your header.php, index.php, and footer.php separately on the following site: http://pastebin.com and give us the links.
Forum: Fixing WordPress
In reply to: Extra code above header?“check with the Default Theme”
Wordpress comes with two themes: Default and Classic. They should be under the Presentation menuForum: Plugins
In reply to: How to implement a thumnail system for a portfolio section?Many options. One of them:
http://www.simplebits.com/work/ => WP Page “work”
Featured Work list => posts titles of category “work”* View screen shots
* Related Notebook entry
* Visit the site
…and any other additional elements could be added to each post as a custom field.Forum: Fixing WordPress
In reply to: restarting post id numberingone reason is because of the archives: http://clonaid-commandos.letmefall.com/?page_id=2
Why do you have to display the post id anyway?another is for future needs of the site.
okay, you haven’t convinced me yet that your goal is worth the trouble. what is that “future needs” of the site?Forum: Fixing WordPress
In reply to: Extra code above header?It seems that you did the template files wrongly as I can see two “head” sections. Cross check with the Default Theme as to what goes to “header.php”, to “index.php” and to “footer.php.”
Forum: Fixing WordPress
In reply to: Page order in sidebarHow do you want to order it? What’s the code that you tried?
Did you look this up http://codex.wordpress.org/Template_Tags/wp_list_pages ?Forum: Fixing WordPress
In reply to: Posts_nav_link now won’t show upIf the code above is intended for frontpage only then modification follows.
<?php
if( is_home() ) {
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=3&showposts=2&paged=$page");
}
?>Forum: Fixing WordPress
In reply to: why do my hyperlinks display wrong?You need to prefix with http://
<a href="http://bbc.co.uk/cornwall">BBC</a>Forum: Themes and Templates
In reply to: Template. Why is it alright with FF and not with IE?What is Chris J Davis’ approach?
Forum: Themes and Templates
In reply to: Latests Post Per CategoryCreate a Loop for each category
http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_1
(second or third code blocks)Alternatively, there is a way to automate it so that you don’t have to code one Loop for each category. This is more advanced and probably someone else could help you with this.
Forum: Fixing WordPress
In reply to: raquo; for links in IE not showingAre you referring to the specific code below found in CSS file? If so, then, that is correct that IE does not support it.
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}