diff --git a/templates/loop-shop.php b/templates/loop-shop.php index db1b34285f1..5633f9c47e8 100644 --- a/templates/loop-shop.php +++ b/templates/loop-shop.php @@ -24,7 +24,7 @@ if (have_posts()) : while (have_posts()) : the_post(); $_product = &new woocomme - +

diff --git a/widgets/widget-cart.php b/widgets/widget-cart.php index 50b6d006f77..68bd7456a28 100644 --- a/widgets/widget-cart.php +++ b/widgets/widget-cart.php @@ -13,7 +13,7 @@ class WooCommerce_Widget_Cart extends WP_Widget { /** constructor */ function WooCommerce_Widget_Cart() { $widget_ops = array( 'description' => __( "Shopping Cart for the sidebar.", 'woothemes') ); - parent::WP_Widget('shopping_cart', __('Shopping Cart', 'woothemes'), $widget_ops); + parent::WP_Widget('shopping_cart', __('WooCommerce Shopping Cart', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-featured_products.php b/widgets/widget-featured_products.php index c946e88be45..cf38f5b1379 100644 --- a/widgets/widget-featured_products.php +++ b/widgets/widget-featured_products.php @@ -13,7 +13,7 @@ class WooCommerce_Widget_Featured_Products extends WP_Widget { /** constructor */ function WooCommerce_Widget_Featured_Products() { $widget_ops = array('classname' => 'widget_featured_products', 'description' => __( "Featured products on your site", 'woothemes') ); - parent::WP_Widget('featured-products', __('Featured Products', 'woothemes'), $widget_ops); + parent::WP_Widget('featured-products', __('WooCommerce Featured Products', 'woothemes'), $widget_ops); $this->alt_option_name = 'widget_featured_products'; add_action( 'save_post', array(&$this, 'flush_widget_cache') ); diff --git a/widgets/widget-layered_nav.php b/widgets/widget-layered_nav.php index 383915c3685..a89e3a05c33 100644 --- a/widgets/widget-layered_nav.php +++ b/widgets/widget-layered_nav.php @@ -11,7 +11,7 @@ class WooCommerce_Widget_Layered_Nav extends WP_Widget { /** constructor */ function WooCommerce_Widget_Layered_Nav() { $widget_ops = array( 'description' => __( "Shows a custom attribute in a widget which lets you narrow down the list of shown products in categories.", 'woothemes') ); - parent::WP_Widget('layered_nav', __('Layered Nav', 'woothemes'), $widget_ops); + parent::WP_Widget('layered_nav', __('WooCommerce Layered Nav', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-price_filter.php b/widgets/widget-price_filter.php index 1ea930340e5..54f61287465 100644 --- a/widgets/widget-price_filter.php +++ b/widgets/widget-price_filter.php @@ -33,7 +33,7 @@ class WooCommerce_Widget_Price_Filter extends WP_Widget { /** constructor */ function WooCommerce_Widget_Price_Filter() { $widget_ops = array( 'description' => __( "Shows a price filter slider in a widget which lets you narrow down the list of shown products in categories.", 'woothemes') ); - parent::WP_Widget('price_filter', __('Price Filter', 'woothemes'), $widget_ops); + parent::WP_Widget('price_filter', __('WooCommerce Price Filter', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-product_categories.php b/widgets/widget-product_categories.php index 1c2db4614b2..257d375eadc 100644 --- a/widgets/widget-product_categories.php +++ b/widgets/widget-product_categories.php @@ -12,7 +12,7 @@ class WooCommerce_Widget_Product_Categories extends WP_Widget { /** constructor */ function WooCommerce_Widget_Product_Categories() { $widget_ops = array( 'classname' => 'widget_product_categories', 'description' => __( "A list or dropdown of product categories", 'woothemes' ) ); - parent::WP_Widget('product_categories', __('Product Categories', 'woothemes'), $widget_ops); + parent::WP_Widget('product_categories', __('WooCommerce Product Categories', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-product_search.php b/widgets/widget-product_search.php index a55e6d581ed..b7e5c692153 100644 --- a/widgets/widget-product_search.php +++ b/widgets/widget-product_search.php @@ -12,7 +12,7 @@ class WooCommerce_Widget_Product_Search extends WP_Widget { /** constructor */ function WooCommerce_Widget_Product_Search() { $widget_ops = array( 'description' => __( "Search box for products only.", 'woothemes') ); - parent::WP_Widget('product_search', __('Product Search', 'woothemes'), $widget_ops); + parent::WP_Widget('product_search', __('WooCommerce Product Search', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-product_tag_cloud.php b/widgets/widget-product_tag_cloud.php index 3c637e085a5..d6f40c53a35 100644 --- a/widgets/widget-product_tag_cloud.php +++ b/widgets/widget-product_tag_cloud.php @@ -12,7 +12,7 @@ class WooCommerce_Widget_Tag_Cloud extends WP_Widget { /** constructor */ function WooCommerce_Widget_Tag_Cloud() { $widget_ops = array( 'description' => __( "Your most used product tags in cloud format", 'woothemes') ); - parent::WP_Widget('tag_cloud', __('Product Tag Cloud', 'woothemes'), $widget_ops); + parent::WP_Widget('tag_cloud', __('WooCommerce Product Tag Cloud', 'woothemes'), $widget_ops); } /** @see WP_Widget::widget */ diff --git a/widgets/widget-recent_products.php b/widgets/widget-recent_products.php index 95452291181..6a34823e541 100644 --- a/widgets/widget-recent_products.php +++ b/widgets/widget-recent_products.php @@ -12,7 +12,7 @@ class WooCommerce_Widget_Recent_Products extends WP_Widget { /** constructor */ function WooCommerce_Widget_Recent_Products() { $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent products on your site", 'woothemes') ); - parent::WP_Widget('recent-products', __('New Products', 'woothemes'), $widget_ops); + parent::WP_Widget('recent-products', __('WooCommerce New Products', 'woothemes'), $widget_ops); $this->alt_option_name = 'widget_recent_entries'; add_action( 'save_post', array(&$this, 'flush_widget_cache') );