我已經在WordPress中的我的functions.php文件中添加了一個腳本,以在Woocommerce「感謝您」頁面生成其他文本。
**
* Custom text on the receipt page.
*/
function isa_order_received_text($text, $order) {
$new = $text . ' A receipt has been sent to you via email.Please submit your ticket here:https://google.com';
return $new;
}
部分文字是另一頁的鏈接。
Please submit your ticket here:https://google.com';
但是,鏈接不顯示作爲前端突出顯示的/可點擊URL。我該如何解決?
''' ... ? –
With basic HTML? '...? –
哎呀!真是個傻瓜!有時我會驚奇自己!謝謝。 –