Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Two Loops, no navigation Previous NextCan you post the Loops here: http://paste.uni.cc
Forum: Installing WordPress
In reply to: How do i redirect a page to like a website?A plugin solution: http://txfx.net/code/wordpress/page-links-to/
Forum: Fixing WordPress
In reply to: Line Breaks.. not working in comments.I suppose you just want more white space between paragraphs?
If so, add the following in you CSS file (adjust the value as necessary).
.comment-text p {
margin-bottom: 10px;
}Forum: Installing WordPress
In reply to: Own LogoWe need the link to your blog.
Forum: Fixing WordPress
In reply to: list recent posts in categoryedit: nevermind.
Forum: Plugins
In reply to: Auto-save at GmailWhen the plugin fails, “Save as draft” feature comes to the rescue. 😉
Forum: Plugins
In reply to: Auto-save at GmailForum: Installing WordPress
In reply to: Repeats the text after comments?Okay, you didn’t answer my question. I need to verify this.
With the following line, you get repeat post; without it you don’t.
<?php comments_template(); ?>Is that correct?
It seems the post repeats only if you close the comment, huh?Next, post your
page.phpin the following site: http://paste.uni.ccForum: Plugins
In reply to: How can I limit the number of asides?The following covers question 1 and 2 of original poster.
http://rhymedcode.net/1001-wordpression-loops/miniblog/Forum: Installing WordPress
In reply to: Repeats the text after comments?So, you got repeat post after adding the following line?
<?php comments_template(); ?>Can you post your
comments.phpin that theme folder? http://paste.uni.ccForum: Fixing WordPress
In reply to: A SQL Query to extract posts by categoryThe more official/recommended way:
<?php query_posts('cat=35'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Do special_cat stuff... -->
<?php endwhile;?>http://codex.wordpress.org/Template_Tags/query_posts
http://codex.wordpress.org/The_Loop#Multiple_Loops..and yet, another way…
http://codex.wordpress.org/Template_Tags/get_postsForum: Plugins
In reply to: show posts 11-20Post the whole content of the file that you have now, including the recent addition: http://paste.uni.cc
Forum: Plugins
In reply to: sidebar.phpPost the content of sidebar.php here: http://paste.uni.cc
Tell us exactly where you want to put the picture and name. (between what and what)Forum: Themes and Templates
In reply to: Remove a div?Paste the whole code for the following 2 files separately in http://paste.uni.cc
index.php
comments.phpCome back and give us the links after pasting the code.
Forum: Themes and Templates
In reply to: Remove a div?List all the files you have in the current theme folder.