Project

General

Profile

Actions

Task #95245

open

The content’s language is always shown in the page module even if this information isn’t useful

Added by Rachel Foucard over 2 years ago. Updated about 1 month ago.

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:

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

languages.JPG (13.4 KB) languages.JPG Rachel Foucard, 2021-09-16 10:28

Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Task #94629: Simplify and optimize the readability of the page module interfaceClosed2021-07-24

Actions
Related to TYPO3 Core - Task #95302: Remove language information from each CE in Page ModuleClosedBenni Mack2021-09-21

Actions
Actions #1

Updated by Rachel Foucard over 2 years ago

  • Related to Task #94629: Simplify and optimize the readability of the page module interface added
Actions #2

Updated by Jonas Eberle over 2 years ago

  • Related to Task #95302: Remove language information from each CE in Page Module added
Actions #3

Updated by Simon Schaufelberger about 2 years ago

  • Description updated (diff)
Actions #4

Updated by Ayke Halder about 1 month 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;
}

See docs: https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/Configuration/Typo3ConfVars/BE.html#typo3ConfVars_be_stylesheets

Actions

Also available in: Atom PDF