B
bvanhuisenJul 31, 2016
I'd like to add the ability for the user to select multiple options in the form dropdown.
I'd like to add the ability for the user to select multiple options in the form dropdown.
Hello,
This is Definitely Possible! Please consider using this Component: http://themes.semicolonweb.com/html/canvas/component-select-picker.php . You can find this Template in the component-select-picker.html File in the Package/HTML Folder.
Then you can simply modify the PHP Code in the include/sendemail.php File and find the following code:
$service = isset($service) ? "Service: $service<br><br>" : '';and replace it with:
$service = isset($service) ? "Service: $service<br><br>" : '';
if( is_array( $service ) && !empty( $service ) ) {
$service = "Service: " . implode( ', ', $service ) . "<br><br>" : '';
}This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.
Have the same question, or something new?
Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.
Reply on the dashboard