' . $content . ''; } endif; if ( ! function_exists( 'pixwell_buttons_wrapper_open' ) ) : function pixwell_buttons_wrapper_open() { echo '
'; } endif; if ( ! function_exists( 'pixwell_buttons_wrapper_close' ) ) : function pixwell_buttons_wrapper_close() { echo '
'; } endif; if ( ! function_exists( 'pixwell_loop_product_title' ) ) : function pixwell_loop_product_title() { ?>

'; $args['delimiter'] = ' > '; return $args; } endif; /** single product */ if ( ! function_exists( 'pixwell_single_product_image_before' ) ): function pixwell_single_product_image_before() { ?>
'; } endif; /** close wrapper page-content */ if ( ! function_exists( 'pixwell_wc_after_main_content' ) ) { function pixwell_wc_after_main_content() { echo '
'; } } /** count bar outer */ if ( ! function_exists( 'pixwell_wc_before_result_count' ) ) { function pixwell_wc_before_result_count() { echo ''; } } if ( ! function_exists( 'pixwell_wc_shop_columns' ) ) { function pixwell_wc_shop_columns($column) { if(!function_exists('is_shop') || ! function_exists('is_product_category')){ return $column; } if ( is_shop() ): $pixwell_wc_sidebar = pixwell_get_option( 'wc_shop_sidebar' ); elseif ( is_product_category() ) : $pixwell_wc_sidebar = pixwell_get_option( 'wc_archive_sidebar' ); endif; if ( ! empty( $pixwell_wc_sidebar ) ) { return 3; } else { return 4; } } } /** percent sale */ if ( ! function_exists( 'pixwell_wc_sale_percent' ) ): function pixwell_wc_sale_percent( $html, $post, $product ) { $sale_percent = pixwell_get_option( 'wc_sale_percent' ); if ( empty( $sale_percent ) || 0 == $product->get_regular_price() ) { return $html; } else { $attachment_ids = $product->get_gallery_image_ids(); $class_name = 'onsale percent '; if ( empty( $attachment_ids ) ) { $class_name = 'onsale percent without-gallery'; } $percentage = round( ( ( $product->get_regular_price() - $product->get_sale_price() ) / $product->get_regular_price() ) * 100 ); return '' . '-' . esc_html( $percentage ) . '%' . ''; } } endif; /** mini cart ajax */ if ( ! function_exists( 'pixwell_wc_add_to_cart_fragments' ) ) { function pixwell_wc_add_to_cart_fragments( $fragments ) { ob_start(); ?> cart->cart_contents_count ); ?> ' . $mini_cart . '
'; 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 ''; } }