I’m having a problem. If you click on the name of an author or authors page
http://www.nomesito.com/author/nameauthor I get redirected to the home page. How can I avoid it? I did not set anything like this.
Thanks for the help
Problema di redirec verso home page quando vai in pagina autore.
Sto riscontrando un problema. Se clicco sul nome di un autore o pagina autori
http://www.nomesito.com/author/nameauthor vengo reindirizzato alla home page. Come posso evitarlo? Non ho impostato nulla di simile.
Grazie dell’aiuto
My website is this http://www.rubricanews.com
If you try clicking on the name of an author is redirected on the home page.
here is example http://rubricanews.com/author/ely/
I never entered this function, for me it is very important to have a page for each author
Il mio sito web è questo http://www.rubricanews.com
Se prova a cliccare su il nome di un autore viene reindirizzato nella home page.
ecco esempio http://rubricanews.com/author/ely/
Io non ho mai inserito questa funzione, per me è molto importante avere la pagina per ogni autore
Hm..
might be plugin conflict, permalinks issue; or double check the author “name” has no tildes or language based characters in it … check the “user” settings and look at the username, display name, and check for odd characters, try changing the “display name” …. try resaving the username/account.
Make sure the social and ad systems are not causing redirect issues, which I’ve seen before due to too many things loading on page causing conflict (check F12/console in Chrome, for example …).
Check your htaccess file to make sure there are no leftover “rules” from a prior theme causing issues or redirects.
Not sure any of that will help, but place to start! 🙂
Check your Yoast SEO plugin, if enabled, to see if you “disabled author pages” in sitemap or similar.
Even in the latest version of WordPress by Yoast must go in the editor in the file
As a temporary solution remove the disable option-author of the archive function redirects in /plugins/wordpress-seo/frontend/class-frontend.php. Leaving it like this:function archive_redirect() {
global $wp_query;
$options = get_wpseo_options();
if ( ( isset( $options['disable-date'] ) && $options['disable-date'] && $wp_query->is_date ) || ( isset( $options['disable-post_formats'] ) && $options['disable-post_formats'] && $wp_query->is_tax( 'post_format' ) ) ) {
wp_redirect( get_bloginfo( 'url' ), 301 );
exit;
}
}
Hi,
Yoast also has this option to disabled the author achieves: http://screencast.com/t/rKPUYVBAb which when enabled redirect the user to the homepage so you could make sure that this option is unchecked then test this again.
Thanks