Title: vimma's Replies | WordPress.org

---

# vimma

  [  ](https://wordpress.org/support/users/vimma/)

 *   [Profile](https://wordpress.org/support/users/vimma/)
 *   [Topics Started](https://wordpress.org/support/users/vimma/topics/)
 *   [Replies Created](https://wordpress.org/support/users/vimma/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/vimma/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/vimma/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/vimma/engagements/)
 *   [Favorites](https://wordpress.org/support/users/vimma/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [WordPress Ideas as a plugin?](https://wordpress.org/support/topic/wordpress-ideas-as-a-plugin/)
 *  Thread Starter [vimma](https://wordpress.org/support/users/vimma/)
 * (@vimma)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/wordpress-ideas-as-a-plugin/#post-514719)
 * You might already have managed to create your ideas forum since you replied two
   weeks ago, but here is briefly what I did:
 * I had WP already installed, so I then installed bbpress, and integrated with 
   WP using [this documentation.](http://bbpress.org/documentation/integration-with-wordpress/)
 * Then, when everything worked, I installed the [bbRatings plugins](http://bbpress.org/plugins/topic/6)
   for bbpress, which allows users to rate topics on a star scale. The “read me”
   text file contained instructions how use it. You need to do some PHP coding, 
   but it is basically just adding few tags to bb templates.
 * That was it. And of course, I modified the template for my needs and edited styles
   and stuff to make it look good.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [WordPress Ideas as a plugin?](https://wordpress.org/support/topic/wordpress-ideas-as-a-plugin/)
 *  Thread Starter [vimma](https://wordpress.org/support/users/vimma/)
 * (@vimma)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/wordpress-ideas-as-a-plugin/#post-514595)
 * Thanks for the hint! It was really easy to integrate it with wordpress and configure
   bbpress to a brainstorming forum.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Ultimate Tage Waqrrior: show tags for a category](https://wordpress.org/support/topic/ultimate-tage-waqrrior-show-tags-for-a-category/)
 *  [vimma](https://wordpress.org/support/users/vimma/)
 * (@vimma)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/ultimate-tage-waqrrior-show-tags-for-a-category/#post-463350)
 * I got it working using the code snippet below. Now I can still use the categories,
   but when a user clicks a category, she actually clicks a tag with the same name.
   `
   <?php //get list of categories $cats = @$wpdb->get_results(" SELECT DISTINCT 
   wp_categories.cat_ID, wp_categories.cat_name, wp_categories.category_nicename
   FROM wp_post2cat LEFT JOIN wp_categories ON wp_post2cat.category_id = wp_categories.
   cat_ID LEFT JOIN wp_posts ON wp_post2cat.post_id = wp_posts.id WHERE wp_posts.
   post_status='publish' AND wp_categories.category_parent=0 ORDER BY wp_categories.
   cat_name "); if($cats) : foreach($cats as $cat) : start_wp(); ?> <li> <a>category_nicename?
   >"><?php echo $cat->category_nicename?></a> </li> <?php endforeach; endif; ?>
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Ultimate Tage Waqrrior: show tags for a category](https://wordpress.org/support/topic/ultimate-tage-waqrrior-show-tags-for-a-category/)
 *  [vimma](https://wordpress.org/support/users/vimma/)
 * (@vimma)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/ultimate-tage-waqrrior-show-tags-for-a-category/#post-463349)
 * I have quite similar problem, several different categories, and I’d like to show
   category specific tags. AndyBeard’s solution would work, but I don’t want to 
   abandon my categories.
 * Tag warrior can be configured to automatically add categories as tags, so I wonder,
   can I somehow hack the wp template tag “list_cats”, so that it would link to 
   a tag instead of category? Or should I code a new plugin that would do it?
 * Any help would be appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)