WooCommerce;从商店页面和单一产品页面删除产品图片

问题描述 投票:0回答:5

我正在尝试有条件地从WooCommerce的商店页面和单一产品页面中删除产品图片。它正在从单一产品而不是/ shop页面上的产品中删除图像。

//* Conditionally remove the Featured Product Image from the single-product page
function remove_gallery_and_product_images() {
if ( is_product() && is_single(array(1092, 1093, 1094) ) ) {
  remove_action( 'woocommerce_before_single_product_summary', 
'woocommerce_show_product_images', 20 );
  add_filter('body_class', 'no_prod_imgs_class');
  }
}
  add_action('template_redirect', 'remove_gallery_and_product_images');

//* Add CSS for removed featured images from multiple specific product detail 
pages
function no_prod_imgs_class($classes) {
$classes[] = 'no-product-images';
return $classes;
}
wordpress woocommerce
5个回答
2
投票

这里是用于删除单个产品图片的过滤器。

function remove_single_product_image( $html, $thumbnail_id ) {
    return '';
}

add_filter( 'woocommerce_single_product_image_thumbnail_html', 'remove_single_product_image', 10, 2 );

这里是删除商店页面缩略图的代码。

function remove_woocommerce_actions() {
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
}

add_action( 'after_setup_theme', 'remove_woocommerce_actions' );

1
投票

删除所有单个产品页面上的所有缩略图图像

将此代码添加到您的子主题functions.php文件。

remove_action( 'woocommerce_product_thumbnails', 'woocommerce_show_product_thumbnails', 20 );

// Remove product images from the shop loop
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

0
投票

非常感谢您的回答。我之前发现了这些删除操作,并且从产品或/ shop页面中删除了图像,但是我无法定位特定的产品ID;无论出于何种原因,此删除操作都不喜欢您针对特定的产品ID!事实证明,可行的解决方案是针对特定的页面ID。因此,换句话说,就我而言,我会将这个产品放在一个存档页面上,该存档页面将没有产品图片,但另一个产品存档页面将包含产品图片。

// Conditionally remove product images from the shop loop
function remove_product_image_conditionally() {
  if ( is_page( 1108 ) ) {
    remove_action( 'woocommerce_before_shop_loop_item_title', 
    'woocommerce_template_loop_product_thumbnail', 10 );
  }
}
  add_action('template_redirect', 'remove_product_image_conditionally');

0
投票

您可以使用这些代码来实现您的目标:


0
投票

我也有同样的挣扎。

© www.soinside.com 2019 - 2024. All rights reserved.