使WooCommerce缩略图图像大于主要产品图像

路易

我正在使用Woocommerce 4.2.0和Storefront的子主题。在产品页面中,我要使缩略图图像与主图像一样大(692像素)。

我在我的functions.php中有这个:

/**
 * Modify image width theme support.
 */
function iconic_modify_theme_support() {
    $theme_support = get_theme_support( 'woocommerce' );
    $theme_support = is_array( $theme_support ) ? $theme_support[0] : array();

    
    $theme_support['single_image_width'] = 692;
    // $theme_support['thumbnail_image_width'] = 324;

    remove_theme_support( 'woocommerce' );
    add_theme_support( 'woocommerce', $theme_support );
}
add_action( 'after_setup_theme', 'iconic_modify_theme_support', 100 );

在此处输入图片说明

LoicTheAztec

已更新-以下内容将动态:

  • 禁用弹性滑块
  • 禁用缩放功能
  • 将图库缩略图图像的尺寸设置为与主要产品图像相同的尺寸

编码:

add_filter( 'woocommerce_single_product_flexslider_enabled', '__return_false' ); // Disable slider

add_filter( 'woocommerce_single_product_zoom_enabled', '__return_false' ); // Disable zoom

// Set gallery thumbnails size from single product main image size
add_filter( 'woocommerce_gallery_thumbnail_size', 'filter_gallery_thumbnail_size' );
function filter_gallery_thumbnail_size( $indexed_size ){
    // Get single product main image size
    $indexed_size = wc_get_image_size( 'woocommerce_thumbnail' );

    return array( $indexed_size['width'], $indexed_size['height'] );
}

代码进入您的活动子主题(或活动主题)的functions.php文件中。经过测试和工作。

在此处输入图片说明

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何禁用woocommerce画廊的产品图像缩略图?

来自分类Dev

在购物车缩略图中显示主要产品图片,而不是 WooCommerce 中的变体图片

来自分类Dev

Woocommerce分类图像缩略图

来自分类Dev

在 WooCommerce 单个产品页面中的图像缩略图下添加图像标题

来自分类Dev

WooCommerce产品画廊:使用选定的缩略图交换特色图像

来自分类Dev

缩略图图像高度

来自分类Dev

标牌产品缩略图的大小woocommerce

来自分类Dev

magento 2如何将基本图像或缩略图图像设置为产品

来自分类Dev

libgdx创建图像缩略图

来自分类Dev

从Wikimedia Commons获取缩略图图像

来自分类Dev

如何让django缩略图显示图像?

来自分类Dev

单击缩略图,更改图像

来自分类Dev

如何防止缩略图图像拉伸?

来自分类Dev

图像缩略图的坐标计算

来自分类Dev

Cwac相机添加缩略图图像

来自分类Dev

拖放图像并保留其缩略图

来自分类Dev

C ++逐像素图像缩略图

来自分类Dev

WordPress不创建图像缩略图

来自分类Dev

如何让django缩略图显示图像?

来自分类Dev

libgdx创建图像缩略图

来自分类Dev

为上传的图像创建缩略图

来自分类Dev

缩略图图像未水平对齐

来自分类Dev

如何仅显示缩略图图像?

来自分类Dev

如何显示图像缩略图

来自分类Dev

使用缩略图制作模态图像

来自分类Dev

Bootstrap 图像缩略图大小不同

来自分类Dev

使用缩略图的多模态图像

来自分类Dev

特定页面的Woocommerce产品缩略图大小不同

来自分类Dev

特定页面的Woocommerce产品缩略图大小不同