woocommerce display image captions in single-product thumbnail display
-
I’m trying to display the image caption underneath each product thumbnail on the single-product page and can’t figure it out. I know I need to change something in the template/single-product/product-thumbnails.php file:
$image_link = wp_get_attachment_url( $attachment_id ); if ( ! $image_link ) continue; $image = wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ) ); $image_class = esc_attr( implode( ' ', $classes ) ); $image_title = esc_attr( get_the_title( $attachment_id ) ); echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<a href="%s" class="%s" title="%s" data-rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image ), $attachment_id, $post->ID, $image_class ); $loop++; }
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘woocommerce display image captions in single-product thumbnail display’ is closed to new replies.