drupal-custom-text-format

How to Add a Custom Text Format Without CKEditor in Drupal

In Drupal, Text Formats control how user-entered content is processed and displayed. They define which HTML tags are allowed, what filters run (like HTML filtering or link conversion), and who can use them. Creating a custom text format helps you balance flexibility, consistency, and security. This guide explains step by step how to create a […]

drupal-contact page

How To Create Contact Page in Drupal

Drupal 8 has a core module called Contact. Using this core module we can create a site-wide contact form very easily and quickly. Site administrator will receive message sent via this contact form via e-mail. Requirements None. We will use core module and features. Step 1: Enable Contact Module Contact module is enabled by default. […]

How To Create Blog in Drupal

Drupal 7 had a core module called Blog. But this blog module has been dropped from core in Drupal 8. Many Drupal 8 / 9 / 10 / 11 users get confused about how to create a blog like in Drupal 7 or like WordPress. Creating a blog in Drupal is very easy. Follow below […]

Drupal – Add Current Page in Breadcrumb

Breadcrumb navigation is a core feature in Drupal 8. But by default, breadcrumb do not show current page. In this tutorial we will add current page in the breadcrumb navigation in our theme. This can be achieved by editing our theme file THEME-NAME.theme Step 1 Open THEME-NAME.theme file of your theme in any text editor. […]

Drupal Error – Fatal error Class ‘PDO’ not found

Your drupal powered website may show error message like PDO not found. The error message may be something like this: Fatal error: Class ‘PDO’ not found in /home/username/public_html/includes/database/database.inc on line 184 Solution Create a file php.ini in public_html folder Add following code: extension=pdo.so extension=pdo_mysql.so Save php.ini file Done!!