Unfortunately there is no built-in way to do this in the plugin. However if you know a PHP developer that can help you make a tweak to your theme or are comfortable making a change to your theme’s functions.php file yourself, it is quite easy to use MyBookTable’s customization functions to change this by adding the following code to your theme:
function mytheme_override_archive_title($output) {
if(is_tax(‘mbt_genre’)) {
$output = get_queried_object()->name;
}
return $output;
}
add_filter(‘mbt_get_book_archive_title’, ‘mytheme_override_archive_title’);
~Tim