Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: codes question — Dropdown for ArchivesHmm…why not? Try and see.
(I don’t really understand the question, by the way)Forum: Plugins
In reply to: Several Plugin Questionshow do I make the page call a style sheet?
if you include the header.php, it includes the stylesheet also.
<?php get_header(); ?>Also is there a way to take the images out of the post?
If, instead of usingthe_content(), you usethe_excerpt(), then the image will be stripped out.Or you could use some css to hide the images.
Forum: Fixing WordPress
In reply to: listing posts that are only listed in two categoriesI believe the field
post_categoryis no longer use. You have to go to*post2cattable.Forum: Themes and Templates
In reply to: different catergory post stylesAre you talking about frontpage, category page or single-post page?
Forum: Themes and Templates
In reply to: Templates Not In PulldownProbably text editor that you use.
Try adding links.php and archives.php templates from Default Theme. If they work then start off with one of those file: rename template name and fill in your content.
Forum: Plugins
In reply to: no WP Amazon images@beel, is there supposed to be an amazon image here?
http://www.billhayes.us/wordpress/cgaindex.php?p=ASIN_B00009P1MPForum: Installing WordPress
In reply to: Links categories title: backgroung imageFind the following in your css file…
h2 {
width: 508px;
font-size: .7em;
background: url('images/date_cross.jpg') no-repeat; /* original: date.gif */
height: 23px;
margin: 0;
padding-top: 4px;
padding-left: 5px;
color: #ABABAB
/* Original: color: #0E2E4A */
}…and change the first line to become…
#content h2 {
width: 508px;
font-size: .7em;
background: url('images/date_cross.jpg') no-repeat; /* original: date.gif */
height: 23px;
margin: 0;
padding-top: 4px;
padding-left: 5px;
color: #ABABAB
/* Original: color: #0E2E4A */
}Then add the following to your CSS file; customize as necessary.
#menu h2 {
font-size: 1em;
}Forum: Plugins
In reply to: no WP Amazon imagesI’m using CG-Amazon and the images are not showing either. I hope it’s just a temporary downtime on amazon server.
Forum: Plugins
In reply to: How do I categorize a page?Don’t use the template tag
the_category()for Page template. Pages are not meant to be categorized in WP; thus, the lack of support of Page category.Forum: Themes and Templates
In reply to: Help – Truncated Posts / End of Posts MissingI could see all the END HEREs. Probably the site didn’t load completely for you?
Forum: Installing WordPress
In reply to: Problem with the layout of commentsFind the following in your CSS file and delete the noted line.
.commentmetadata {
margin: 0;
display: block; <-- delete this line
}Forum: Fixing WordPress
In reply to: How to show just excerpts on main page?1. Copy the index.php and name the copy single.php
2. In single.php replace ..
the_excerpt()
..with…
the_content()Forum: Everything else WordPress
In reply to: Is WordPress appropriate for building a review site?Can I also use it to display the data in a table format?
You have to know how to code table in HTML, and maybe some CSS.Forum: Requests and Feedback
In reply to: LinkblogThe only thing that’s missing is the title pointing to external url. However, you could probably hack up the following plugin to suit your need.
http://txfx.net/code/wordpress/page-links-to/Forum: Requests and Feedback
In reply to: LinkblogIs it like “snippets” in this site: http://brokenkode.com ?
If so you just need to do multiple Loops:
Loop 1 grabs all Posts not in category “Linkblog”
Loop 2 grabs all Posts in category “Linkblog”http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_1