Bug: Link Categories Settings : Use Div Class or Heading tag ..
-
For the developer and anyone else who runs into the same problem:
When choosing to use a “heading tag” instead of a “div class” around category names, the output for a heading tag is incorrect (enters the heading tag as though it were a div class).
FIX
In link-library.php:
## REPLACE
ON LINE 1111
$catlink = '<div class="'. $catnameoutput . '">';
ON LINE 1128
$catlink .= '</div>';
## WITH
ON LINE 1111
$catlink = '<'. $catnameoutput . '>';
ON LINE 1128
$catlink .= '</'. $catnameoutput . '>';
- The topic ‘Bug: Link Categories Settings : Use Div Class or Heading tag ..’ is closed to new replies.