diff --git a/widgets/widget-recent_products.php b/widgets/widget-recent_products.php index 2e19585d0db..b299b56897e 100644 --- a/widgets/widget-recent_products.php +++ b/widgets/widget-recent_products.php @@ -19,7 +19,7 @@ class WooCommerce_Widget_Recent_Products extends WP_Widget { function WooCommerce_Widget_Recent_Products() { /* Widget variable settings. */ - $this->woo_widget_cssclass = 'widget_recent_entries'; + $this->woo_widget_cssclass = 'widget_recent_products'; $this->woo_widget_description = __( 'Display a list of your most recent products on your site..', 'woothemes' ); $this->woo_widget_idbase = 'woocommerce_recent_products'; $this->woo_widget_name = __('WooCommerce Recent Products', 'woothemes' ); diff --git a/widgets/widget-top_rated_products.php b/widgets/widget-top_rated_products.php index 363fe40e921..9df101cc358 100644 --- a/widgets/widget-top_rated_products.php +++ b/widgets/widget-top_rated_products.php @@ -20,7 +20,7 @@ class WooCommerce_Widget_Top_Rated_Products extends WP_Widget { function WooCommerce_Widget_Top_Rated_Products() { /* Widget variable settings. */ - $this->woo_widget_cssclass = 'widget_top_rated_products widget_recent_entries'; + $this->woo_widget_cssclass = 'widget_top_rated_products'; $this->woo_widget_description = __( 'Display a list of top rated products on your site.', 'woothemes' ); $this->woo_widget_idbase = 'woocommerce_top_rated_products'; $this->woo_widget_name = __('WooCommerce Top Rated Products', 'woothemes' );