File: /home/clinicamaciel/www/wp-content/themes/bedentist/inc/extensions/woocommerce.php
<?php
/**
* Extends basic functionality for better Woocommerce compatibility
*
* @package Be_Dentist
*/
add_filter( 'be_dentist_queried_object_id', 'be_dentist_woo_set_shop_page' );
/**
* Allow to rewrite shop page layout from page options
*
* @param int $id Current page ID.
* @return int
*/
function be_dentist_woo_set_shop_page( $id ) {
if ( ! function_exists( 'is_shop' ) || ! function_exists( 'wc_get_page_id' ) ) {
return $id;
}
if ( ! is_shop() && ! is_tax( 'product_cat' ) && ! is_tax( 'product_tag' ) ) {
return $id;
}
$page_id = wc_get_page_id( 'shop' );
return $page_id;
}