rossagrant
Member
Posted 1 year ago #
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/
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
circlecube
Member
Posted 1 year ago #
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.
nkuttler
Member
Posted 1 year ago #
Hi and thanks for reporting this! I'm just uploading a new release.