Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
teraßyte Posted December 5, 2022 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
Solution Daniel F Posted December 13, 2022 Solution Posted December 13, 2022 I have fixed this for an upcoming release SeNioR- 1
Afrodude Posted March 26, 2023 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
Recommended Posts