ttc2003
Forum Replies Created
-
Sorry but where do i put the .tag-class?
I tried in the themeroller .css files but no luck.THX Freek
Forum: Plugins
In reply to: [Tag Groups is the Advanced Way to Display Your Taxonomy Terms] Tags groupedThanks for your support. I appreciate it very much.
Case closed!
FreekForum: Plugins
In reply to: [Tag Groups is the Advanced Way to Display Your Taxonomy Terms] Tags groupedThanks again. In the themeroller setup i can change some things as tag cloud colors, font settings etc.. Also there is a section with framework icons. Is it possible to show an icon as separator? Now i use the following code:
<?php if ( function_exists( ‘tag_groups_cloud’ ) ) echo tag_groups_cloud( array( ‘include’ => ‘1,2,3,4,5’, ‘tags_post_id’ => 0, ‘hide_empty_tabs’ => 1, ‘smallest’ => 12, ‘largest’ => 12, ‘separator’ => “?”, ‘separator_size’ => 18 ) ); ?>
I want to use an other separator. Is it possible?
THX
FreekForum: Plugins
In reply to: [Tag Groups is the Advanced Way to Display Your Taxonomy Terms] Tags groupedSuper! Thanks. It works!
One final question:
How about formatting? I want all results displayed in two rows with a bullet before every item like this:
* option 1 * option 2
* option 3 * option 4
etc..
THX again
FreekForum: Plugins
In reply to: [Tag Groups is the Advanced Way to Display Your Taxonomy Terms] Tags groupedI installed the latest version 0.10. In my PHP file i use the code:
<?php if ( function_exists( ‘tag_groups_cloud’ ) ) echo tag_groups_cloud( array( ‘include’ => ‘1,2,3,4,5’ ) ); ?>, because i have 5 Tag-groups and i want all taxonomies which are related to the current post.
It still displays all taggroups and all taxonomies. How can i set the filter in the PHP code to only see the groups and taxonomies for the current post?
THX FreekForum: Plugins
In reply to: [Tag Groups is the Advanced Way to Display Your Taxonomy Terms] Tags groupedI use the
<?php if ( function_exists( ‘tag_groups_cloud’ ) ) echo tag_groups_cloud( array( ‘include’ => ‘1,2,3,4,5’ ) ); ?>
code, to show the Tag Groups and taxonomies, but it shows all Taggroups (which is good) and all taxonomies (which is not good) because i want to show only the relevant taxonomies which are assigned to this post.
Is it possible to set some kind of filter in the php statement . Something like :
<?php if (get_the_terms($post->ID, ‘features’)) {
$taxonomy = get_the_terms($post->ID, ‘features’);
foreach ($taxonomy as $taxonomy_term) {
THX