My problem was that element-kit widgets were created with the nofollow tag by default. To make sure the internal links in the posts are working properly, I added the following code inside the function.php file and my problem was solved thx.
- /** Filter NoFollow
*/
function remove_nofollow($string) {
return str_replace(‘ rel=”nofollow”‘, ”, $string);
}
add_filter(‘the_content’, ‘remove_nofollow’);