What's new Woocommerce 2021 kit?

I did not find information in the PDF user guide on how define one product with two variation that every variation is a different workbook.

Can you please point me to the page number (in the user guide PDF) or can you please publish here the JSON schema that I need to set.

Thank you
 
But I if I have two workbooks I need in the JSON schema two workbook “title” and two “master key” and two “private key” and so on…

something like that:
Code:
"products": {
       "31": {
                 "variations": {
                            "32": {
                                    "title": "My workbook title",
                                    "xlspadlockprivatekey": "{}",
                                    "xlspadlockmasterkey": "123",
                                    "usehardwarelocking": 1,
                                    "maxactivperorder": 2,
                                    "keymaxdays": 180,
                                     "shownagscreen": 0
                                    },
                            "33": {
                                    "title": "My workbook title PRO VERSION",
                                    "xlspadlockprivatekey": "{}",
                                    "xlspadlockmasterkey": "456",
                                    "usehardwarelocking": 1,
                                    "maxactivperorder": 2,
                                    "keymaxdays": 180,
                                     "shownagscreen": 0
                                     }
                          }
                  }
           }
}
 
Last edited:
You can create a product per workbook: for instance below we have two products (10 and 12), each one corresponding to a workbook. You can also have variations (see product 12).
Code:
{
	"products": {
		"10": {
			"title": "Your workbook 1 title",
			"xlspadlockprivatekey": "{Your workbook 1 private key}",
			"xlspadlockmasterkey": "Your workbook 1 master key",
			"variations": {
				"0": {
					"usehardwarelocking": 1,
					"maxactivperorder": 2,
					"keymaxdays": 180,
					"shownagscreen": 0
				}
			}
		},
		"12": {
			"title": "Just a demo, remove me in production",
			"xlspadlockprivatekey": "{6363CDED-4E14-412A-8196-5A52C356D6CD}",
			"xlspadlockmasterkey": "14JFGDBFG784GKLGSJSG121QSFB",
			"variations": {
				"14": {
					"usehardwarelocking": 1,
					"maxactivperorder": 2,
					"shownagscreen": 0
				},
				"15": {
					"usehardwarelocking": 1,
					"keyexpiredate": "2019/10/21",
					"maxactivperorder": 3,
					"shownagscreen": 1
				}
			}
		}
	}
}
 
Back
Top