Specific Terms

LAST UPDATED: 10 JUNE 2025

Print pageDownload PDF

Please note that, from 30 June 2026, this Specific Terms document will be updated.  Your Credit Contract will be varied on and from 30 June 2026 to consist of a personalised Schedule (template here), the Customer Terms, the Pay in 4 Product Terms and, for Afterpay Plus subscribers, the Specific Terms.  Please click on the links for copies of these documents.

const calcCollapseContentHeight = (section) => { const content = section.querySelector(".question-content"); const contentHeight = content.getBoundingClientRect().height; section .querySelector(".question-des") .style.setProperty("--max-height", `${contentHeight + 10}px`); }; setTimeout(() => { const collapseElems = document.querySelectorAll(".question-item"); for (const collapse of collapseElems) { const observer = new ResizeObserver(() => calcCollapseContentHeight(collapse) ); observer.observe(collapse); } }, 500);