Hello tzeldin88.
Thanks for your feedback. From version 1.8.1 onwards you can implement further customization for site specific needs with javascript.
WCPGSK has two methods to attach javascript:
1. You can edit with the WordPress editor for plugins a file with the name wcpgsk_user.js. There you can put your code. The drawback is that your changes will be lost when updating the plugin. For this reason there exists
2. A textarea within the checkout section where you can put your tested code and store it in the database. This code won’t be lost and will be loaded with the checkout form as well
You can make your checkbox required and at the same time you can achieve that the checkbox is not checked on load with a code similar to this:
jQuery(document).ready(function() {
jQuery('#billing_yourcheckbox_field').find('input[name="billing_yourcheckbox"]').each(function() {
jQuery(this).prop('checked', false);
});
});
With jQuery you can append your text also. I will implement a dedicated solution for this into the Rich Guys Swiss Knife but with these indications you can achieve this yourself.
Regards.
uh