MickeyRoush,
Thanks for your post. The stylesheet is also enqueued, however it is done via another class that is extended by the WP User Control widget class. At present there is no built-in capability to de-register the WP User Control style sheet. That said, the easiest hack to accomplish this would be to do as follows:
Open the ../wordpress_root/wp-content/plugins/wp-user-control/inc/SidebarWidget.php class file for editing.
Comment out lines 282-289, effectively disabling the addWidgetStyle() method:
public function addWidgetStyle() {
/*
* COMMENT OUT LINES BELOW TO DISABLE STYLE SHEET
*
$style = WP_USER_CONTROL_WIDGET_CSS . $this->widgetStyle;
wp_register_style(
$handle = $this->widgetStyleHandle,
$src = $style
);
wp_enqueue_style(
$handle = $this->widgetStyleHandle
);
*
* END OF COMMENTS TO DISABLE STYLE SHEET
*/
}
Just keep in mind that this hack will be overwritten by the next release of WP User Control, so you will need to redo it in order to preserve. We will look at adding this type of functionality in a future release of WP User Control to provide this capability natively.