Forum Replies Created

Viewing 12 replies - 31 through 42 (of 42 total)
  • Jay

    (@topdownjimmy)

    Have you tried deactivating other plugins to see if there is a conflict? I’m running WP 3.0 and FeedWordPress 2010.0623, and it works for me.

    Thread Starter Jay

    (@topdownjimmy)

    My mistake, I hadn’t properly called my custom comments function. Works great.

    Jay

    (@topdownjimmy)

    For those experiencing a slow dashboard in 2.7, try deleting all your spam comments. This causes the “Recent Comments” box to load much more quickly.

    Jay

    (@topdownjimmy)

    I was having this same problem. I had several hundred spam comments, which caused the “Recent Comments” box to perform multiple queries over hundreds of rows in the comments table before it came up with five legitimate ones to display.

    To solve the problem I simply deleted all my spam comments. The dashboard loads much faster now. Hope this works for you.

    Jay

    (@topdownjimmy)

    I just realized the problem is the wp-typogrify plugin. After disabling it, caption shortcode works as expected.

    Jay

    (@topdownjimmy)

    I’m having this same problem (using WP 2.6). The shortcode is there in the HTML editor, the caption is visible in the visual editor, but the captions don’t even show up in the page source when viewing the post (none of those dl, dt, or dd tags at all).

    Jay

    (@topdownjimmy)

    I am actually still experiencing this problem (WP 2.3.2).

    If I write a post, and click Save or Save and Continue Editing, the post does not show up in the Manage page, even when I filter by Drafts.

    If I then manually type the post ID into the edit post url, I am presented with the draft; if I then click Save or Save and Continue Editing a second time, the draft now does appear in the Manage page when filtering by Drafts.

    I’m sure I’ve lost several drafts this way, but I don’t want to iterate through a bunch of post IDs to find them.

    Help?

    Jay

    (@topdownjimmy)

    The crucial line here is <?php $results++; ?>

    This just increments a PHP variable for every post displayed on the current page (which you apparently have set to a limit of 2). It can’t count the posts on other pages.

    I think in order to display the number of search results accurately, you need to install a plugin.

    Jay

    (@topdownjimmy)

    I’d like to add a request for some help with this. What I’ve done is create a page called “Arbitrary Comments,” whose ID is 120. All I had to do then was add this code to my sidebar:

    <?php query_posts('page_id=120'); ?>
    <?php comments_template(); ?>

    And the comments and reply box appeared.

    However, I’d like the comments to be in descending order of recentness. Is there a way I can do this without altering the WordPress source? I tried pasting the contents of comments.php into the sidebar instead of using the comments_template function, but it seems there is more to that function than meets the eye, as this produced errors.

    Thread Starter Jay

    (@topdownjimmy)

    I believe I may have solved this myself; paged archives use the main index template, so I added this code to it:

    <?php if ( is_paged() ) { ?>
    ...
    <? } else { ?>
    ...
    <? } ?>

    It’s just a conditional that does one thing if it’s a paged archive, and another if it’s not.

    Forum: Plugins
    In reply to: Using loops and query_posts
    Jay

    (@topdownjimmy)

    Is there any way to do this while only showing one post? In other words, I want to show only the most recent post that doesn’t have a particular post-ID.

    Thread Starter Jay

    (@topdownjimmy)

    nevermind…i removed the code from the sidebar, so that it ONLY appears in the menubar, and now it’s working.

    i guess you can’t call the list_cats tag twice.

Viewing 12 replies - 31 through 42 (of 42 total)