You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,8 @@
4
4
5
5
Ensure that your website is running PHP 8 or later. This plugin is confirmed to be working with PHP 8.3.
6
6
7
-
1. Clone this repo.
8
-
2. Zip `software-licensor-wp-plugin`
9
-
3. Upload the plugin to your website.
7
+
1. Clone this repo and zip `software-licensor-wp-plugin`, or download the latest release.
8
+
3. Upload the plugin (the zip file) to your website.
10
9
4. Navigate from the admin dashboard to `WooCommerce>Settings>Integration>Software Licensor`.
11
10
5. Fill out the form and click save. If the form is missing data, the request might not go through and you won't be able to see a store ID in the next step.
12
11
6. Navigate from the admin dashboard to `Software Licensor>Software Licensor`. Verify that you can see a roughly 64-character long string at the top under `Store ID`. You will need to include this `store_id` in the client side code.
'description' => __( 'Optionally share customer info with Software Licensor. Sharing this will enable the possibility of customer\'s contact information to be visible in the licensed software (you would also need to display it with your client side code). We do not sell or share personal customer information, and the information will be encrypted in transit and at rest. If you check this box, you will need to include a statement in your privacy policy that Software Licensor is one of the 3rd parties that you are sharing customer data with. The collected data primarily includes names and emails, and can also include computer names, OS names, MAC addresses, and some hardware information.', 'software-licensor' ),
429
+
'description' => __( 'Optionally share customer info with ' .
430
+
'Software Licensor. Sharing this will enable the ' .
431
+
'possibility of customer\'s contact information to be ' .
432
+
'visible in your licensed software (you would also need ' .
433
+
'to display it with your client side code). We do not ' .
434
+
'sell or share personal customer information, and the ' .
435
+
'information will be encrypted in transit and at rest. ' .
436
+
'If you check this box, you will need to include a ' .
437
+
'statement in your privacy policy that Software Licensor ' .
438
+
'is one of the 3rd parties that you are sharing customer ' .
439
+
'data with. The collected data primarily includes names and emails, and can also include computer names, OS names, MAC addresses, and some hardware information.', 'software-licensor' ),
410
440
'default' => '',
411
441
'label' => 'Share customer info',
412
442
),
@@ -440,7 +470,6 @@ public function init_form_fields() {
440
470
*/
441
471
publicfunctionprocess_admin_options()
442
472
{
443
-
echo'Reached process_admin_options() function';
444
473
$all_settings_valid = true;
445
474
$settings = $this->get_form_fields();
446
475
@@ -498,6 +527,16 @@ function software_licensor_admin_menus() {
0 commit comments