Viewing File: /home/maglabs/riadlooma2/wp-content/themes/homey/framework/functions/woocommerce.php

<?php
#-----------------------------------------------------------------#
# Woocommerce
#-----------------------------------------------------------------#
add_theme_support( 'woocommerce' );
//add_filter( 'woocommerce_enqueue_styles', '__return_false' );

function homey_enqueue_woocommerce_style(){
	wp_register_style( 'homey-woocommerce', HOMEY_CSS_DIR_URI . 'woocommerce.css' );
	wp_enqueue_style( 'homey-woocommerce' );
}
add_action( 'wp_enqueue_scripts', 'homey_enqueue_woocommerce_style' );


// Change WooCommerce wrappers.
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );

// This theme doesn't have a traditional sidebar.
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );

?>
Back to Directory File Manager