| Server IP : 193.86.120.172 / Your IP : 216.73.216.67 Web Server : Apache/2.4.63 (Unix) System : Linux JServices 3.10.108 #86003 SMP Wed Oct 22 13:20:46 CST 2025 x86_64 User : kubec ( 1026) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /volume1/web/europetrans_cz/wp-content/themes/betheme/ |
Upload File : |
<?php
// 1. by conditions (cat, tags)
// 2. from theme options by default
wp_enqueue_script('mfn-waypoints', get_theme_file_uri('/js/plugins/waypoints.min.js'), ['jquery'], MFN_THEME_VERSION, true);
if ( mfn_opts_get('shop-layout') === 'masonry' ) {
wp_enqueue_script('mfn-isotope', get_theme_file_uri('/js/plugins/isotope.min.js'), ['jquery'], MFN_THEME_VERSION, true);
}
global $mfn_global;
if( !empty($mfn_global['shop_archive']) && is_numeric( $mfn_global['shop_archive'] ) && get_post_type( $mfn_global['shop_archive'] ) == 'template' ) {
if( get_post_meta( $mfn_global['shop_archive'], 'mfn-post-hide-content', true ) ){
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description' );
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description' );
}
$mfn_builder = new Mfn_Builder_Front($mfn_global['shop_archive']);
$mfn_builder->show();
} else {
echo '<section class="section">';
echo '<div class="section_wrapper clearfix default-woo-list">';
woocommerce_content();
echo '</div>';
echo '</section>';
}
?>