Skip to content
Bendigo Art Society
Home
About
Activities
Events
Our Artists
Members Gallery
Become a Member
Contact
Home
About
Activities
Events
Our Artists
Members Gallery
Become a Member
Contact
Facebook
Membership Application & Renewal
First Name
(Required)
Last Name
(Required)
Phone
(Required)
Email
(Required)
Address
(Required)
Street
City, Town or Suburb
State
Post Code
Full Membership Fee is $50.00 Please note: Membership fees are for the FINANCIAL YEAR.
Membership
New Member
Renewing Member
Amount Payable
Has the fee been paid?
Yes
No
Method of Payment
Direct Deposit
Cash to be paid at next meeting
Payment Options
Direct Deposit
Bendigo and Adelaide Bank.
BSB: 633-000
Account Name: Bendigo Artist Society
Account No: 104 148 424
Please include your full name when submitting deposit.
Cash payments:
Your Membership Fee can also be paid in CASH to our group Treasurer at our next meeting.
A receipt will be given at the time of your payment.
/** * Gravity Perks // Copy Cat // Copy Label (instead of Value) * https://gravitywiz.com/documentation/gravity-forms-copy-cat/ * * Instruction Video: https://www.loom.com/share/00f1287e4a23495aa9aa02ba95f882a5 * * By default, the value of a choice-based field/radio is copied. * Use this snippet to copy the label instead of the value. * * Instructions: * 1. Install our free Custom Javascript for Gravity Forms plugin. * Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/ * 2. Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin. */ gform.addFilter( 'gppc_copied_value', function( value, $elem, data ) { $source = jQuery( '#input_' + data.sourceFormId + '_' + data.source ); if( $source.is( 'select' ) ) { value = $source.find( 'option:selected' ).text(); } else if( $source.is( '.gfield_radio' ) ) { value = $source.find( '.gfield-choice-input:checked + label' ).text(); } else if ( $source.is( '.gfield_checkbox') ) { $inputs = $source.find( 'input:checked' ); var checkedLabels = []; $inputs.each( function () { var label = $(this).next('label').text(); checkedLabels.push( label ); }); value = checkedLabels.join(' '); } return value; } );