Remove is_recurring from buy now link when disabled

This commit is contained in:
Hillel Coren 2017-02-02 22:42:40 +02:00
parent a33b088a93
commit 7dcc6ff94f

View File

@ -236,12 +236,12 @@
->inlineHelp('buy_now_buttons_warning') ->inlineHelp('buy_now_buttons_warning')
->addGroupClass('product-select') !!} ->addGroupClass('product-select') !!}
{!! Former::checkboxes('client_fields') {!! Former::inline_checkboxes('client_fields')
->onchange('updateBuyNowButtons()') ->onchange('updateBuyNowButtons()')
->checkboxes([ ->checkboxes([
trans('texts.email') => ['value' => 'email', 'name' => 'email'],
trans('texts.first_name') => ['value' => 'first_name', 'name' => 'first_name'], trans('texts.first_name') => ['value' => 'first_name', 'name' => 'first_name'],
trans('texts.last_name') => ['value' => 'last_name', 'name' => 'last_name'], trans('texts.last_name') => ['value' => 'last_name', 'name' => 'last_name'],
trans('texts.email') => ['value' => 'email', 'name' => 'email'],
]) !!} ]) !!}
{!! Former::inline_radios('landing_page') {!! Former::inline_radios('landing_page')
@ -273,9 +273,11 @@
{!! Former::select('frequency_id') {!! Former::select('frequency_id')
->options(\App\Models\Frequency::selectOptions()) ->options(\App\Models\Frequency::selectOptions())
->onchange('updateBuyNowButtons()')
->value(FREQUENCY_MONTHLY) !!} ->value(FREQUENCY_MONTHLY) !!}
{!! Former::select('auto_bill') {!! Former::select('auto_bill')
->onchange('updateBuyNowButtons()')
->options([ ->options([
AUTO_BILL_OFF => trans('texts.off'), AUTO_BILL_OFF => trans('texts.off'),
AUTO_BILL_OPT_IN => trans('texts.opt_in'), AUTO_BILL_OPT_IN => trans('texts.opt_in'),
@ -407,7 +409,7 @@ iframe.src = '{{ rtrim(SITE_URL ,'/') }}/view/'
var landingPage = $('input[name=landing_page_type]:checked').val() var landingPage = $('input[name=landing_page_type]:checked').val()
var paymentType = (landingPage == 'payment') ? '/' + $('#payment_type').val() : '/'; var paymentType = (landingPage == 'payment') ? '/' + $('#payment_type').val() : '/';
var redirectUrl = $('#redirect_url').val(); var redirectUrl = $('#redirect_url').val();
var isRecurring = $('#is_recurring').val(); var isRecurring = $('input[name=is_recurring]:checked').val()
var frequencyId = $('#frequency_id').val(); var frequencyId = $('#frequency_id').val();
var autoBillId = $('#auto_bill').val(); var autoBillId = $('#auto_bill').val();