Title: 's Replies | WordPress.org

---

# gh2009

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unwanted Bullet Point Next to Title in Widgets](https://wordpress.org/support/topic/unwanted-bullet-point-next-to-title-in-widgets-1/)
 *  [gh2009](https://wordpress.org/support/users/gh2009/)
 * (@gh2009)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/unwanted-bullet-point-next-to-title-in-widgets-1/#post-1512496)
 * In functions.php remove the list tags in…
    if ( function_exists(‘register_sidebar’)){
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How to Stop Text Widgets from Adding “TextWidget” Class?](https://wordpress.org/support/topic/how-to-stop-text-widgets-from-adding-textwidget-class/)
 *  [gh2009](https://wordpress.org/support/users/gh2009/)
 * (@gh2009)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-stop-text-widgets-from-adding-textwidget-class/#post-1147492)
 * In the functions.php file find this…
 *     ```
       if ( function_exists('register_sidebar') ) {
       	register_sidebar(array(
       		'before_widget' => '<li id="%1$s" class="widget %2$s">',
       		'after_widget' => '</li>',
       		'before_title' => '<h2 class="widgettitle">',
       		'after_title' => '</h2>',
       	));
       }
       ```
   
 * And take out the list elements.
 * (You could go deeper down and have an if statement to just apply this to text
   widgets if you want)

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