diff --git a/BTCPayServer/Views/Stores/PayButton.cshtml b/BTCPayServer/Views/Stores/PayButton.cshtml index b2049ec92..f6a5e8e38 100644 --- a/BTCPayServer/Views/Stores/PayButton.cshtml +++ b/BTCPayServer/Views/Stores/PayButton.cshtml @@ -121,8 +121,25 @@ Please fix errors shown in order for code generation to successfully execute. -
- + +

+
+

Disable Pay Button

+
+
+
+
+

+ Disabling this feature will cause your currently used Pay Buttons to stop working. + Customers trying to use Pay Button to create Invoices will be displayed appropriate message. + You can always reenable Pay Buttons at later time. +

+ @Html.Hidden("EnableStore", false) + +
+
+
+
@section HeadScripts { diff --git a/BTCPayServer/Views/Stores/PayButtonEnable.cshtml b/BTCPayServer/Views/Stores/PayButtonEnable.cshtml index 57c9f3e6c..bfd326248 100644 --- a/BTCPayServer/Views/Stores/PayButtonEnable.cshtml +++ b/BTCPayServer/Views/Stores/PayButtonEnable.cshtml @@ -1,7 +1,7 @@ @{ Layout = "../Shared/_NavLayout.cshtml"; - ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Enable access"); - ViewBag.MainTitle = "Confirm enabling of Pay Button"; + ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Please confirm you want to enable Pay Button"); + ViewBag.MainTitle = "Pay Button"; }

@ViewData["Title"]

@@ -11,10 +11,10 @@

- To start using Pay Button you need to explicitly enable creation of Invoices by Pay Button. - Once you do so, valid POST requests from any source will allow creation of invoices on your instance of BtcPayServer. + To start using Pay Buttons you need to explicitly turn on this feature. + Once you do so, valid POST requests from any source will allow creation of Invoices on your instance of BtcPayServer.

- + @Html.Hidden("EnableStore", true)