• Resolved rossagrant

    (@rossagrant)


    Hi all,
    I have recently added a custom post type which also has 2 custom taxonomies. One called ‘Shows’ and one called ‘Locations’. I want to display some of these in a custom tag cloud.

    I have installed the plugin Better Tag Cloud which will call the correct tags into the cloud but clicking one takes me to a ‘Page Not Found’ error.

    The URL is just http://www.mysite.com/tag

    The URL should be http://www.mysite.com/shows/’tag term’

    Does anyone know what I could be doing wrong or know of a better way/ different plugin to display custom taxonomies?

    Thanks for your time!
    Ross 🙂

    http://wordpress.org/extend/plugins/nktagcloud/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Ross,

    I had this same problem and found the line needing a fix. The file needing the fix is nktagcloud/inc/page.php, line 223.

    Change:
    $link = get_tag_link( $tag->term_id );

    To:
    $link = get_term_link( $tag, $args[‘taxonomy’] );

    Regards,

    Matt

    I had this same issue and this fix fixed it for me.

    @nkuttler, Can we get this added to the next version update?? It’d be awesome! Thanks for the great plugin too, btw.

    Plugin Author nkuttler

    (@nkuttler)

    Hi and thanks for reporting this! I’m just uploading a new release.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Better Tag Cloud] Displaying Custom Taxonomies from a custom post type in a tag cloud?’ is closed to new replies.