Woocommerce没有近期订单文本

时间:2014-10-07 08:31:26

标签: wordpress woocommerce

我已经设置了woocommerce并正常工作,我只是需要一些调整。

在我的帐户页面上,默认为最近订单,显示客户最近的订单。但如果没有订单,页面就是空白。 我想添加一行文本来显示页面已加载,并可能鼓励用户创建订单。

我将其添加到my-orders或my-accounts页面中,以便仅在没有其他订单出现时显示?任何帮助赞赏。感谢。

1 个答案:

答案 0 :(得分:0)

您可以将my-orders.php模板复制到主题中(wp-content/themes/my-theme/woocommerce/myaccount/my-orders.php)。

您将看到此模板具有if语句:

if ( $customer_orders ) : 
// prints the orders table
endif;

您只需要将此语句赋予else条件,如下所示:

if ( $customer_orders ) : 
// prints the orders table
else :
  echo 'please buy some stuff';
endif;