我有一个专为客户设计的wp-ecommerce电子wordpress网站。
仅限Internet Explorer浏览器存在问题。单个产品单页中的单个产品图像消失,图像无法显示,即使源代码中仍有明显的img代码。
以下是wpsc-single_product.php文件中图像占位符的代码:
<div class="image" style="display: table; width:360; margin: auto;height: 430px; position: relative; overflow: hidden; ">
<a href="<?php echo wpsc_the_product_permalink(); ?>">
<img style="height: auto; max-height:100%; max-width:100%; margin: 0px auto; overflow:hidden;" class="product_image" id="product_image_<?php echo wpsc_the_product_id(); ?>" alt="<?php echo wpsc_the_product_title(); ?>" title="<?php echo wpsc_the_product_title(); ?>" src="<?php echo wpsc_the_product_thumbnail(get_option('product_image_width'),get_option('product_image_height'),'','single'); ?>"/>
</a>
</div>
如果有人能帮助我们解决问题,以便在单个产品页面中准确显示图片,我将不胜感激。
谢谢。