On all sites that use image maps (not just via this plugin) there needs to be a non-graphical way to access the same information. See the “Countries” page and the drop-down selector at https://arbitrationinafrica.com/
You will need to create a template called ‘single-imagemap_area.php’ in your theme folder, something like:
<?php
/**
* The Template for displaying imagemap_area posts.
* @package big-brother
*/
get_header(); ?>
<?php if( function_exists( 'big_brother_the_breadcrumbs' ) ) : ?>
<div class="breadcrumbs">
<?php big_brother_the_breadcrumbs(); ?>
</div>
<?php endif; ?>
<div class="primary content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<div class="article-wrapper">
<?php get_template_part( 'content', 'single' ); ?>
</div>
<?php // big_brother_content_nav( 'nav-below' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I am using a theme called “Big Brother” – your template will need to be changed to work with your theme (use your theme’s ‘single.php’ as a starting point).
I *think* I had to make another tweak to make those pages displayable… (perhaps in response to some change in the plugin?)
The drop-down selector was created with the “Shortcodes UI” plugin.