aparentdesign
Forum Replies Created
-
Forum: Plugins
In reply to: Feedburner plugin-Security Hash MissingI’m also seeing this. At first I thought it was just because my blog was too new, but I also experienced it on an older blog.
Forum: Plugins
In reply to: [Plugin: Email Alerts] only sending emails for logged in usersHi there,
This plugin would only work to send comment approvals but not for comments waiting in queue. Your stock response doesn’t address the issue, but thanks, we are using another plugin.Forum: Fixing WordPress
In reply to: Can’t use “thumbnail, medium, large” for images anymore?I am also having this trouble, but only with old images circa 2009. Newly uploaded images work fine with the thumbnail feature so I think it’s not a GD issue. Also, the files are small (~700k and <500x800px).
What else could be causing this? This is on a blog running WP 2.8.4 (can’t update or will break theme).
We did not change hosting during this time, but did change our url.
Forum: Themes and Templates
In reply to: Changes Twentyten 1.0 >> 1.1Thanks Nacin, that page header thing was annoying me!
Forum: Plugins
In reply to: need plugin to take site offline for maintenance v2.9,.2I also use maintenance mode, it is very nice and quite simple.
Forum: Plugins
In reply to: What is the best SEO Plugin?It’s true you can handle your permalinks readability in the settings panel. I use All in one to add tags and categories to meta keywords per page, and a few other things.
Forum: Plugins
In reply to: [Plugin: All in One SEO Pack] causes code to appear at top of pagesI use this plugin and wp 2.9.1 on several blogs and have no issues with it at all. What is your theme?
Forum: Fixing WordPress
In reply to: Deleted Posts still show up in RSS feed – ?I’d also like an answer to this. I had to put a technorati code in and once I delete the post, it’s still showing up in the RSS feed… and I have other sites pulling in the RSS and now have a technorati code post showing!
Forum: Plugins
In reply to: [Plugin: WP-Polls] Compatibility with 2.9.*Upon voting, poll puts answer in another nested wp-poll wrapper in 2.9.2 and most recent plugin. I went back to 2.31.
Forum: Fixing WordPress
In reply to: Omitting one post with paginationThanks. It seems more complicated than necessary, but this worked:
$args = array(
‘post__not_in’ => array($featuredPostID),
‘paged’ => $paged
);$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query($args);Forum: Fixing WordPress
In reply to: Omitting one post with paginationThanks. I changed my mind and decided this would be more direct. Any ideas?
Forum: Plugins
In reply to: IE7 and section-widgetHi there, I figured it out. The different functions I was using in the sections each have their own approach to including ul>li tags. Some auto include and some don’t, I’d advise anyone else having similar issues to validate and check carefully!
Thanks!
Forum: Plugins
In reply to: [Plugin: WP-PostRatings] have rating options show under the headlineHi there, I have a similar question on the widget, it displays the article title then the ratings images… sometimes there is a line break in the middle of the ratings, which looks odd.
Is there a way I could force a break before the images? The images are not wrapped in a div of their own (as they are in the article code) which would be really handy.
Thanks!
Forum: Plugins
In reply to: [Plugin: Section Widget] Having DifficultiesTo get recent posts, I used the PHP shortcode plugin and put a new call to the Loop in there. After futzing with php shortcode I got it to work.
Forum: Plugins
In reply to: [Plugin: RSSImport] Shortcut does not workHow do I use this with a text widget? I input the short code with my feed URL and it just displays the short code instead of the feed.
I would just use the rss widget except I want to put some other things (a form etc) in with it.