📝 Activate GradeBook

If you only see the Help menu under Extensions → GradeBook, this means the add-on needs to be enabled for your document.

🎬 For the Popcorn-Lovers Who Prefer a 1-Minute Blockbuster!

✍️ For the Note-Takers Who Like It in Writing!

  1. Open your GradeBook, click ExtensionsAdd-onsManage add-ons.
  2. Find GradeBook in the list, click the three vertical dots in the top-right corner of the GradeBook add-on.
  3. Toggle “Use in this document” to enable it.
  4. Refresh the sheet for the changes to take effect. ❗You must refresh!
  5. Once enabled, the full GradeBook menu will appear under Extensions → GradeBook.
Screenshot

✔ Pro Tip!

Sometimes the “Use in this document” option is already checked. Always uncheck it first, then recheck it.

Similarly, if it starts unchecked, check it, uncheck it, then check it again.

🧐 Because Google likes to make sure you’re really, really sure!

🚀 Now you’re all set! Enjoy using GradeBook. 🎉

document.addEventListener("DOMContentLoaded", () => { const apiEndpoint = "/wp-json/license-management/v1/get-licenses"; const tableContainer = document.getElementById("license-table-container"); fetch(apiEndpoint, { credentials: "same-origin" }) .then((response) => { if (!response.ok) { throw new Error("Failed to fetch license data"); } return response.json(); }) .then((data) => { if (data.error) { tableContainer.innerHTML = `

${data.error}

`; return; } let tableHTML = ` `; data.forEach((license) => { const actionButton = license.is_latest_order ? `Change License` : `Change License`; tableHTML += ` `; }); tableHTML += `
Order Number Product License Email Actions
#${license.order_number} ${license.product_name} ${license.license_email} ${actionButton}
`; tableContainer.innerHTML = tableHTML; }) .catch((error) => { tableContainer.innerHTML = `

Error: ${error.message}

`; }); });
-->