Title: Nice Plugin
Last modified: September 3, 2016

---

# Nice Plugin

 *  [Ulugov](https://wordpress.org/support/users/ulugov/)
 * (@ulugov)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/nice-plugin-989/)
 * The plugin is what I need. But it does not style the calendar widget. I added
   following filter hook to my theme functions.php:
 *     ```
       add_filter( 'get_calendar' , 'aus_calendar' , 2 ) ;
       function aus_calendar( $markup ) {
       	$markup = str_replace( '<table id="wp-calendar"' , '<table id="wp-calendar" class="table table-stripped"' , $markup ) ;
       	return $markup;
       }
       ```
   
 * And I didn’t like search widget style, so I changed it:
 *     ```
       add_filter( 'get_search_form' , 'aus_search_form' , 2 ) ;
       function aus_search_form( $markup ) {
       	$markup = str_replace( 'class="search-form"' , 'class="search-form row"' , $markup ) ;
       	$markup = str_replace( '<label' , '<label class="col-xs-12"' , $markup ) ;
       	$markup = str_replace( '<input type="search"' , '<input type="search" class="form-control"' , $markup ) ;
       	$markup = preg_replace( '/(<span class="screen-reader-text">.*?>)/' , '' , $markup ) ;
       	$markup = preg_replace( '/(<input type="submit".*?>)/' , '' , $markup ) ;
       	return $markup;
       }
       ```
   
 * It would be great if the author updates the plugin.

The topic ‘Nice Plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/bootstrap-widget-styling_feffff.svg)
 * [Bootstrap Widget Styling](https://wordpress.org/plugins/bootstrap-widget-styling/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bootstrap-widget-styling/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bootstrap-widget-styling/)
 * [Active Topics](https://wordpress.org/support/plugin/bootstrap-widget-styling/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bootstrap-widget-styling/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bootstrap-widget-styling/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [Ulugov](https://wordpress.org/support/users/ulugov/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/nice-plugin-989/)