我想从商店页面(目录)中隐藏或删除类别元数据, 该页面正显示在我商店的产品标题下。我已经尝试了几件事, 但是没有任何效果。
我累了CSS:
.product__categories {display:none!importamt;
}
和这个…
.product_meta .sku_wrapper {
display:none!important;
}.product_meta .posted_in {
display:none!important;
}
我也很讨厌函数remove_action(‘ woocommerce_single_product_summary’ , ‘ woocommerce_template_single_meta’ , 40);
如何隐藏类别元数据?
#1我用这个:
.product-details .posted_in { display: none;
}
它为我工作
【WooCommerce(如何在商店页面中隐藏/删除产品标题下的类别())】你尝试使用的.product_meta类不在目录页面上, 而是在产品详细信息页面上。
推荐阅读
- WordPress-所有页面链接到index.php文件
- 为什么the_content在wordpress single.php中不起作用
- 为什么是我的(php the_post_thumbnail(); ?没有在我的WordPress页面上显示任何图像?)
- PHP模板文件中的HTML在哪里()
- WordPress中的robots.txt在哪里
- 哪个网址将导致wordpress使用archive.php()
- 哪些网站提供安全的免费WordPress主题( [关闭])
- 检索模板目录URL的更好方法是什么(bloginfo(‘template_url’)或echo esc_url(get_template_directory_uri())())
- 在WordPress主题开发中使用相对路径的正确方法是什么()