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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 11:16:52  来源:igfitidea点击:

Where to modify product page in a woocommerce theme

wordpresswoocommercethemes

提问by Michael de Borst

I would like to modify the look of the item picker for multiple items. the bottom right partwhere can I find the file that holds this?

我想修改多个项目的项目选择器的外观。 右下角我在哪里可以找到保存这个的文件?

回答by oxy

You can edit wp-content/plugins/woocommerce/templates/content-single-product.phpor 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。