PATH:
home
/
letacommog
/
mcr
/
wp-content
/
themes
/
betheme
/
functions
<?php /** * WooCommerce functions. * * @package Betheme * @author Muffin group * @link https://muffingroup.com */ /** * WooCommerce | Theme support & actions */ add_theme_support('woocommerce'); // WooCommerce 2.7+ single product gallery add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); /** * WooCommerce | Actions | Remove */ remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20); remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); remove_action('woocommerce_sidebar', 'woocommerce_get_sidebar', 10); remove_action('woocommerce_cart_is_empty', 'wc_empty_cart_message', 10); if (mfn_opts_get('shop-catalogue')) { remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30); } /** * WooCommerce | Actions | Add */ add_action('woocommerce_before_main_content', 'mfn_woocommerce_output_content_wrapper', 10); add_action('woocommerce_after_main_content', 'mfn_woocommerce_output_content_wrapper_end', 10); add_action('woocommerce_cart_is_empty', 'mfn_wc_empty_cart_message', 10); /** * Action | Output content wrapper BEGIN */ if (! function_exists('mfn_woocommerce_output_content_wrapper')) { function mfn_woocommerce_output_content_wrapper() { ?> <!-- #Content --> <div id="Content"> <div class="content_wrapper clearfix"> <!-- .sections_group --> <div class="sections_group"> <div class="section"> <div class="section_wrapper clearfix"> <div class="items_group clearfix"> <div class="column one woocommerce-content"> <?php } } /** * Action | Output content wrapper END */ if (! function_exists('mfn_woocommerce_output_content_wrapper_end')) { function mfn_woocommerce_output_content_wrapper_end() { ?> </div> </div> </div> </div> </div> <?php get_sidebar(); ?> </div> </div> <?php } } /** * Action | Empty cart message */ if (! function_exists('mfn_wc_empty_cart_message')) { function mfn_wc_empty_cart_message() { ?> <div class="cart-empty alert alert_warning"> <div class="alert_icon"><i class="icon-lamp"></i></div> <div class="alert_wrapper"><?php esc_html_e('Your cart is currently empty.', 'woocommerce') ?></div> <a class="close" href="#"><i class="icon-cancel"></i></a> </div> <?php } } /** * WooCommerce | Styles */ if (! function_exists('mfn_woo_styles')) { function mfn_woo_styles() { wp_enqueue_style('mfn-woo', get_theme_file_uri('/css/woocommerce.css'), 'woocommerce-general-css', MFN_THEME_VERSION, 'all'); } } add_action('wp_enqueue_scripts', 'mfn_woo_styles'); /** * WooCommerce | Define image sizes */ global $pagenow; if (is_admin() && isset($_GET['activated']) && $pagenow == 'themes.php') { add_action('init', 'mfn_woocommerce_image_dimensions', 1); } if (! function_exists('mfn_woocommerce_image_dimensions')) { function mfn_woocommerce_image_dimensions() { $catalog = array( 'width' => 500, 'height' => 500, 'crop' => 1 ); $single = array( 'width' => 500, 'height' => 500, 'crop' => 1 ); $thumbnail = array( 'width' => 300, 'height' => 300, 'crop' => 1 ); update_option('shop_catalog_image_size', $catalog); // archives update_option('shop_single_image_size', $single); // single update_option('shop_thumbnail_image_size', $thumbnail); // single: thumbnails } } // WooCommerce 3.0+ | Image size if (! function_exists('mfn_woocommerce_get_image_size_gallery_thumbnail')) { function mfn_woocommerce_get_image_size_gallery_thumbnail() { return array( 'width' => 300, 'height' => 300, 'crop' => 1, ); } } add_filter('woocommerce_get_image_size_gallery_thumbnail', 'mfn_woocommerce_get_image_size_gallery_thumbnail'); /** * WooCommerce | Products per line/page */ function mfn_woo_loop_shop_columns() { return 3; } add_filter('loop_shop_columns', 'mfn_woo_loop_shop_columns'); if (! function_exists('mfn_woo_per_page')) { function mfn_woo_per_page($cols) { return mfn_opts_get('shop-products', 12); } } add_filter('loop_shop_per_page', 'mfn_woo_per_page', 20); /** * WooCommerce | Change number of related products on product page */ if (! function_exists('mfn_woo_related_products_args')) { function mfn_woo_related_products_args($args) { $args['posts_per_page'] = intval(mfn_opts_get('shop-related', 3)); return $args; } } add_filter('woocommerce_output_related_products_args', 'mfn_woo_related_products_args'); /** * WooCommerce | Ensure cart contents update when products are added to the cart via AJAX */ global $woocommerce; if (version_compare($woocommerce->version, '2.3', '<')) { // WooCommerce 2.2 - add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment'); } else { // WooCommerce 2.3 + add_filter('woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment'); } if (! function_exists('woocommerce_header_add_to_cart_fragment')) { function woocommerce_header_add_to_cart_fragment($fragments) { global $woocommerce; $cart_icon = mfn_opts_get('shop-cart'); if ($cart_icon == 1) { $cart_icon = 'icon-bag-fine'; } // Be < 4.9 compatibility // header ob_start(); echo '<a id="header_cart" href="'. esc_url(wc_get_cart_url()) .'"><i class="'. $cart_icon .'"></i><span>'. $woocommerce->cart->cart_contents_count .'</span></a>'; $fragments['a#header_cart'] = ob_get_clean(); // side slide ob_start(); echo '<a class="icon cart" id="slide-cart" href="'. esc_url(wc_get_cart_url()) .'"><i class="'. $cart_icon .'"></i><span>'. $woocommerce->cart->cart_contents_count .'</span></a>'; $fragments['a#slide-cart'] = ob_get_clean(); return $fragments; } }
[+]
..
[+]
post-types
[-] theme-sidebars.php
[edit]
[-] meta-client.php
[edit]
[+]
plugins
[-] class-mfn-love.php
[edit]
[-] meta-post.php
[edit]
[-] theme-mega-menu.php
[edit]
[+]
admin
[-] theme-head.php
[edit]
[-] widget-menu.php
[edit]
[+]
widgets
[-] widget-recent-comments.php
[edit]
[-] widget-login.php
[edit]
[-] widget-flickr.php
[edit]
[-] theme-functions.php
[edit]
[-] class-love.php
[edit]
[+]
tinymce
[-] theme-menu.php
[edit]
[-] theme-hooks.php
[edit]
[-] meta-template.php
[edit]
[-] theme-woocommerce.php
[edit]
[-] meta-slide.php
[edit]
[-] meta-page.php
[edit]
[-] meta-testimonial.php
[edit]
[-] meta-layout.php
[edit]
[-] widget-recent-posts.php
[edit]
[-] meta-offer.php
[edit]
[+]
importer
[-] meta-portfolio.php
[edit]
[-] theme-shortcodes.php
[edit]
[-] widget-tag-cloud.php
[edit]
[-] widget-functions.php
[edit]
[+]
builder