1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php /** * The template for displaying small product content within loops. * * Override this template by copying it to yourtheme/woocommerce/content-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */
global $product, $woocommerce_loop;
$attachment_ids = $product->get_gallery_attachment_ids();
?> <li class="product small"> <a href="<?php the_permalink(); ?>" style="display:block" class="tip-top" title='<?php the_title(); ?> / <?php echo htmlentities($product->get_price_html()); ?>'> <div class="product-image"> <?php echo get_the_post_thumbnail($post->ID, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' )) ?> </div><!-- end product-image --> </a> <?php woocommerce_get_template( 'loop/sale-flash.php' ); ?> </li><!-- end product -->
|