E commerce 自定义模具订单确认页面

E commerce 自定义模具订单确认页面,e-commerce,bigcommerce,E Commerce,Bigcommerce,我已经搜索了几个小时了,没有得到任何有用的东西 在BigCommerce模具主题中,是否可以为订单确认.html页面自定义/创建自定义模板?特别是{{checkout.order\u confirmation\u content}} 如果没有,是否有解决方法或其他方法?我的意思是必须有一种方法来更改该页面的HTML 注: 我想更改HTML而不仅仅是CSS当前,唯一支持编辑确认页面内容的签出流是自定义单页签出(针对开发人员)。开发者签出允许您完全访问签出和确认页面的html。您可以在控制面板中的“

我已经搜索了几个小时了,没有得到任何有用的东西

在BigCommerce模具主题中,是否可以为
订单确认.html
页面自定义/创建自定义模板?特别是
{{checkout.order\u confirmation\u content}}

如果没有,是否有解决方法或其他方法?我的意思是必须有一种方法来更改该页面的HTML

注:
我想更改HTML而不仅仅是CSS

当前,唯一支持编辑确认页面内容的签出流是自定义单页签出(针对开发人员)。开发者签出允许您完全访问签出和确认页面的html。您可以在控制面板中的“高级设置”>“签出”下访问此设置


启用后,导航到店面>签出模板文件(您可能需要刷新以查看此选项的显示)。订单确认页面为order.html。

优化的单页签出流/签出/订单确认通过向本地化添加语言字符串,支持主题\模板\页面\订单确认.html的自定义

从以下位置获取
opt checkout en.json
的副本

{
“优化的检查”:{
“订单确认”:{
“订单号”文本:“您的订单号为{orderNumber}”,
“订单待审核文本”:“您的订单已发送给我们,但目前正在等待付款。一旦我们收到您订单的付款,订单将完成。如果您已提供付款详细信息,我们将手动处理您的订单,并在订单完成后向您发送电子邮件。”,
“使用可下载的数字项目文本订购”:“您可以通过单击此页面上的链接或随时登录您的帐户来下载您的数字购买。您的确认电子邮件中还有一个下载链接,很快就会到达。”,
“带有支持编号文本的订单”:“将发送一封包含您的购买信息的电子邮件。如果您对您的购买有任何疑问,请发送电子邮件至或致电至。”,
“订购不带可下载数字项目的物品”:“一旦我们收到您的付款,我们将发送一封带有链接的确认电子邮件,以下载您的数字购买。”,
“没有支持号的订单文本”:“将发送一封包含您的购买信息的电子邮件。如果您对您的购买有任何疑问,请发送电子邮件至。”,
“thank_you_customer_heading”:“thank you{name}!”,
“谢谢”标题:“谢谢!”,
“订单\状态\更新\ facebook \ messenger \标题”:“向messenger获取订单的即时更新”
}
}
}
我不清楚supportEmail的来源

{
    "optimized_checkout": {
        "order_confirmation": {
            "order_number_text": "Your order number is <strong>{orderNumber}</strong>",
            "order_pending_review_text": "Your order was sent to us but is currently awaiting payment. Once we receive the payment for your order, it will be completed. If you've already provided payment details then we will process your order manually and send you an email when it's completed.",
            "order_with_downloadable_digital_items_text": "You can download your digital purchases by clicking the links on this page, or by logging into your account at any time. There is also a download link in your confirmation email, which should be arriving shortly.",
            "order_with_support_number_text": "An email will be sent containing information about your purchase. If you have any questions about your purchase, email us at <a ng-href=\"mailto:{supportEmail}?Subject=Order {orderNumber}\" target=\"_top\">{supportEmail}</a> or call us at <a href=\"tel://{supportPhoneNumber}\">{supportPhoneNumber}</a>.",
            "order_without_downloadable_digital_items_text": "Once we receive your payment, we’ll send a confirmation email with a link to download your digital purchases.",
            "order_without_support_number_text": "An email will be sent containing information about your purchase. If you have any questions about your purchase, email us at <a ng-href=\"mailto:{supportEmail}?Subject=Order {orderNumber}\" target=\"_top\">{supportEmail}</a>.",
            "thank_you_customer_heading": "Thank you {name}!",
            "thank_you_heading": "Thank you!",
            "order_status_update_facebook_messenger_heading": "Get instant updates of your order to Messenger"
        }
    }
}