teraßyte Posted December 5, 2022 Share Posted December 5, 2022 This is the code handling the topics hover preview for forum view in applications/forums/dev/html/front/forums/topicRow.phtml on line 115: {{if $row->tableHoverUrl and $row->canView()}} data-ipsHover data-ipsHover-target='{$row->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5'{{endif}} And this instead is the code for the Topic Feed widget template in applications/forums/dev/html/front/global/row.phtml on line 45: {{if $topic->canView()}}data-ipsHover data-ipsHover-target='{$topic->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5' {{endif}} The widget is missing the $topic->tableHoverUrl part of the check and should be updated to: {{if $topic->tableHoverUrl and $topic->canView()}}data-ipsHover data-ipsHover-target='{$topic->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5' {{endif}} Afrodude and SeNioR- 2 Link to comment Share on other sites More sharing options...
Solution Daniel F Posted December 13, 2022 Solution Share Posted December 13, 2022 I have fixed this for an upcoming release SeNioR- 1 Link to comment Share on other sites More sharing options...
Afrodude Posted March 26, 2023 Share Posted March 26, 2023 On 12/13/2022 at 2:35 PM, Daniel F said: I have fixed this for an upcoming release @Daniel F it seems this is happening to "Similar Content" widget too. Can you check it out please? Thanks Link to comment Share on other sites More sharing options...
teraßyte Posted March 27, 2023 Author Share Posted March 27, 2023 I made a separate bug report for it: Link to comment Share on other sites More sharing options...
Recommended Posts