修改WooCommerce订单页面

时间:2018-09-29 10:10:55

标签: php wordpress woocommerce

我需要修改WooCommerce订单页面,但是我没有经验。此刻(与通常情况一样),我的订单页面如下:

enter image description here

昨天,我为每个订单添加了第二个id属性,可以在其中设置自定义客户ID(在Wordpress中为user_id)。该字段被命名为“ second_customer”。

之所以这样做,是因为我也想向另一位客户显示另一位客户所接受的订单,以防“ second_customer”具有其user_id作为值。

现在,我需要修改orders.php并对其进行修改,以使订单也可以以常规方式加载到他的帐户中的“ second_customer”的订单中。所以我的问题是:如何获得自定义属性中定义的用户ID的图片(顺序)之类的行?

1 个答案:

答案 0 :(得分:0)

作为您的问题: 我如何才能像图片一样清晰地显示行 使用表格HTML元素,就像上面的屏幕截图一样,结果是5个标题行,其中表格标题-和表格行-:

<table style="width:100%">
  <tr>
    <th>Product Id</th>
    <th>Date</th> 
    <th>Status</th>
    <th>Address</th>
    <th>Name</th>
    </tr>
  <tr>
    <td>#356</td>
    <td>30 September</td>
    <td>Customer</td>
    <td>10 Address st, China</td>
    <td>John Doe</td>
  </tr>
  <tr>
   <td>#357</td>
    <td>30 September</td>
    <td>Customer</td>
    <td>32 Address st, Porland</td>
    <td>Sarah smith</td>
  </tr>
  <tr>
   <td>#358</td>
    <td>29 September</td>
    <td>Customer</td>
    <td>55 Address st, New York</td>
    <td>Ben Barber</td>
  </tr>
</table>