分享笔记:

去除WooCommerce产品图片

什么情况下会用这个???

文章目录

最近有一个客户问了我一个我以前从来没有遇到过的情况,就是它的电商不需要图片,把产品图片全部去掉。虽然我不知道什么情况下会用上这个功能,不过我在这简单记录一下。

woocommerce电商图片
正常的图片显示

删除产品图片代码

想要去除产品的产品图片添加代码到网站上就可以了。

/* 删除产品图片 */
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); 
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); 

如果你的WordPress网站是用构建器做的,像ElementorBricks Builder,或者任何其他页面构建器,这个代码其实对你们有点多此一举,你们搭建网站的时候直接不放图片就行了。

为笔记评分

平均评分 0 / 5. 摘星者: 0

有疑问?留个言吧!

更多结果...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

更多结果...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors