Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Was the noreferrer tag removed with the new wordpress update 4.8 ?
<a href="https://www.buildersociety.com/" target="_blank" rel="noopener">Builder Society</a>
You should be able to do that with @Ryuzaki's code snippet - I use it myself.To the experts here on Builder Society - Should I remove the code for the TinyMce in the functions.php , (that disabled the adding of the noopener and the noreferrer tags) since with the new wordpress update 4.8 the noreferrer tag does not get added to links and hence will not affect affiliate link tracking?
// Stop TinyMCE from adding "noopener noreferrer" to target="_blank" links.
Wordpress is adding this but it interferes with a lot of affiliate program TOS agreements, like Amazon.
Code:// Stop TinyMCE from adding "noopener noreferrer" to external links with target="blank" add_filter('tiny_mce_before_init','tinymce_allow_unsafe_link_target'); function tinymce_allow_unsafe_link_target( $mceInit ) { $mceInit['allow_unsafe_link_target']=true; return $mceInit; }
To the experts here on Builder Society - Should I remove the code for the TinyMce in the functions.php , (that disabled the adding of the noopener and the noreferrer tags) since with the new wordpress update 4.8 the noreferrer tag does not get added to links and hence will not affect affiliate link tracking?