全球付费高级自定义文档(here)说明了如何自定义大多数全球付费页面。到目前为止,我已设法通过创建和上传自定义header.html,footer.html和stylesheet.css文件来自定义付款页面,取消页面和付款失败页面。我还必须自定义resultC.html和resultR.html,以便它们包含样式表以及其他文件的页眉和页脚。到目前为止,这一切都相当简单;所有文件都指定了下载位置,所有文件都被上传到同一个地方。
现在,在我链接到顶部的文档的第78页上,它显示了如何为header.html中的链接定义帮助页面的链接。例如,使用以下属性定义安全性链接:
header.tabthree=Security
header.tabthreelinkaddress=/global3/brands/worldpay/payment/default/help_security_en.html
链接到的地址与文档中给出的地址相同,作为安全性默认帮助页面的位置,因此无论我上传多少文件,这都不会链接到自定义版本。
我已经尝试上传自定义安全页面(文档中提供了默认链接),并通过更改我的浏览器地址来尝试找到它导航到这一点 - 这没有用。
我尝试过关联'help_security_en.html'而不是'/global3/brands/worldpay/payment/default/help_security_en.html'以及其他一些变体。这些都没有奏效。
我想我可以在原始网站上创建帮助页面并从世界支付部分链接到它们,但我宁愿坚持让所有世界在一个地方支付费用,如果可能的话。
答案 0 :(得分:1)
是的,你可以。
在此处下载帮助文件:
https://secure.worldpay.com/global3/brands/worldpay/payment/default/help_en.html https://secure.worldpay.com/global3/brands/worldpay/payment/default/help_faqs_en.html https://secure.worldpay.com/global3/brands/worldpay/payment/default/help_security_en.html
然后创建一个名为messages_en.properties的属性文件,并包含以下内容:
#--------------------------------------------------------------------
# Default Header
#--------------------------------------------------------------------
header.tabone=Help
header.tabonelinkaddress=/i/<your_id>/help_en.html
header.tabtwo=FAQs
header.tabtwolinkaddress=/i/<your_id>/help_faqs_en.html
header.tabthree=Security
header.tabthreelinkaddress=/i/<your_id>/help_security_en.html
然后您可以自定义文件并通过文件管理器上传。
希望有所帮助。