I would like to say thank you for posting this. I ran into the same problem and this was a godsend. 🙂
Thank you all for your quick response, I shall try some of these solutions, and if all else fails, contact the vendor.
No, using notepad++ I can see where all the tags end and they’re all correct.
If it helps, this is the first chunk of code.
<?php get_header();
$author = get_the_title();
function parseToStaffPage($name) {
$name = strtolower(str_replace(" ","-",$name)); //Switches the space to a hyphen and lowercases everything.
return "staff/".$name; //Adds the rest of the URL on
}
?>