活动图像大小Woocommerce产品页面

时间:2019-02-13 23:15:41

标签: wordpress image woocommerce

嗨,我有问题。在我的产品页面上,活动图像的缩略图大小相同,我不知道发生了什么。看看https://www.extrasocial.it/instagram-followers-reali/

2 个答案:

答案 0 :(得分:0)

您可能需要通过停用其他插件来查找。暂时,您可以在活动的主题函数中使用此代码段。php

add_filter( 'wp_get_attachment_image_src', array( $this, 'pn_change_product_image_link'), 50, 4 );
function pn_change_product_image_link( $image, $attachment_id, $size, $icon ){
    if( ! is_product() ) return $image; //if not product page
    if( $size == 'shop_thumbnail' ) return $image; // if not gallery thumbnails

    // Your source image link
    $src = wp_get_attachment_url( $attachment_id );
    $width  = ''; // define the width if needed
    $height = ''; // define the height if needed
    $image  = array( $src, $width, $height );

    return $image;
}

答案 1 :(得分:0)

我找到了解决方案,它是一个插件(Fast Velocity Minify)。停用后,一切恢复正常。谢谢Mujeebu。