Title: [Plugin: TDD Progress Bar] widget html
Last modified: August 20, 2016

---

# [Plugin: TDD Progress Bar] widget html

 *  Resolved [digitalnordic](https://wordpress.org/support/users/digitalnordic/)
 * (@digitalnordic)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/)
 * Is there a way to allow html in the widget description area?
 * [http://wordpress.org/extend/plugins/tdd-progress-bar/](http://wordpress.org/extend/plugins/tdd-progress-bar/)

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

 *  Plugin Author [Taylor Dewey](https://wordpress.org/support/users/taylorde/)
 * (@taylorde)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675605)
 * I should be able to accommodate that in the next release. Make it behave similar
   to the text widget.
 *  Thread Starter [digitalnordic](https://wordpress.org/support/users/digitalnordic/)
 * (@digitalnordic)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675627)
 * Thanks! That would be great.
 *  [pamw](https://wordpress.org/support/users/pamw/)
 * (@pamw)
 * [14 years ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675718)
 * How can I change the order of my progress bars? I have 5 bars and I want them
   to show up in the order of the events which they relate to and right now they
   are showing up in the reverse order. I tried changing the order of the ids in
   the widget but it did not make a difference.
 *  Plugin Author [Taylor Dewey](https://wordpress.org/support/users/taylorde/)
 * (@taylorde)
 * [14 years ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675720)
 * pamw: They should just be ordering by post date. There’s no way to adjust that
   right now, but I’ll add it as something to look into for the next release. [https://github.com/tddewey/tdd-progress/issues/11](https://github.com/tddewey/tdd-progress/issues/11)
 *  [KramforsBo](https://wordpress.org/support/users/kramforsbo/)
 * (@kramforsbo)
 * [14 years ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675724)
 * Hi there, is it possible to implement this great plugin with the crowdfunding
   plugin by Greg Priday? I want it to show the values from the input from a project
   made in that plugin automatic, = i dont want to add data in the “TDD Progress
   bars” Admin. If this is possible it would be great, then i can use just 1 progress
   bar and it would calculate the percentage from “Funded amount” and “My Wanted
   Amount”.
 *  Plugin Author [Taylor Dewey](https://wordpress.org/support/users/taylorde/)
 * (@taylorde)
 * [14 years ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675731)
 * I’ve not used that plugin, but if it allows you to get a specific integer or 
   count, you can set up one of my progress bars and then use the `tdd_pb_calculated_percentage`
   filter to adjust the value as described in the FAQ.
 * I don’t plan on integrating native support for other plugins.
 *     ```
       <?php
               add_filter( 'tdd_pb_calculated_percentage', 'change_percentage', 10, 2 );
               function change_percentage($percentage, $id){
                   //Only apply to post (bar) ID 120, if it isn't 120, just return
                   if ($id != 120)
                       return $percentage;
   
                   $newpercentage = $percentage_calculated_from_plugin
                   return $newpercentage;
               }
           ?>
       ```
   

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

The topic ‘[Plugin: TDD Progress Bar] widget html’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/tdd-progress-bar_183f23.svg)
 * [TDD Progress Bar](https://wordpress.org/plugins/tdd-progress-bar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tdd-progress-bar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tdd-progress-bar/)
 * [Active Topics](https://wordpress.org/support/plugin/tdd-progress-bar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tdd-progress-bar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tdd-progress-bar/reviews/)

 * 6 replies
 * 4 participants
 * Last reply from: [Taylor Dewey](https://wordpress.org/support/users/taylorde/)
 * Last activity: [14 years ago](https://wordpress.org/support/topic/plugin-tdd-progress-bar-widget-html/#post-2675731)
 * Status: resolved