wordpress 在woocommerce主题中修改产品页面的位置
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/42316572/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Where to modify product page in a woocommerce theme
提问by Michael de Borst
I would like to modify the look of the item picker for multiple items.
where can I find the file that holds this?
我想修改多个项目的项目选择器的外观。
我在哪里可以找到保存这个的文件?
回答by oxy
You can edit
wp-content/plugins/woocommerce/templates/content-single-product.php
or
copy
您可以编辑
wp-content/plugins/woocommerce/templates/content-single-product.php
或复制
wp-content/plugins/woocommerce/templates/content-single-product.php
to
到
wp-content/themes/your-child-theme/woocommerce/content-single-product.php
and edit the copy template to suit. The copy template will override the plugin template and you can update WooCommerce without losing your custom template.
并编辑复制模板以适应。复制模板将覆盖插件模板,您可以在不丢失自定义模板的情况下更新 WooCommerce。