No issue found. Closing this ticket
Everything seems to be going well. Nothing found related to "phpcs --standard=Drupal,DrupalPractice".
See screenshot.
Events are fired, but real-time data is not sent to the Google Tag Console.
If I add the script below, real-time data will appear on the GTAG console.
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-XXX');
I need your input here?
https://www.drupal.org/u/japerry โ
https://www.drupal.org/u/acquia โ
rohitrajputsahab โ created an issue.
Hi @izus
Is any update on this?
rohitrajputsahab โ created an issue.
Added Drupal 11 support
After upgrading to Drupal version 10.3, the same problem keeps happening. Can it be fixed without reverting to an earlier version of Drupal?
LogicException: The mapping definition at `ckeditor5.plugin.ckeditor5_list:properties` is invalid: its `label` key contains a string. It must be an array. in Drupal\Core\Config\Schema\Mapping->__construct() (line 38 of core\lib\Drupal\Core\Config\Schema\Mapping.php).
Hi DrupalDope,
Use this patch
https://www.drupal.org/files/issues/2022-07-12/language-icons-not-workin... โ
rohit-rajput-sahab โ made their first commit to this issueโs fork.
THi @delphine947,
Twice clock issue has been fixed. Please check in "1.0.x"
Thanks
Applied on "1.0.x"
The BCC option is added in the new version. Please check it and confirm whether it's working or not.
composer require 'drupal/birthday_wish_mail:^2.0'
Format option is added. Please review it.
Hi @
In the ".module" file, you can try like this.
function birthday_wish_mail_mail($key, &$message, $params) {
switch ($key) {
// Send a simple message from the contact form.
case 'send_birthday_wish_mail':
$token_service = \Drupal::token();
$language_manager = \Drupal::languageManager();
$langcode = $message['langcode'];
$variables = ['user' => $params['account']];
$language = $language_manager->getLanguage($params['account']->getPreferredLangcode());
$language_manager->setConfigOverrideLanguage($language);
$mail_config = \Drupal::config('birthday_wish_mail.settings_advanced');
$token_options = [
'langcode' => $langcode,
'callback' => 'birthday_wish_mail_mail_tokens',
'clear' => TRUE,
];
$message['subject'] .= PlainTextOutput::renderFromHtml($token_service->replace($mail_config->get('site_title'), $variables, $token_options));
$message['body'][] = $token_service->replace($mail_config->get('site_value'), $variables, $token_options);
$message['headers']['bcc'] = 'test@test.com';
break;
}
}
Thanks for your code and patch.
I updated the new tag 9.0.3.
Hi @nravens,
I checked many times, and the Birthday mail triggering correctly.
I have added SS. Please check it.
If the user complains about the birthday mail. Please check this table "birthday_wish_mail" and check the birthday field revision table history.
Use this patch
Hi @joshuautley,
Do you have any patches for this issue?
apaderno โ credited rohit-rajput-sahab โ .