'', 'wrap_before' => '', 'before' => '', 'after' => '', 'home' => _x( 'Shop', 'breadcrumb', 'woocommerce' ) ); } // change the "Home" url into the shop's one add_filter( 'woocommerce_breadcrumb_home_url', 'wpgrade_custom_breadrumb_home_url' ); function wpgrade_custom_breadrumb_home_url() { $shop_page_url = get_permalink( woocommerce_get_page_id( 'shop' ) ); if ( !empty($shop_page_url) ) { return $shop_page_url; } return get_home_url(); } // move the breadcrumb before title remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20); add_action('woocommerce_single_product_summary', 'woocommerce_breadcrumb', 3, 0 ); /** * Custom Add To Cart Messages * Add this to your theme functions.php file **/ add_filter( 'wc_add_to_cart_params', 'custom_add_to_cart_message' ); function custom_add_to_cart_message( $params ) { $params['i18n_view_cart'] = esc_attr__( 'Product Added', 'woocommerce' ); return $params; }