我正在使用WooCommerce,我想删除产品图片,而是拥有完整的页面描述/插件。
使用下面的代码,(wp-content / themes / themename / functions.php)我能够成功删除图像
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20
然而,左侧大的空白区域。我尝试将代码添加到wp-content / themes / themename / custom.css但它确实不工作
.single-product .product .summary { width: auto; }
如何删除空白/空白区域(产品图像通常在哪里)?
答案 0 :(得分:1)
尝试将.single-product .product .summary
更改为:
.single-product .product .summary
{
width: 100% !important;
float: none !important;
}