jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with dates on postshttp://www.crazyforsavings.com/category/stores/walgreens/– This is a category page, which lists all posts categorized as “Walgreens.” If you don’t want to have category pages just delete all the categories.
– Note that WordPress automatically categorizes posts as “Uncategorized” if you don’t specify a category so http://www.crazyforsavings.com/category/uncategorized will still list posts.
– See http://codex.wordpress.org/Posts_Categories_SubPanel for more information on categories.
Forum: Fixing WordPress
In reply to: Categories no longer showing when adding new postsIt looks like the Google Adsense plugin you’re using on this post is creating some malformed html which is breaking your page.
Forum: Fixing WordPress
In reply to: 400 Bad Request Error – How to Fix?The slug appears below the post title and is highlighted in yellow. Click on the slug and it turns into an input box.
Forum: Fixing WordPress
In reply to: Moving WordPress to new URLAlthough the PHP documentation says that str_replace will work on arrays, it does not seem to– yeah, I’ve experienced the same problem, but I never investigated a better solution
If anyone is interested, I would be glad to share the script.– can you post a pastbin link?
Forum: Fixing WordPress
In reply to: Why the page ids don't work when I put them in widget?From the plugin’s FAQ:
How do I completley exclude some pages from the list? If the exclude list parameter is insufficient, you might try the Exclude Pages plugin, which is compatible with this one: http://wordpress.org/extend/plugins/exclude-pagesForum: Fixing WordPress
In reply to: Moving WordPress to new URLI have written a routine that converts these records– how does the script convert the rows?
Forum: Fixing WordPress
In reply to: 400 Bad Request Error – How to Fix?Did you manually set/update the slug to include the quote?
Forum: Fixing WordPress
In reply to: html5 tinymce woes –what am I doing wrong?I don’t know if TinyMCE allows html5 elements or if there is a way to extend it to allow them, I’d look at using the
tiny_mce_before_inithook since you should be able to overwrite any WordPress default settings.Forum: Fixing WordPress
In reply to: Disable linksdisable ARCHIVE, CATEGORIES and META links– are these appearing in your sidebar? If yes, place an empty text widget (wp-admin/widgets.php) in your sidebar.
– Can you post a link to your site?
Forum: Fixing WordPress
In reply to: RSS Feed URL is empty<?php bloginfo('rss2_url') ?>Forum: Fixing WordPress
In reply to: Blog RSS feed only shows commentsCheck your theme’s header.php and look for something that starts with:
<link rel="alternate" type="application/rss+xml"Forum: Fixing WordPress
In reply to: Twitter Widget: How do I change indention?Can you verify that there is not a space between the ‘.’ and ‘widget_twitter’ of the code you added?
correct code:
.widget_twitter ul { padding: 0; }/rss outputs a feed based on the RSS 0.92 standard while /rss2 outputs a feed based on the RSS 2.0 standard.
Forum: Fixing WordPress
In reply to: Strange Recurring ProblemDo you have any redirection plugins on your site? Can you post a link?
Forum: Fixing WordPress
In reply to: Sort Posts in Ascending Order through wp_get_archivesTry
wp_get_archives('type=alpha');