Drupal 8 how to get value of the webform submission in webform confirmation twig file
Put the below code in youractivetheme.theme file /** * Implements hook_preprocess_HOOK(). */ function _preprocess_webform_confirmation(&$vars) { if ($vars->id() == 'put your webform id') { // Set your custom message here $markup…