Needs review
Project:
Pleroma
Version:
5.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
3 Jul 2007 at 19:25 UTC
Updated:
23 Oct 2022 at 12:25 UTC
Drupal claims if you put "" as your block title, no title will be displayed, but that doesn't seem to work with this theme. I made the following change to enable the feature:
In box.tpl.php:
change
if ($title) {
print $title; }
to
<?php if ($title && $title != "<none>") { print $title; }