thanks for responding…
the client asked if we can just set it to checkmark itself automatically.
can i do that by editing these codes somewhere? we need to launch soon so i think this would be more time efficient than troubleshooting.
$content = $this->checkbox(‘showccuser’,__(‘Allow user to request a copy of their submission’, ‘salesforce’) );
//send me a copy
if( $options[‘showccuser’] ){
$label = $options[‘ccusermsg’];
if( empty($label) ) $label = __(‘Send me a copy’,’salesforce’);
$content .= “\t\n\t”.'<p><label class=”w2llabel checkbox”><input type=”checkbox” name=”w2lcc” class=”w2linput checkbox” value=”1″/> ‘.esc_html($label).”</label><p>\n”;
}