drupal|April 25, 2020|1 min read

Drupal 8 - How to hide help link About text formats and text format guidelines

TL;DR

Disable the text format help links in Drupal 8 by adjusting the field widget settings to hide the format selection and guidelines from end users.

Drupal 8 - How to hide help link About text formats and text format guidelines

Problem

In drupal textarea field, it was always a pain to see the two links:

  • Text format showing list of available format, even if user is allowed to use one format only
  • And a link of About Text formats

Drupal text format

Solution

Drupal 8 provided an easy but hidden way to hide this. Do following steps:

  • Goto your content type
  • Click on Manage Form Display
  • For example, body is the field
  • Click on settings icon button on right hand side of body field
  • A small form will open up

Drupal text format

  • Check on option - Hide the help link About text formats
  • Check on option - Hide text format guidelines
  • Save the content type
  • Clear cache and open the form

See the final form

Drupal text format

Perfect Solution

Note: You did hide the two unwanted options in the form. But, you can still see the drop down of formats. This should be fine for most of the users. But, I did not want this. I did not want to confuse my users.

Install module Allowed Formats Do following steps:

  • Goto your content type
  • Edit the field, example body field
  • In edit form, you will see a section of Allowed Formats

Drupal text format

  • Select your desired format. I selected Full Html
  • Save the form
  • Open your form, and you will see only your text area.

Drupal text format

Hope it helps.

Related Posts

Drupal - Using Field Groups for Visually Separating multiple field set (No Coding Required)

Drupal - Using Field Groups for Visually Separating multiple field set (No Coding Required)

Introduction You are having a form having multiple fields. When you render a…

Drupal 8 - Advanced usage of Paragraphs module - Add nested set of fields and single Add more button (No Coding Required)

Drupal 8 - Advanced usage of Paragraphs module - Add nested set of fields and single Add more button (No Coding Required)

Introduction In my previous article, I explained How to have set of fields and…

Drupal - How to add multiple form fields with a single button click (No Coding Required)

Drupal - How to add multiple form fields with a single button click (No Coding Required)

Introduction Drupal is an awesome CMS. Drupal content type form, allows you to…

Drupal 8 - How to Theme Form and its Fields with reordering fields

Drupal 8 - How to Theme Form and its Fields with reordering fields

Introduction In this post, we will see how to theme form and its fields…

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Introduction I needed a report page, where I wanted to have some information…

Drupal: How to detect country and redirect to country specific website by using Cloudflare

Drupal: How to detect country and redirect to country specific website by using Cloudflare

Introduction Assume you have a drupal website and using cloudflare. You are…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…