Joshua Sigar
Forum Replies Created
-
Forum: Plugins
In reply to: How to apply a filter to the entire page?You can do some output bufferring. But before going to further details, what is it precisely that you want to filter out?
Forum: Fixing WordPress
In reply to: Random StrikethroughsCan you just install another WP in a sub-directory just to see whether it’s your account-related??
Forum: Themes and Templates
In reply to: Background effectIn the dialog box of gradient tool, you should see options something like solid-to-solid, solid-to-transparent, etc.
Forum: Fixing WordPress
In reply to: Random StrikethroughsDoes the problem occur in any other themes?
Other than that, validate the site.
http://validator.w3.org/check?verbose=1&uri=http://www.nicoleclabaugh.com/Forum: Themes and Templates
In reply to: Any CSS Wizards ?Are you saying the list items are listed horizontally instead of vertically?
You may want to try to delete the line display: inline; in the following separate two sections of your CSS code.
.meta li, ul.post-meta li {
display: inline;
}.meta ul {
display: inline;
list-style: none;
margin: 0;
padding: 0;
}
And yeah, for this kind of question, I would require the link to the problematic site.
Forum: Themes and Templates
In reply to: formating functionsAdd the following to your CSS file
.boxSidebar ul h2 {
margin-bottom: 0;
margin-top: 10px;
}Adjust the pixel values to your need
Forum: Fixing WordPress
In reply to: about searchingI can’t quite understand what you’re trying to say. I hope the following solves your problem.
Copy index.php in the currently active theme folder and name it as search.php.
Find the instance of the following in search.php
the_content()…and replace it with the following
the_excerpt()Forum: Installing WordPress
In reply to: Set-up Question, logging inCan you access http://yourdomain.com?
I’m assuming you’re installing with Fantastico or something like via admin panel provided your host? If so, then I have no insight of what’s going on.
Anyway, I’d suggest that you come back with question once your nameserver is properly propagated (when you’re able to access http://yourdomain.com).
Forum: Plugins
In reply to: Looking for a plugin to enhance postingEnhance it in what way?
Forum: Fixing WordPress
In reply to: is_home no longer working^^If you want to do Kafkaesqui’s, make sure you add those three lines after the last query_posts().
If you want to do mine:
1. Omit the following from index.php
<?php
if (is_category())
{
get_cat_icon('');
}
?>2. Create a file category.php and copy the content of index.php to it.
3. Call
get_cat_icon()in sidebar in category.php.note: index.php is loaded when you go to mysite.com
if you go to mysite.com/?cat=1 or mysite.com/category/news, category.php is loadedForum: Fixing WordPress
In reply to: is_home no longer workingAre these <php query posts> confusing WP? Why?
Yup. By querying Posts of a specific category, you make it a Category page, henceis_category()returns true in the front page.There are a couple solution to this, But I’d suggest that you create a template file category.php. Call
get_cat_icon('')in category.php, but omit it in index.php.Forum: Fixing WordPress
In reply to: Hiding specific pages (non wp_list_page)If you’re not using
wp_list_pages, what do you use?Anyway, I would just hardcode all the links to pages I want.
Forum: Fixing WordPress
In reply to: Firefox prompts to open on various wordpress pagesIt’s a server issue rather than client (browsers) issue, I suspect. I suppose you get that prompt from any browsers and any computer, and when you access any .php files?
Forum: Fixing WordPress
In reply to: Using FrontpageYou need to edit the index.php of the active theme located in one of the folders under wp-content/themes/
Forum: Everything else WordPress
In reply to: Is this possible in Wp ?With whatever method necessary.
Any specific question? (I’m not a mind reader.)