How to truncate the node title in Drupal?
Option 1:
We can handle it in hook_preprocess_node() in THEMENAME.theme
Print the variable in the node.html.twig file or your custom node twig file.
Option 2:
We can handle it directly via twig file
Option 1:
We can handle it in hook_preprocess_node() in THEMENAME.theme
Print the variable in the node.html.twig file or your custom node twig file.
Option 2:
We can handle it directly via twig file
Change path.alias_manager in to path_alias.manager in D9, That's it.
$current_path = \Drupal::service('path.current')->getPath();
$result = \Drupal::service('path_alias.manager')->getAliasByPath($current_path);
It's a simple 3 line code to achieve adding the body class based on the URL. Sometimes, we need to overwrite the existing styles based on the page. so, we need the page specific class.
Go to your THEME_NAME.theme file & add this below HOOK.
/**
* Implements hook_preprocess_html().
*/
function THEME_NAME_preprocess_html(&$variables) {
// Get the current path
$current_path = \Drupal::service('path.current')->getPath();
$internal_path = \Drupal::service('path_alias.manager')->getAliasByPath($current_path);
// Assign it to body class
$variables['attributes']['class'][] = str_replace("/", "", $internal_path);
}
Make it simple :)
Problem:
When you try to import configuration using "drush cim", you will get the message like this "[error] Drupal\Core\Config\ConfigImporterException: There were errors validating the config synchronization.
Site UUID in source storage does not match the target storage."
The Configuration files only allow sync between same site to avoid issues importing configuration from one site to another.
We can import configuration from other websites into yours with Fresh drupal installation. Each Drupal installation uuid is unique.
Solution:
Install the fresh Drupal version. then follow the below steps.
Simplenews block AJAX submission - Drupal 8 / 9
Simplenews module:
URL: https://www.drupal.org/project/simplenews
Steps:
1. Enable the simplenews module
2. Change the form id (if you want) - Go to /admin/structure/block/manage/simplenewssubscription
3. Assign it to one region
4. Implement the custom code with your custom module.
That's it simple.
Get spam emails from your contact forms?
Mostly you can find the same words in those spam emails, in this module you can set spam words for each fields.
Example for words that common in spam emails: “Eric Jones”, “SEO Ranking”, “Digital marketing”, "SEO" ...etc
I'm sure if you have a contact form, you have already gotten one of his/her/it spam.
We are receiving daily SPAM from Eric Jones (probably a fake name) from talkwithwebvisitor.com and if you are reading this, probably you are, too. there are still loads of annoying emails like that which get through. Eric Jones SPAM from talkwithwebvisitor.com
try to Avoid these kind of spam keywords on Drupal webform, Use this module to block using the keywords.
Webform Spam Words Drupal (WSW)
Module: https://www.drupal.org/project/webform_spam_words
Avoid Spam words on Webform Drupal
It's a simple module for webform validation with spam keywords. Administrators can provide the access to add spam keywords, Error message and field name.
Installation
Usage Steps
Use spaceless tag to avoids extra whitespace between HTML to avoid browser rendering quicks
If you want to optimize the size of the generated HTML content output in Drupal twig files use {% spaceless %} tag.
{% spaceless %}
<div>
<strong>ThirstySix</strong>
</div>
{% endspaceless %}
{# output will be <div><strong>ThirstySix</strong></div> #}
Recent comments
$host =…