jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image Uplading Problemit says that uploads are stored in this folder "wp-content/uploads" maybe it needs to be something else?— Nope, that’s the default folder setting
— Based on the error you reported, WordPress does not have permission to write to the wp-content directory (either to create folders or write files). If you don’t have the ability to change the permissions of that folder you’ll need to work with your host to do so.
Forum: Fixing WordPress
In reply to: Display more posts for categories than on index.phpI’d look into modifying the default query on your index.php via query_posts(). For example, something like:
// modify the query to only show two posts per page query_posts($query_string.'&posts_per_page=2'); // run The Loop as normal once the query has been modified if ( have_posts() ) : while ( have_posts() ) : the_post();Forum: Fixing WordPress
In reply to: 24/7 WordPress Support ServicesI’ve never used it, but I’d check out Alex King’s* WP Help Center since I’ve used several of his plugins and they’re top notch.
*technically I think the service is offered by his company and not him personally, but he seems to do real quality work so I’d recommend it nonetheless.
Forum: Fixing WordPress
In reply to: How to get Bullet Points to showTry adding this to your theme’s style.css file:
.entry ul li { list-style-type: disc; list-style-postition: outside; margin-left: 0; }Forum: Fixing WordPress
In reply to: Image Uplading ProblemCan you log into your wordpress site via ftp?
If so, check the permissions on the /wp-content folder and its subfolders. Read through http://codex.wordpress.org/Changing_File_Permissions for more information.
I agree with Ipstenu and would proceed to http://wordpress.org/extend/themes/
Forum: Fixing WordPress
In reply to: atom feed displays incorrect post dateAtom feed shows incorrect date on posts. The date it shows is the date of the last post I added. Furthermore, Atom feed shows the same date on all posts. Why it might be doing it?— The atom feed contains both the date/time the post was published (<published>TIME_STAMP</published>) and the date/time the post was last updated (<updated>TIME_STAMP</updated>).
— The RSS 2.0 feed only contains the only the the date/time the post was published (<pubDate>TIME_STAMP</pubDate>).
Forum: Fixing WordPress
In reply to: no text/content in my homepageThere is some strange html on your home page…can you post the contents of your index.php file?
Forum: Fixing WordPress
In reply to: Why can’t see advertising widget in my sidebar 1 on my blogI cannot see an Amazon advertising widget I put in my sidebar 1 (left side of content) in my computer, whereas, other computers do see the widget— I’m seeing it…running Firefox on a Mac OS X 10.5
— Is there any difference in the browser/operating systems between the computers you tested on?
Forum: Fixing WordPress
In reply to: Some of the comments displayI’m seeing 119 comments on that page now…did you change the number of comments to show on each page option? (/wp-admin/options-discussion.php)
I know that you can add some code to your theme to enable comment pagination so you don’t load 100+ comments per blog post, but I’m not sure exactly what you have to add to get it working.
For example, if you do that a url like http://chicgalleria.com/2009/11/giveaway-the-body-shop-holiday-bath-body-basket/comment-page-2/ would show comments 20-40 (if you had a 20 comment per page limit set).
Hope that makes sense.
Forum: Fixing WordPress
In reply to: atom feed displays incorrect post dateCan you post a link to your site and feeds?
Forum: Fixing WordPress
In reply to: no text/content in my homepageCan you post a link to your site?
Forum: Fixing WordPress
In reply to: Setting automatic post expiration dateI’m confused about your site’s workflow; can you post the URL so I can see how it works?
Forum: Fixing WordPress
In reply to: Mysterious cache files in themes foldermy themes folder has been duplicatedWhere has the folder been duplicated? Is it on the same directory level as your other themes?
Forum: Fixing WordPress
In reply to: Can I dislpay full text for first article only?You will need to edit some code in the php template file that your theme uses to display posts.
I’d say it’s relatively easy and I’d recommend creating a backup of your theme in case something goes wrong so you can easily revert back to a copy that is known to work.