When you set the ‘paymentRequired attribute to false, after the video is uploaded, a payment button is not displayed. The default value for the ‘paymentRequired’ attribute is true, so by not adding the attribute, users will always be presented with the payment button after the upload.

index.html
<script>
    window.pactto = window.pactto || {};
    window.pactto.coach = 'username';
    window.pactto.company = 'Coach Name';
    // Add paymentRequired attribute:
    window.pactto.paymentRequired = false;
</script>

Below you can see with payment button:

paymentRequired = true (default)

Below you can see without payment button:

paymentRequired = false