Skip to content

Commit 8328220

Browse files
committed
Fixes
1 parent ebd69f0 commit 8328220

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ You can also follow us on Twitter! **[@paystack](http://twitter.com/paystack)**
8484

8585

8686
== Changelog ==
87+
= 2.0.2 =
88+
* Price calculation and bug fixes.
8789
= 2.0.1 =
8890
* Bug fixes.
8991
= 2.0.1 =

public/js/paystack-forms-public.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
var lastName = names[1] || "";
272272
var quantity =data.quantity;
273273
// console.log(firstName+ " - "+lastName);
274-
if (data.plan == 'none') {
274+
if (data.plan == 'none' || data.plan == '' || data.plan == 'no' ) {
275275
var handler = PaystackPop.setup({
276276
key: settings.key,
277277
email: data.email,

0 commit comments

Comments
 (0)