';
return $fragments;
}
}
/** shop post per page */
if ( ! function_exists( 'pixwell_wc_shop_products_per_page' ) ) {
function pixwell_wc_shop_products_per_page( $total ) {
$posts_per_page = pixwell_get_option( 'wc_shop_posts_per_page' );
if ( ! empty( $posts_per_page ) ) {
$total = $posts_per_page;
}
return $total;
}
}
/** remove default breadcrumb pos */
if ( ! function_exists( 'pixwell_remove_single_breadcrumb' ) ) {
function pixwell_remove_single_breadcrumb() {
if ( function_exists('is_product') && is_product() ) {
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
}
}
}
/** add buttons */
if ( ! function_exists( 'pixwell_wc_quantity_button' ) ) {
function pixwell_wc_quantity_button() {
?>
';
}
}
if ( ! function_exists( 'pixwell_wishlist_after_title' ) ) {
function pixwell_wishlist_after_title() {
echo '';
}
}