I am trying to: I am using Toolset Views to display search results for the Events and Articles post types. Everything works fine except for I need to hardcode a custom URL for the authors of the Articles in the search results. We have a custom post type of Employees which have a specific page template that we want the authors of articles to link to. The issue is that Views does not allow me to format the taxonomy term url within the post search result loop because that loop already exists. The other thing to keep in mind is that one Article can have many News Authors (taxonomy) attached to them so we need to make sure that they can have their own link to that specific employees page. This is currently what I have in the loop output editor:
I had some trouble understanding exactly how you have this set up from your question, so I went into your site to take a look.
While I was in there I tried what I thought the solution should be, and I think I now have it how you want it, so let me explain what I did.
You had a second View called Authors to output the links in the required format. It didn't work, and you weren't using it anywhere in any case.
The View was querying the same post types as your main View (Events and Articles), but the purpose of the View is to list the News Author taxonomy terms attached to the posts in your main View. So I changed the View so that it queries the News Author taxonomy and retrieves the terms attached to the "current" post. I formatted the output section as required to produce the list of author links to their employee page.
I then edited your main View and inserted this View into the Loop Output section in place of the wpv-post-taxonomy shortcodes, which generate the undesired link.
If you check what I've done you can hopefully understand how it is working.
There are a couple of provisos.
The nested View is output inside a div, which is a block-level element and means that the list of authors is pushed down to the next line. I added some custom CSS in the CSS editor for the View to fix that, but, it's not working because you have a JavaScript error on the page which is preventing the custom CSS being injected. The error relates to a carousel that doesn't exist on the page. Fixing that will allow the CSS-fix to take effect.
Also, there is a niggling problem with whitespace that I cannot resolve. Where there are multiple authors they are generated as a list, and were separated by commas. But there is a space before the comma that I cannot get rid of, and so I compromised by using an &, where the preceding space is expected, I hope that's okay.