sadams101 Posted November 7, 2023 Posted November 7, 2023 After upgrading my site from 4.7.13 to 4.7.14, my Twitter/X logo is now showing my Facebook logo--so there are two Facebook logos, one for Facebook and the other for Twitter/X. I noticed there were some template changes with this update, including this one: core → front → global → siteSocialProfiles {{if \IPS\Settings::i()->site_social_profiles AND $links = json_decode( \IPS\Settings::i()->site_social_profiles, TRUE ) AND \count( $links )}} {{foreach $links as $profile}} <a class='cUserNav_icon'> {{if $profile['value'] == 'x'}} <a href='{$profile['key']}' target='_blank' class='cShareLink cShareLink_x' rel='noopener noreferrer'><img src="{resource="logos/x.svg" app="core" location="global"}" width='13' height='12' style='vertical-align: middle'></a> {{else}} <a href='{$profile['key']}' target='_blank' class='cShareLink cShareLink_{$profile['value']}' rel='noopener noreferrer'><i class='fa fa-{$profile['value']}'></i></a> {{endif}} </li> {{endforeach}} {{endif}} Any idea on how I can fix this?
sadams101 Posted November 7, 2023 Author Posted November 7, 2023 Also, with the change in this template there were Accessibility errors introduced in Page Speed Insights. My score dropped from 90 to 85 with the new template due to these issue:
Solution teraßyte Posted November 7, 2023 Solution Posted November 7, 2023 The missing <li> elements issue is something I reported a few days ago: Maxxius, sadams101 and Meddysong 2 1
Ehren Posted November 7, 2023 Posted November 7, 2023 Thanks, this has been fixed internally and will be pushed in a future update 🙂 Marc 1
Recommended Posts