Reply To: Checkboxes on form not sending all selected

#10045974
Support
Keymaster

Hi, try to change this part of the code:

js/views/view.contact.js (line 190):

Add this:

$(formData).each(function(index, obj){
	if( data[obj.name] ) {
		data[obj.name] = data[obj.name] + ', ' + obj.value;						
	} else {
		data[obj.name] = obj.value;
	}
});