kindpastor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comments word wrapZOMG! I didn’t realize it only didn’t wrap for full words, not senences–I was so eager to find bugs–ah well–i guess that works!
Forum: Themes and Templates
In reply to: css border problemI can’t thank you guys enough for this solution. Never have I received a solution so fast that was so easy to impliment. You guys rock!
Forum: Plugins
In reply to: turning a category into a linklike–should i edit files for the them or files with wordpres–where are categories defined? This is the last thing i need to before i fille the blog with content–so i’d really like to know!
Forum: Plugins
In reply to: turning a category into a linkFor example on this site: https://mrpkbb.com/blog/
You see the “menu” sectiona and underneath it are buttons that take you to different blog categories–I was wondering if it was possible to make it so one of those buttons takes you to a url instead of a category.Forum: Plugins
In reply to: Excluding categories from mdv archiveI tried inserting
if (is_category(‘-1’)
but it has no effect
Forum: Plugins
In reply to: Excluding categories from mdv archiveWhat i meant to say was–is there a way to make the mdv plugin only apply to certain categories?
Forum: Themes and Templates
In reply to: adjusting plugin cssoh I almost forgot– this is what mine looks like:
Forum: Themes and Templates
In reply to: adjusting plugin cssI removed a lot of things from the code I didn’t want from the archive.php file, what I can’t figure out is how do alter the appearence (text size, color, etc.) A copy of the edited archive code can be found here https://www.mrpkbb.com/archive.txt –also does anyone know how I could restrict the archives to only appear for one category?
Forum: Fixing WordPress
In reply to: Categories display main link instead of actual postSince the theme i am using “simple green” doesn’t come ith an archives.php file i copied the archives.php file from the default theme–it consists of this:
<?php
/*
Template Name: Archives
*/
?><?php get_header(); ?>
<div id=”content” class=”widecolumn”>
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
<h2>Archives by Month:</h2>
-
<?php wp_get_archives(‘type=monthly’); ?>
<h2>Archives by Subject:</h2>
-
<?php wp_list_cats(); ?>
</div>
<?php get_footer(); ?>
I have no idea what to add/delete to that to restrict the archives to show comments only–I also am not sure what to seach for regaurding using the Loop. I know I am trying people’s patience but this blog is essentially the first experience I’e had messing with php.
Forum: Fixing WordPress
In reply to: Categories display main link instead of actual postI know I sound stupid but…where might i find the archives template and what is it called?
Forum: Fixing WordPress
In reply to: How to hide posts from 2 or 3 categories from index pagewhat plugin would that be? I would like to do the same thing
Forum: Fixing WordPress
In reply to: Set Home categorySo what I’m basically asking is how to make only one category show up on the home page and not all recent posts. BTW i have modified the template a liite, removing the calendar and meta sidebar displays.
Forum: Fixing WordPress
In reply to: Categories display main link instead of actual postsorry–I’m really bad with php I wonder if anybody knows what part of the script I’d need to erase to get to only display the link–and if there’s a way to restrict that display to only certain categories (I want the home category to display actual posts, but not the others)