Skip to content

Instantly share code, notes, and snippets.

@helgatheviking
Last active December 28, 2019 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helgatheviking/c253c51c94ea7177b6746ac1a5f81d97 to your computer and use it in GitHub Desktop.
Save helgatheviking/c253c51c94ea7177b6746ac1a5f81d97 to your computer and use it in GitHub Desktop.
Mix and Match Item Thumbnail Template, copy to yourtheme/woocommerce/single-product/mnm/mnm-product-thumbnail.php
<?php
/**
* Mix and Match Item Thumbnail
*
* This template should be placed in yourtheme/woocommerce/single-product/mnm/mnm-product-thumbnail.php
*
* HOWEVER, on occasion WooCommerce Mix and Match 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 https://docs.woocommerce.com/document/template-structure/
* @author Kathy Darling
* @package WooCommerce Mix and Match/Templates
* @since 1.0.0
* @version 1.3.3
*/
if ( ! defined( 'ABSPATH' ) ){
exit; // Exit if accessed directly
}
?>
<div class="mnm_image">
<?php echo ! $mnm_item->is_type( 'variation' ) && $mnm_item->is_visible() ? '<a href="' . $mnm_item->get_permalink() . '">' : ''; ?>
<?php
/**
* Child item thumbnail size.
*
* @param $size
*/
$image_size = apply_filters( 'woocommerce_mnm_product_thumbnail_size', WC_MNM_Core_Compatibility::is_wc_version_gte( '3.3' ) ? 'woocommerce_thumbnail' : 'shop_thumbnail' );
?>
<?php echo $mnm_item->get_image( $image_size ); ?>
<?php echo ! $mnm_item->is_type( 'variation' ) && $mnm_item->is_visible() ? '</a>' : ''; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment