Search Divi Post Extended Documentation

Search for answers or browse our knowledge base.

< All Topics
Print

How to disable clickable tags and categories in Post Extended

To disable the clickable functionality for tags and categories in blog posts, you can add the following CSS code to your website:

.single-post .post-meta .el-post-tags a, .single-post .post-meta .el-post-categories a
{
  pointer-events: none;
  cursor: default;
}

Steps to Add CSS:

  1. Go to your WordPress Admin Dashboard.
  2. Navigate to Divi > Theme Options > Custom CSS.
  3. Paste the above code into the Custom CSS box.
  4. Save the changes.
Table of Contents