Remove Link from any text or element with css

WordPress CSS July 23, 2026
  1. Find unique class/selctor/id of that link
2- Apply this css (Eg. Found class = disabled-link )
.disabled-link{
        cursor: default;
        pointer-events: none;
        text-decoration: none;
    }

Hurrah – Done