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 [theme]_preprocess_webform_confirmation(&$vars) { if ($vars[‘webform’]->id() == ‘put your webform id’) { // Set your custom message here $markup = t(‘Thank you for your feedback.’); $vars[‘message’][‘#markup’] = $marku
Read article
