Vanilla 1.0.1 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthortcannolo
    • CommentTimeFeb 4th 2007 edited
     
    I'm really confused. I had UTW 3.1415926 sort of working: the tag cloud showed up, but I got 404 errors. I installed the new version 3.14159265, and now the tag cloud has disappeared. The source code of the page that's actually displayed shows no trace of the UTW function.

    When I switch back to the previous version, the tag cloud shows up again. I get the same result when I've disabled the few other plugins.

    Something does work in the new version: the tag-entry form in the write-page page is still there.

    I'm using Wordpress 2.07.

    Clues, anyone?
    Thanks


    P.S. I like UTW, but while I'm waiting for a solution to this and other problems with it, is there some other plugin that does a nearly-as-good job of tag clouds that work with pages? Either with 2.07 or 2.1.
    • CommentAuthornewflesh
    • CommentTimeFeb 5th 2007
     
    I think I have the same problem. The tags in the posts still work, but not the tag cloud. When I go to the tag management page it says "No tags in use". Something needs unclogging, I think, but I can't find out what.
    • CommentAuthoradmin
    • CommentTimeFeb 6th 2007
     
    Ooh. Wordpress 207 is apparently doing things. Sinister things! I've been preoccupied with the madness of wordpress 2.1, that I must have broken the plugin for old versions. Hrm. I shall investigate!

    As for tag clouds with pages; at the top of ultimate-tag-warrior-core.php there are a couple of lines;

    $typelimitsql = "(post_type = 'post' OR post_type = 'page')"; // include pages
    $typelimitsql = "(post_type = 'post')"; // don't include pages - comment this out if you want!!

    If you comment out the second one, the tags on pages will be included in tag clouds / tag pages.

    (Uh, it should look like once you've commented.
    $typelimitsql = "(post_type = 'post' OR post_type = 'page')"; // include pages
    // $typelimitsql = "(post_type = 'post')"; // don't include pages - comment this out if you want!!
    )
    • CommentAuthoradmin
    • CommentTimeFeb 6th 2007
     
    Okay (:

    What you want, for that $typelimitsql (with pages!) is

    $typelimitsql = "(post_type = 'post' OR post_type = 'page' OR post_type = '')";

    (Or without pages...
    $typelimitsql = "(post_type = 'post' OR post_type = '' AND post_status != 'static')"; //
    )

    Looks like in wordpress 2.0.7, the post_type value doesn't get set to anything; most (or all) of the time.
    • CommentAuthornewflesh
    • CommentTimeFeb 6th 2007
     
    I woke up at six today but don't have to be at work until one, so I finally got some time to upgrade Wordpress to 2.1, so I thought I'd mention that I seem to be rid of my problems now.

    Oh, and thanks for all the good work with the plugin and all that. :)