Actions
Task #95245
openEpic #98292: [UX] - Keep a fresh look and feel
The content’s language is always shown in the page module even if this information isn’t useful
Status:
New
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2021-09-16
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:
On Location Sprint
Description
The language flag and title are always shown even if the contents are already in a language context, or even if the website doesn’t have translation. We propose to remove this useless information from the content header and the unnecessary js relative to this html should be removed as well. Instead, when a content has the language -1 (All), this information should be displayed in the content footer. Instead of the language, the content elements CType title is always shown beside the CType icon.
Files
Updated by Rachel Foucard about 3 years ago
- Related to Task #94629: Simplify and optimize the readability of the page module interface added
Updated by Jonas Eberle about 3 years ago
- Related to Task #95302: Remove language information from each CE in Page Module added
Updated by Ayke Halder 8 months ago
For single language TYPO3 instances I always use this quick fix.
EXT:my_extension/ext_localconf.php
:
$GLOBALS['TYPO3_CONF_VARS']['BE']['stylesheets']['my_extension'] = 'EXT:my_extension/Resources/Public/Backend/Styles/Fix/';
EXT:my_extension/Resources/Public/Backend/Styles/Fix/LanguageFlagRemoval.css
:
.t3-page-ce .t3-page-ce-header .t3js-flag,
.t3-page-ce .t3-page-ce-header .t3js-language-title,
.recordlist .table > thead > tr > th.col-localizationa,
.recordlist .table > tbody > tr > td.col-localizationa,
.recordlist .table > thead > tr > th.col-localizationb,
.recordlist .table > tbody > tr > td.col-localizationb {
display: none;
}
Updated by Riccardo De Contardi 5 months ago
- Sprint Focus set to On Location Sprint
Actions