Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
note changes to Formulate Pro
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas-Westby authored Feb 12, 2024
1 parent 10c5d66 commit ae33f92
Showing 1 changed file with 3 additions and 66 deletions.
69 changes: 3 additions & 66 deletions pro/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Formulate Pro

# Formulate Pro

Formulate Pro is the paid package that adds additional functionality to Formulate.
Formulate Pro is the ~~paid~~ free package that adds additional functionality to Formulate. Now that we have no plans to upgrade Formulate to work with newer versions of Umbraco, you are free to use Formulate Pro going forward.

Currently, this includes the following:

Expand All @@ -14,7 +14,7 @@ Currently, this includes the following:

You can read more about Formulate Pro here: [Announcing Formulate Pro](https://code101.net/code-101/announcing-formulate-pro)

Once you've paid for a license, you can view the source code here: [github.com/Formulate-Pro/Formulate-Pro](https://github.com/Formulate-Pro/Formulate-Pro)
You can view the source code here for free: [github.com/Formulate-Pro/Formulate-Pro](https://github.com/Formulate-Pro/Formulate-Pro)

# Installing Formulate Pro

Expand All @@ -24,67 +24,4 @@ Be sure you've already installed the Umbraco 8 and Formulate 3 NuGet packages.

# Paying for Formulate Pro

Formulate Pro isn't free. You can pay for it below. Licenses are forever (i.e., they include upgrades to new versions of Formulate Pro).

Note that there are no license files or keys. Once you've paid, all you need to do is install the NuGet package. All prices are in USD.

<div class="payment-option">
<h2>Formulate Pro: One Project License ($20)</h2>
<p>Click the button below to purchase a license for a single project (unlimited environments, such as local, dev, stage, UAT, and prod). This is best if you primarily work on one website.</p>
<div id="paypal-button-container-20"></div>
</div>
<div class="payment-option">
<h2>Formulate Pro: Individual Developer License ($50)</h2>
<p>Click the button below to purchase a license for an individual developer (unlimited projects built by that developer). This is best if you personally work on several websites.</p>
<div id="paypal-button-container-50"></div>
</div>
<div class="payment-option">
<h2>Formulate Pro: Agency License ($200)</h2>
<p>Click the button below to purchase a license for all projects worked on by a single agency (unlimited projects built by any developer of the agency). This is best if your company works on several websites. You can pay for Formulate Pro once, then never have to think about it again.</p>
<div id="paypal-button-container-200"></div>
</div>
<script src="https://www.paypal.com/sdk/js?client-id=AUlYBvLdzPsUlgJS_A4JV5pOPNqyDKVhyBLKQa6qnU4DGRUixhKIz1I4VuOPBnUkDd5aiC79StB_6pmR&currency=USD"></script>
<script>
setupButton('#paypal-button-container-20', '20.00');
setupButton('#paypal-button-container-50', '50.00');
setupButton('#paypal-button-container-200', '200.00');
function setupButton(selector, amount) {
paypal.Buttons({
fundingSource: paypal.FUNDING.CARD,
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
currency_code: 'USD',
value: amount
}
}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Your payment is complete. You are now licensed to use Formulate Pro.');
let paypalContainer = document.querySelector(selector);
paypalContainer.innerHTML = '<p class="confirmation-message">Your payment is complete. You are now licensed to use Formulate Pro.</p>'
});
}
}).render(selector);
}
</script>

<style>
.payment-option {
background-color: #fdd;
margin: 10px;
padding: 10px;
border-radius: 10px;
border: 5px dashed #faa;
}
.confirmation-message {
background-color: #f00;
color: #fff;
padding: 15px;
font-weight: bold;
font-size: 24px;
}
</style>
Formulate Pro is now free, so no payment is required.

0 comments on commit ae33f92

Please sign in to comment.