We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd69f0 commit 8328220Copy full SHA for 8328220
README.txt
@@ -84,6 +84,8 @@ You can also follow us on Twitter! **[@paystack](http://twitter.com/paystack)**
84
85
86
== Changelog ==
87
+= 2.0.2 =
88
+* Price calculation and bug fixes.
89
= 2.0.1 =
90
* Bug fixes.
91
public/js/paystack-forms-public.js
@@ -271,7 +271,7 @@
271
var lastName = names[1] || "";
272
var quantity =data.quantity;
273
// console.log(firstName+ " - "+lastName);
274
- if (data.plan == 'none') {
+ if (data.plan == 'none' || data.plan == '' || data.plan == 'no' ) {
275
var handler = PaystackPop.setup({
276
key: settings.key,
277
email: data.email,
0 commit comments