ckadet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't import WpGallery pages from XML!Yeah… like i haven;t changed anything in the uploads folder
Forum: Fixing WordPress
In reply to: Can't import WpGallery pages from XML!What do you mean preserving the folder structure? I dragged the uploads folder into the new hosting.
Forum: Fixing WordPress
In reply to: Can't import WpGallery pages from XML!say it ain’t so…
Forum: Themes and Templates
In reply to: CSS Text properties not working in IE7 and MozillaThanks!
Forum: Themes and Templates
In reply to: CSS for Text Widget problemty
Forum: Themes and Templates
In reply to: EASY QUESTION (paragraph spacing)GENIUS!
Thank you. ??
Forum: Themes and Templates
In reply to: EASY QUESTION (paragraph spacing)Here is my CSS file. Please help.
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageExcellent! I removed a line in the index file and it fixed my problem. Thank you!
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageThese are the other files that I can access from WordPress.
404 Template
(404.php)All Posts Page Template
(posts.php)Comments
(comments.php)Footer
(footer.php)Header
(header.php)Main Index Template
(index.php)Newsletter Page Template
(newsletter.php)Page Template
(page.php)Search Form
(searchform.php)Search Results
(search.php)Sidebar
(sidebar.php)Single Post
(single.php)Theme Functions
(functions.php)categories.inc.php
(categories.inc.php)home.php
(home.php)popup_comment.inc.php
(popup_comment.inc.php)thumb.inc.php
(thumb.inc.php)thumbBigger.inc.php
(thumbBigger.inc.php)timthumb.php
(timthumb.php)widgets.php
(widgets.php)Styles
Stylesheet
(style.css)Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageLOL. Right. I am in categories.inc.php… I believe that is the file. It reads:
<?php
$parents = getParentCategories();
foreach($parents as $parent) {
echo “<div class=’box’><h3>id ).”‘>$parent->name</h3>”;
$children = getChildCategories($parent->id);
$index = 0;
foreach ($children as $child) {
if($index%4 == 0) {
echo ”- “;
}
remove_filter(‘term_description’,’wpautop’);
if ( category_description( $child->id ) == “”) {
$linkdescription = $parent->name.’ » ‘.$child->name;
} else {
$linkdescription = category_description( $child->id );
} echo”
- id ).”‘
title=’$linkdescription’>$child->name
“;
$index ++;
if($index%4 == 0 || $index == count($children)) {
echo “
“;
}
}
echo “</div>”;
}
?>So where would I put the line?
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageI am editing category.php as we speak, from wp-includes.
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageWhere is the start of the loop? :S
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageBasically, for all of the “category” pages, I want it to have the template in the example above MINUS the read more button.
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageI want to be able to have multiple categories that have the same template as I am describing.
Forum: Themes and Templates
In reply to: Removing 'read more' link on Category pageIs there an easier way?
- id ).”‘