British Foreign Office Travel Advice

Displays the latest information via ajax or as the page loads, from the British Foreign Office on security and travel to other countries.

Author:Matt Hawthorne (profile at wordpress.org)
WordPress version required:3.8
WordPress version tested:4.0.38
Plugin version:1.0
Added to WordPress repository:22-10-2014
Last updated:24-10-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:20
Rated by:1
Plugin URI:http://utopiamultimedia.com/wordpress-plugins...
Total downloads:959
plugin download
Click to start download

British Foreign Office data includes information on safety and security, terrorism, local laws and customs, entry requirements, health and other aspects of travel for countries across the globe.

You can display the data in two ways:

  • Via a button which pulls through the data via ajax

  • Loads the data directly while loading the page

Directions

1) Install the plugin

2) Create a custom meta tag called ‘geo_country’ to any post, adding the country you want information for. A full list of countries is available from the BFO website.

3) There are two shortcodes you can use:
[fo-advice] – gets info as the page loads (displayed in an accordion type box)

[fo-advice-button] creates a button which when clicked, will retrieve and display the data via ajax.

Demos

Info loading as the page loads

Button and ajax loading

Suggestions

Create a text widget with a title called ‘BFO Advice’
Drop the shortcode in the text area.

or

Drop the code below into your widgets area of your code. It will only display a widget if the meta tag ‘geo_country’ is detected.

<?php
/* look for a meta field called geo_country specific to the post displayed and if it's there, display a widget*/
$themeta = get_post_meta($pageID);
if (array_key_exists("geo_country",$themeta))
{
utopia_get_foreign_office();
};
function utopia_get_foreign_office(){
echo '<div class="widget-container">';
echo '<h3 class="widget-title">Foreign Office Advice</h3>';
echo do_shortcode('');
echo '</div>';
};
?>

The way the information is formatted into elements is near the bottom of index.php (line 207 onwards). You can add a title by unremarking line 208. We’ve deliberately left the code with lots of space and relatively easy to understand so you can reformat how you see fit.

Beware! The elements and their classes / IDs are tied in to the accordion. For the accordion reference and options see www.snyderplace.com

Donate

You can always donate as a way of saying thanks!

Additional Info

Thanks to www.snyderplace.com for the JQuery Accordion.


ChangeLog