On Joomla 4.3 - Create some tags and add them to an article. Set the article / menu item to show the tags.
Tags should be shown on the article page with a link to the view of a listing of all items tag have the clicked tag.
The links on the tags all have this href: /root. Clicking on it shows a 404 page error.
Joomla 4.3
PHP 8.1.17
I think Joomla 4.3 had some changes to the tags routing?
I believe we did not have this issue on the previous version.
Labels |
Added:
No Code Attached Yet
|
Labels |
Added:
bug
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2023-04-21 15:56:37 |
Closed_By | ⇒ | jjnxpct |
This turns out to caused by an 3rd party extension (Route66) that infuences the URLs of the website. I will contact the developer about this.
In the layout file layouts/joomla/content/tags,php the URL is created with this code:
echo Route::_(RouteHelper::getComponentTagRoute($tag->tag_id . ':' . $tag->alias, $tag->language));
I checked the values of $tag->tag_id, $tag->alias and $tag->language. I believe they were all there,
So maybe something wrong with the routehelper?