【发布时间】:2013-06-21 03:01:32
【问题描述】:
我正在使用 wooCommerce 和 Wordpress。
当您为 woocommerce 产品设置特色图片时,它会在产品详细信息页面的图库中显示为第一张/主图片。我不想要这个。我只是想完全从产品详细信息页面隐藏/删除特色图片。我希望特色图片仅显示在产品类别页面中,而不显示在单个产品详细信息页面上。
我尝试使用代码删除图像
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
在主题函数文件中。
仍然无法看到想要的结果。
我正在使用主题room09。
我想隐藏此垂直图像(已将其设置为特色图像)仅在此页面上显示。
<div class="images">
<?php
if ( has_post_thumbnail() ) {
$image = get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) );
$image_title = esc_attr( get_the_title( get_post_thumbnail_id() ) );
$image_link = wp_get_attachment_url( get_post_thumbnail_id() );
$attachment_count = count( get_children( array( 'post_parent' => $post->ID, 'post_mime_type' => 'image', 'post_type' => 'attachment' ) ) );
if ( $attachment_count != 1 ) {
$gallery = '[product-gallery]';
} else {
$gallery = '';
}
echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image ), $post->ID );
} else {
echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<img src="%s" alt="Placeholder" />', woocommerce_placeholder_img_src() ), $post->ID );
}
?>
<?php do_action( 'woocommerce_product_thumbnails' ); ?>
</div>
【问题讨论】:
-
您是否购买了已安装 woocommerce 的主题?或者安装主题后作为插件添加?
-
我在安装 woocommerce 后添加了主题......
标签: wordpress woocommerce