' ', 'wrap_before' => '', 'before' => '', 'after' => '', 'home' => _x('Home', 'breadcrumb', 'artwork-lite'), ); } /* * Remove the product rating display on product loops */ remove_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5); /* * Remove them all in one line */ add_filter('woocommerce_enqueue_styles', '__return_false'); // define the woocommerce_before_main_content callback function theme_woocommerce_before_main_content() { echo '
'; } // add the action add_action('woocommerce_before_main_content', 'theme_woocommerce_before_main_content', 10, 2); // define the woocommerce_archive_description callback function theme_woocommerce_archive_description() { echo '
'; } // add the action add_action('woocommerce_archive_description', 'theme_woocommerce_archive_description', 10, 2); // define the woocommerce_archive_description callback function theme_woocommerce_before_single_product() { echo '
'; } // add the action add_action('woocommerce_before_single_product', 'theme_woocommerce_before_single_product', 10, 2); // define the woocommerce_archive_description callback function theme_woocommerce_sidebar() { echo '
' . '
' . '
'; } // add the action add_action('woocommerce_sidebar', 'theme_woocommerce_sidebar', 10, 2); remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); function theme_woocommerce_after_main_content() { echo '
' . '
'; } add_action('woocommerce_after_main_content', 'theme_woocommerce_after_main_content', 10);