Title: wmuckell's Replies | WordPress.org

---

# wmuckell

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mega Forms – Drag & Drop Form Builder with Multi-Step & Conditional Logic] Progress Bar](https://wordpress.org/support/topic/progress-bar-41/)
 *  Thread Starter [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [12 months ago](https://wordpress.org/support/topic/progress-bar-41/#post-18599549)
 * Ok thanks. Great support by the way. When would be the expectation date for this
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Customer Reviews] can't see reviewer's entry in review field](https://wordpress.org/support/topic/cant-see-reviewers-entry-in-review-field/)
 *  [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cant-see-reviewers-entry-in-review-field/#post-7356034)
 * I am having the same problem on a clients site
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] JetPack Publicize uses wrong URL for Twitter](https://wordpress.org/support/topic/jetpack-publicize-uses-wrong-url-for-twitter/)
 *  [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/jetpack-publicize-uses-wrong-url-for-twitter/page/4/#post-3182450)
 * Could you change [http://hercules.xssl.net/~wmuckell9/wp](http://hercules.xssl.net/~wmuckell9/wp)
   to theroseboutique.co.uk and check aumworks.co.uk is not set to aumworks.co.uk/
   wp
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] JetPack Publicize uses wrong URL for Twitter](https://wordpress.org/support/topic/jetpack-publicize-uses-wrong-url-for-twitter/)
 *  [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/jetpack-publicize-uses-wrong-url-for-twitter/page/4/#post-3182448)
 * How did you change the Jetpack settings?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Business Directory Plugin - Easy Listing Directories for WordPress] [Plugin: Business Directory Plugin] Category Listing Widget](https://wordpress.org/support/topic/plugin-business-directory-plugin-category-listing-widget/)
 *  [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-business-directory-plugin-category-listing-widget/#post-3087198)
 * Can you suggest a better way?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Business Directory Plugin - Easy Listing Directories for WordPress] [Plugin: Business Directory Plugin] Category Listing Widget](https://wordpress.org/support/topic/plugin-business-directory-plugin-category-listing-widget/)
 *  [wmuckell](https://wordpress.org/support/users/wmuckell/)
 * (@wmuckell)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-business-directory-plugin-category-listing-widget/#post-3087196)
 * Here is some code I used to build a very simple widget.
 * 1) Put this at the bottom of the widgets.php file in the business-directory-pluig
   folder.
 *     ```
       class WPBDP_CategoriesWidget extends WP_Widget {
   
           public function __construct() {
               parent::__construct(false,
                                   _x('Business Directory - Categories', 'widgets', 'WPBDM'),
                                   array('description' => _x('Displays a list of the latest categories in the Business Directory.', 'widgets', 'WPBDM')));
           }
   
           public function form($instance) {
               if (isset($instance['title']))
                   $title = $instance['title'];
               else
                   $title = _x('Directory Categories', 'widgets', 'WPBDM');
   
           }
   
           public function update($new_instance, $old_instance) {
               $new_instance['title'] = strip_tags($new_instance['title']);
               return $new_instance;
           }
   
           public function widget($args, $instance) {
       		$title = ( $instance['title'] ) ? $instance['title'] : 'Directory Categories';
               extract($args);
               //$title = apply_filters( 'widget_title', $instance['title'] );
   
               echo $before_widget;
               if ( ! empty( $title ) )
                   echo $before_title . $title . $after_title;
               echo wpbdp_the_directory_categories();
               echo $after_widget;
           }
   
       }
       ```
   
 * 2) Add registration of widget into wpbusdirman.php around line 788
 *  register_widget(‘WPBDP_CategoriesWidget’);
 * All done, should appear in widgets section. Please note I am very new to programming
   wordpress and there could be problems, so use at your own discretion.

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