tchandler
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Zero Conf Mail] CSS issueit’s not the plugin author’s job to teach you css.
anyway, to get rid of the border go into the plugin’s style sheet and add this:
fieldset{
border: none;}Forum: Fixing WordPress
In reply to: navigation/page permalink problemokay. changed my navigation.php file to what’s below, replacing the next_posts_link and previous_posts_link (code posted below). but no change.
<?php /*
This navigation is used on most pages to move back and forth in your archives.
It has been placed in its own file so it’s easier to change across all of K2
*/ ?><hr />
<?php if (is_single()) { ?>
<div class=”navigation”>
<div class=”left”><?php previous_post(‘« %’,”,’yes’) ?></div>
<div class=”right”><?php next_post(‘ % »’,”,’yes’) ?></div>
<div class=”clear”></div>
</div><?php } else { ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
<div class=”clear”></div>
</div><?php } ?>
<hr />
Forum: Fixing WordPress
In reply to: navigation/page permalink problemthanks moshu! i’m not very code saavy and don’t know exactly what i should replace with what from the template_tags link you posted. could you let me know? i’m using k2, which has a standalone navigation.php file.
(also, have since realized that
tags: don’t work (just displays 1st page)
categories: work
monthly archive: works)Forum: Themes and Templates
In reply to: Category PageForum: Themes and Templates
In reply to: Category Pagemoshu? someone? i’m in need of a little help with the same problem.
i’ve created a category template which i want to apply to a page in order to display all posts in a particular category.
it pulls the posts in correctly, but the page looks like an archive page even thoughtthe template that i created is a copy of index.php with the query_post added. how can i get the page to display like my main page and not as an archive?
here’s the template i created:
<?php
/*
Template Name: Media Template
*/get_header(); ?>
<div class=”content”>
<div class=”primary”>
<?php query_posts(“cat=18”);
include (TEMPLATEPATH . ‘/theloop.php’); ?></div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
Forum: Installing WordPress
In reply to: Problem establishing a database connection after moveactually, i’m having the same exact problem (changed hosts for two blogs; one switch worked, one didn’t. getting the same error).
i’ve gone through the backed-up database and tried doing a ‘find and replace’ for the absolute path (it’s different on the new host), thinking that could be it…but still, same problem.
allie, could you explain in slightly more detail what you had to modify?
thanks for any insight.
tchandler