woocommerce.php 在单个产品页面上显示 header

woocommerce.php showing header on single product page

我在名为 woocommerce.php 的 child 主题中设置了网上商店,我商店中的 header 图片显示在单个产品页面上,尺寸图片很大,我似乎无法更改它们?

您可以使用 if php 语句来解决 header 问题吗?我该如何缩小尺寸?

所以转到您的 child 主题并查找 woocommerce.php 文件打开它, 找到图像 header 的位置并在其中做类似的事情

<?php
   if(is_shop()){
?>
  <header image tags>
 <?php
      }
  ?>

这样它只会在商店页面上显示 header 图片,如果您仍然无法完成,请聘请开发人员。

注意 :如果 child 主题有更新,它很可能会抵消更改,因此您可能需要重做。