%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/woocommerce/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/woocommerce/archive-product.php |
<?php /** * The Template for displaying product archives, including the main shop page which is a post type archive * * This template can be overridden by copying it to yourtheme/woocommerce/archive-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer). * will need to copy the new files to your theme to maintain compatibility. We try to do this. * as little as possible, but it does happen. When this occurs the version of the template file will. * be bumped and the readme will list any important changes. * * @see http://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 3.4.0 */ $shop_layout = get_theme_mod( 'thim_woo_cate_display_layout', 'grid' ); if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } //get_header( 'shop' ); ?> <?php /** * woocommerce_before_main_content hook * * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content) * @hooked woocommerce_breadcrumb - 20 */ do_action( 'woocommerce_before_main_content' ); ?> <?php if ( have_posts() ) : ?> <?php /** * woocommerce_before_shop_loop hook * * @hooked woocommerce_result_count - 20 * @hooked woocommerce_catalog_ordering - 30 */ //do_action( 'woocommerce_before_shop_loop' ); ?> <?php if ( 'grid' != $shop_layout ) { $terms = get_terms( 'product_cat' ); $current_term = get_queried_object(); if ( ! empty( $terms ) ) { // create a link which should link to the shop $all_link = get_post_type_archive_link( 'product' ); echo '<div class="list-product-cat"><ul class="product-cat">'; // display the shop link first if there is one if ( ! empty( $all_link ) ) { // also if the current_term doesn't have a term_id it means we are quering the shop and the "all categories" should be active echo '<li><a href="', $all_link, '"', ( ! isset( $current_term->term_id ) ) ? ' class="active"' : ' class="inactive"', '>', esc_html__( 'All', 'eduma' ), '</a></li>'; } // display a link for each product category foreach ( $terms as $key => $term ) { $link = get_term_link( $term, 'product_cat' ); if ( ! is_wp_error( $link ) ) { // if the current category is queried add the "active class" to the link $class_string = ''; if ( ! empty( $current_term->name ) && $current_term->name === $term->name ) { $class_string = ' class="active"'; } else { $class_string = ' class="inactive"'; } echo '<li><a href="', $link, '"', $class_string, '>', $term->name, '</a></li>'; } } echo '</ul></div>'; } } ?> <?php if ( 'grid' == $shop_layout ) { $cookie_name = 'product_list'; $class = ( ! empty( $_COOKIE[ $cookie_name ] ) && 'grid-layout' == $_COOKIE[ $cookie_name ] ) ? 'thim-product-grid' : 'thim-product-list'; echo '<div id="thim-product-archive" class="' . $class . '">'; do_action( 'woocommerce_before_shop_loop' ); } ?> <?php woocommerce_product_loop_start(); ?> <?php woocommerce_product_subcategories(); ?> <?php while ( have_posts() ) : the_post(); ?> <?php wc_get_template_part( 'content', 'product' ); ?> <?php endwhile; // end of the loop. ?> <?php woocommerce_product_loop_end(); ?> <?php /** * woocommerce_after_shop_loop hook * * @hooked woocommerce_pagination - 10 */ do_action( 'woocommerce_after_shop_loop' ); if ( 'grid' == $shop_layout ) { echo '</div>'; } ?> <?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ), ) ) ) : ?> <?php wc_get_template( 'loop/no-products-found.php' ); ?> <?php endif; ?> <?php if ( 'grid' == $shop_layout ) { //echo '</div>'; } ?> <?php /** * woocommerce_after_main_content hook * * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content) */ do_action( 'woocommerce_after_main_content' ); ?> <?php /** * woocommerce_sidebar hook * * @hooked woocommerce_get_sidebar - 10 */ //do_action( 'woocommerce_sidebar' );