So, I have a Author archive template designed and assign correctly.
I have a query loop in the page with the authors. See here.
I had to use a custom php code in order to be able to link to the archive pages through this query loop:
<?php
function get_post_author_url($id = null){
global $post;
$queried_post = $post;
if($id){
$queried_post = get_post($id);
}
return get_author_posts_url($queried_post->post_author);
}
It was working perfectly fine, until it just stopped working. No clue what happened.
Also had the author archive linked inside the posts, and that also stopped working for some weird reason.
Unfortunately, I cannot reproduce the issue. I don’t understand why you need the custom code, because actually the author URL is easy to reach with dynamic data tags:
{site_url}/author/{author_meta:nickname}
If that doesn’t work either, would you be so kind as to send temporary login credentials and a link to this thread to help@bricksbuilder.io using the email address you used during the purchase?