Created
March 27, 2019 22:48
-
-
Save CameronGilroy/fe1397b8aa10ced59476580df0b675c7 to your computer and use it in GitHub Desktop.
Oxygen Woocommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: woocommerce_before_main_content. | |
* | |
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) | |
* @hooked woocommerce_breadcrumb - 20 | |
* @hooked WC_Structured_Data::generate_website_data() - 30 | |
*/ | |
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); | |
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); | |
do_action( 'woocommerce_before_main_content' ); | |
?> | |
<?php | |
if ( woocommerce_product_loop() ) { | |
/** | |
* Hook: woocommerce_before_shop_loop. | |
* | |
* @hooked wc_print_notices - 10 | |
* @hooked woocommerce_result_count - 20 | |
* @hooked woocommerce_catalog_ordering - 30 | |
*/ | |
do_action( 'woocommerce_before_shop_loop' ); | |
woocommerce_product_loop_start(); | |
if ( wc_get_loop_prop( 'total' ) ) { | |
while ( have_posts() ) { | |
the_post(); | |
/** | |
* Hook: woocommerce_shop_loop. | |
* | |
* @hooked WC_Structured_Data::generate_product_data() - 10 | |
*/ | |
do_action( 'woocommerce_shop_loop' ); | |
wc_get_template_part( 'content', 'product' ); | |
} | |
} | |
woocommerce_product_loop_end(); | |
/** | |
* Hook: woocommerce_after_shop_loop. | |
* | |
* @hooked woocommerce_pagination - 10 | |
*/ | |
do_action( 'woocommerce_after_shop_loop' ); | |
} else { | |
/** | |
* Hook: woocommerce_no_products_found. | |
* | |
* @hooked wc_no_products_found - 10 | |
*/ | |
do_action( 'woocommerce_no_products_found' ); | |
} | |
/** | |
* Hook: woocommerce_after_main_content. | |
* | |
* @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) | |
*/ | |
do_action( 'woocommerce_after_main_content' ); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* woocommerce_before_main_content hook. | |
* | |
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) | |
* @hooked woocommerce_breadcrumb - 20 | |
*/ | |
do_action( 'woocommerce_before_main_content' ); | |
?> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php //the_title( '<h1 class="product_title entry-title">', '</h1>' );?> | |
<?php | |
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_breadcrumb', 20, 0 ); | |
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 ); //Remove the onsale banner | |
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); //Remove the Image | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); | |
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 ); | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 ); | |
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); | |
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 ); | |
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); | |
add_action( 'woocommerce_single_product_summary', 'the_content', 20 ); | |
?> | |
<?php wc_get_template_part( 'content', 'single-product' ); ?> | |
<?php endwhile; // end of the loop. ?> | |
<?php | |
/** | |
* woocommerce_after_main_content hook. | |
* | |
* @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) | |
*/ | |
do_action( 'woocommerce_after_main_content' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment