From f7b9ebd682c03cabd50578b7397a9f15d60c06ca Mon Sep 17 00:00:00 2001 From: atif-shaikh Date: Wed, 4 Jun 2014 12:05:42 +0530 Subject: [PATCH] CRM-11836 Event Registrant is forced to select a Payment type when there is no fee if pay later enabled ---------------------------------------- * CRM-11836: Event Registrant is forced to select a Payment type when there is no fee if pay later enabled https://issues.civicrm.org/jira/browse/CRM-11836 --- templates/CRM/Event/Form/Registration/Register.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Event/Form/Registration/Register.tpl b/templates/CRM/Event/Form/Registration/Register.tpl index c91bcdde5b..6374ea42f9 100644 --- a/templates/CRM/Event/Form/Registration/Register.tpl +++ b/templates/CRM/Event/Form/Registration/Register.tpl @@ -215,7 +215,7 @@ var payment_processor = cj("div.payment_processor-section"); var payment_information = cj("div#payment_information"); - if (isMultiple && cj("#additional_participants").val()) { + if (isMultiple && cj("#additional_participants").val() && cj('#pricevalue').text() !== symbol + " 0.00") { flag = 0; } -- 2.25.1