Changes between Initial Version and Version 2 of Ticket #58765
- Timestamp:
- 07/08/2023 03:25:45 PM (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58765
- Property Keywords has-patch added; changes-requested removed
-
Property
Version
changed from
6.2.2
to5.8
-
Ticket #58765 – Description
initial v2 9 9 If I do it, I get the following error message in the browser Console: 10 10 “This document requires TrustedHTML assignment” 11 because “innerHTML” is used in this script: the_block_template_skip_link()11 because “innerHTML” is used in this script: `the_block_template_skip_link()` 12 12 13 13 Impact … … 17 17 18 18 I have done that on my own homepage: 19 remove_action( 'wp_footer', 'the_block_template_skip_link' ); 19 `remove_action( 'wp_footer', 'the_block_template_skip_link' );` 20 20 21 and then I have added the skiplink again, replacing "innerHTML" with "innerT EXT" in the script.21 and then I have added the skiplink again, replacing "innerHTML" with "innerText" in the script. 22 22 23 23 The code works (used theme: Twenty Twenty-Three).