help to better help you:
Please: add always Joomla / JEM version and details to your posts, so we can try to reproduce your issue!
"Without type"
- TSV-Webmaster
-
Topic Author
- Offline
- New Member
-
- Posts: 1
- Thanks: 0
"Without type"
4 weeks 1 day ago
Hallo, ich erstelle erstmals eine Webseite.
bei ider Terminübersicht erscheint immer der Text „Withoue Type“ siehe auch:
Wo kann ich das ausschalten?
Bitte so einfach wie möglich beschreiben - hab es nicht so mit den Fachausdrücken!
Joomla-Version ist Joomla! 6.1.2 Stable
JEM 5.0.0
Danke Schon mal vorab
bei ider Terminübersicht erscheint immer der Text „Withoue Type“ siehe auch:
Wo kann ich das ausschalten?
Bitte so einfach wie möglich beschreiben - hab es nicht so mit den Fachausdrücken!
Joomla-Version ist Joomla! 6.1.2 Stable
JEM 5.0.0
Danke Schon mal vorab
Please Log in or Create an account to join the conversation.
Re: "Without type"
4 weeks 1 day ago - 4 weeks 1 day ago
[sorry, dieses Forum ist englisch]
mit dieser Version sind viele neue Möglichkeiten dazu gekommen.
Vielleicht fast zu viele? Du bringst sie im Editorteil nicht weg.
Hast Du schon die deutsche Übersetzung? Das hilft.
Aber kurz: Wenn du keinen Typ brauchst, lass es einfach, es erscheint dann nichts für die Leser
Vorgeschrieben ist nur das Minimum: was wann wo!
Jojo
mit dieser Version sind viele neue Möglichkeiten dazu gekommen.
Vielleicht fast zu viele? Du bringst sie im Editorteil nicht weg.
Hast Du schon die deutsche Übersetzung? Das hilft.
Aber kurz: Wenn du keinen Typ brauchst, lass es einfach, es erscheint dann nichts für die Leser
Vorgeschrieben ist nur das Minimum: was wann wo!
Jojo
Last edit: 4 weeks 1 day ago by jojo12.
Please Log in or Create an account to join the conversation.
Re: "Without type"
4 weeks 8 hours ago - 4 weeks 8 hours ago
I'm not sure but if the concern is only the visible “Without type” heading, the following template override can be used as a temporary workaround.
1. Log in to the Joomla administrator.
2. Go to:
System → Site Templates → Site Template Styles
3. Open the active site template.
4. Select the tab:
Create Overrides
5. Under Components, select:
com_jem → categories
Joomla should create the override files in:
/templates/YOUR_TEMPLATE/html/com_jem/categories/
Depending on the selected JEM layout, check one or both of these files:
default.php
responsive/default.php
6. Search for:
Text::_('COM_JEM_TYPECATEGORIES_UNASSIGNED')
It should be part of a section similar to this:
return '<div class="jem-type-section-header"><h2 class="jem-type-section-title">'
. Text::_('COM_JEM_TYPECATEGORIES_UNASSIGNED')
. '</h2></div>';
7. Replace that return statement with:
return '';
For example:
$renderTypeSectionHeader = function ($type) use ($buildTypeBadge) {
if ($type) {
return '<div class="jem-type-section-header"><h2 class="jem-type-section-title">'
. $buildTypeBadge($type)
. '</h2></div>';
}
return '';
};
8. Save the override and clear the Joomla and browser cache.
This removes the complete “Without type” heading, including its empty heading container and possible spacing.
Important:
This is only a local workaround. It should not be applied directly to the JEM component files, because those changes would be overwritten by a JEM update.
1. Log in to the Joomla administrator.
2. Go to:
System → Site Templates → Site Template Styles
3. Open the active site template.
4. Select the tab:
Create Overrides
5. Under Components, select:
com_jem → categories
Joomla should create the override files in:
/templates/YOUR_TEMPLATE/html/com_jem/categories/
Depending on the selected JEM layout, check one or both of these files:
default.php
responsive/default.php
6. Search for:
Text::_('COM_JEM_TYPECATEGORIES_UNASSIGNED')
It should be part of a section similar to this:
return '<div class="jem-type-section-header"><h2 class="jem-type-section-title">'
. Text::_('COM_JEM_TYPECATEGORIES_UNASSIGNED')
. '</h2></div>';
7. Replace that return statement with:
return '';
For example:
$renderTypeSectionHeader = function ($type) use ($buildTypeBadge) {
if ($type) {
return '<div class="jem-type-section-header"><h2 class="jem-type-section-title">'
. $buildTypeBadge($type)
. '</h2></div>';
}
return '';
};
8. Save the override and clear the Joomla and browser cache.
This removes the complete “Without type” heading, including its empty heading container and possible spacing.
Important:
This is only a local workaround. It should not be applied directly to the JEM component files, because those changes would be overwritten by a JEM update.
JEM 5.01 (beta) + Joomla 6
Last edit: 4 weeks 8 hours ago by Bluefox.
Please Log in or Create an account to join the conversation.
Re: "Without type"
2 weeks 6 days ago
Thank you for reporting this.
The unused $test variable and the commented debugging example referencing com_mywalks were remnants from the initial implementation of the menu-less router rule. They were not executed and did not affect JEM routing, but they were confusing and did not belong in the JEM source code.
These remnants have now been removed. The active Itemid normalization and the existing URL parsing and building behavior have been preserved. We have also added a defensive check for empty URL segments and regression coverage to prevent this debugging scaffolding from being introduced again.
Fix in this commit:
github.com/jemproject/JEM-Project/commit/1e82bf8a245b816e5851d819942c66dc2d62b16c
Check it and tell me if it works.
The unused $test variable and the commented debugging example referencing com_mywalks were remnants from the initial implementation of the menu-less router rule. They were not executed and did not affect JEM routing, but they were confusing and did not belong in the JEM source code.
These remnants have now been removed. The active Itemid normalization and the existing URL parsing and building behavior have been preserved. We have also added a defensive check for empty URL segments and regression coverage to prevent this debugging scaffolding from being introduced again.
Fix in this commit:
github.com/jemproject/JEM-Project/commit/1e82bf8a245b816e5851d819942c66dc2d62b16c
Check it and tell me if it works.
Please Log in or Create an account to join the conversation.
Re: "Without type"
2 weeks 5 days ago
Today, there is a new beta 2 for JEM 5.0.1, you can download from:
www.joomlaeventmanager.net/download/beta-versions
Many issues fixed. See the changelog: www.joomlaeventmanager.net/project/changelog-jem
Tell me if it works and resolve the issue.
www.joomlaeventmanager.net/download/beta-versions
Many issues fixed. See the changelog: www.joomlaeventmanager.net/project/changelog-jem
Tell me if it works and resolve the issue.
Please Log in or Create an account to join the conversation.
Time to create page: 1.131 seconds