Joshua Sigar
Forum Replies Created
-
Forum: Plugins
In reply to: Main page only ONE category posts pleaseDownload and install the following plugin. The instruction to use it is on the file.
http://dev.wp-plugins.org/file/front-page-cats/trunk/front_page_cats.php?rev=57&format=raw
Forum: Fixing WordPress
In reply to: List of 5 Most Recent Posts Within a CategoryI need to see the problematic site to troubleshoot this.
Forum: Requests and Feedback
In reply to: Sourcecode flaw prohibits postingMy files are all renamed to lowercase due to my FTP clients habit of doing so (which imho is totally normal behaviour and known amongst coders so that all -thought through- links are done in lowercase)
class-IXR.php never shows up as a hyperlink; it’s an include file.
I’m a developer and this is the first time I heard that FTP’s behaviour converting filenames to lowercase is normal.
I name my classes file in mixed case (e.g. XmlReader.php) and I don’t plan to change that habit.
Forum: Everything else WordPress
In reply to: two column comment systemThere is an idle column in comments table–comment_karma. A plugin needs to be developed to add the interface on the comment form and update that column.
Forum: Fixing WordPress
In reply to: How can I make my posting text larger?Are you talking about the Post content on the front page? We need the link to your wp installation.
Forum: Fixing WordPress
In reply to: Question about ExcerptAre you saying you can’t load the following page?
http://codex.wordpress.org/Template_Tags/the_excerptForum: Themes and Templates
In reply to: WordPress.org Theme?No, it’s not.
Browse themes for download at http://themes.wordpress.net
Forum: Plugins
In reply to: Can anyone tell me how to make WP-Pagenavi dissapear if only one page?ok, I’m just experimenting here.
Find the following line in the plugin file.
$max_page = ceil($numposts /$posts_per_page);Modify it to become the following.
$max_page = ceil($numposts /$posts_per_page);
if ($max_page == 1) return;
Forum: Fixing WordPress
In reply to: Posts and Sidebar does not Display properly in IEWe need a link to your site.
Forum: Fixing WordPress
In reply to: simple formatting problem since upgradebefore the update, the first line of text was in line with the top margin of the photo to the left. now it’s slightly low.
Looks fine to me.
Forum: Fixing WordPress
In reply to: Header link clickable in FF but not IEFor #header a section in your CSS file, set some height property, and then you need to adjust/remove the top/bottom padding.
height: 100px; /* adjust the value */Forum: Fixing WordPress
In reply to: Header link clickable in FF but not IEWe need the link to that website with problematic header.
Forum: Fixing WordPress
In reply to: How to Display Comments on Individual Stand-alone Pages?If your theme has the file
page.php, make sure there is this line of code in that file.<?php comments_template(); ?>Forum: Fixing WordPress
In reply to: No header cgraphic when printingHmm, if I’m not mistaken, any images displayed thru CSS won’t ever display in print.
The solution would be to inline the image in header.php itself and then…bla..bla… (I’m not really interested to elaborate).
Forum: Fixing WordPress
In reply to: Text is centered, Need to alignView the html source of the page and you should see the following–the culprit.
p {
text-align: center;
}It’s likely that those lines are embeded in index.php.