diff --git a/README.md b/README.md index 0539151..90e8bdd 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,10 @@ $ git clone https://github.com/invite-frey/is-woo-payment-fps.git ### 1.41 * Bugfix +### 1.42 +* Cache QRCodes by default due to better compatibility with most systems +* Fixed bug preventing headers to be output on some systems + ## Donations Donations are much appreciated if you found this resource useful. diff --git a/hong-kong-fps-woo-payment.php b/hong-kong-fps-woo-payment.php index 7978a19..6ad22ed 100644 --- a/hong-kong-fps-woo-payment.php +++ b/hong-kong-fps-woo-payment.php @@ -1,14 +1,14 @@ 'no' ), 'write_qr_code_to_file' => array( - 'title' => __('Write QRCode to file',ITS_WPF_PLUGIN_ID), - 'label' => __('Write QRCode to file',ITS_WPF_PLUGIN_ID), + 'title' => __('Cache QRCode to file',ITS_WPF_PLUGIN_ID), + 'label' => __('Cache QRCode to file',ITS_WPF_PLUGIN_ID), 'type' => 'checkbox', - 'description' => __('Enable this option if the QRCode does not show up, or if you want to cache each generated QRCode to a file for reuse. Provides better performance if the total amount is often the same.',ITS_WPF_PLUGIN_ID), - 'default' => 'no' + 'description' => __('Disabling this option will cause the QRCode to be dynamically generated. This may not work on all server configurations.',ITS_WPF_PLUGIN_ID), + 'default' => 'yes' ), ); }