[php]
$country = get_query_var(‘country’);
global $wpdb;
$result = $wpdb->get_row( “SELECT * FROM countries WHERE slug = ‘”.$country.”‘”);
$countryName = $result->name;
$countryFlag = get_template_directory_uri() . ‘/images/country-flags/’.$result->flag;
$countryImage = get_template_directory_uri() . ‘/images/country-images/’.$result->image;
echo ‘<div class=”header-bg” style=”background-image: url(‘.$countryImage.’) !important”></div>’;
[/php]
[php]
$country = get_query_var(‘country’);
global $wpdb;
$result = $wpdb->get_row( “SELECT * FROM countries WHERE slug = ‘”.$country.”‘”);
$countryName = $result->name;
$countryFlag = get_template_directory_uri() . ‘/images/country-flags/’.$result->flag;
$countryImage = $result->image;
echo ‘<h2 class=”vc_custom_heading title-common” style=”text-align: left;”>Travelling to ‘. $countryName. ‘?<br>
Need Vaccinations or Antimalarials?</h2>’;
echo ‘<div class=”wpb_single_image wpb_content_element vc_align_left country-flag”>
<figure class=”wpb_wrapper vc_figure”>
<div class=”vc_single_image-wrapper vc_box_border_grey”><img class=”vc_single_image-img ” title=”country-flag” src=”‘.$countryFlag.'” alt=”country-flag” /></div></figure>
</div>’;
[/php]
Book your vaccinations and have them administered at your local Pharmacy.
We have Travel Clinics within our member pharmacies across the UK.
Book now and prepare for
your journey today!
UK Registered Doctors and Pharmacies
All Clinics Registered
Full range of Vaccines for the destination you are visiting.
Select a Travel Clinic close to you
Travel Clinic FAQ’s
We can provide all the essential Travel Vaccinations and medication to keep you safe when you are travelling. Enter your destination or select a region you are travelling to using our interactive map. You will then be provided with the recommended vaccinations for your trip.
You can enter your postcode and select your nearest GPS Vaccination Clinic.
Yes, our service will advise you of any required antimalarials you will need during your trip along with the Vaccination recommendations. You can then select the options that are applicable to your trip.
One of our Doctors will receive your completed online assessment form to review. If the Doctor has any further questions they may contact you. If approved, a prescription will be sent electronically to your selected Travel Clinic within one of our member pharmacies. The Pharmacy will then contact you when dispensing any selected antimalarials and/or arranging for your vaccinations to be administered.
Yes, we provide up to date information from Fit For Travel. This information is provided specifically for the region of the country you are visiting.
No, you will only be charged if following the Doctors review of your online assessment the request is approved.
How it Works
1
2
Protection and Vaccination
Recommendations
3
4
consultation. Our Doctors will assess your
suitability for treatment
5
[php]
$country = get_query_var(‘country’);
global $wpdb;
$result = $wpdb->get_row( “SELECT * FROM countries WHERE slug = ‘”.$country.”‘”);
$countyName = $result->name;
$countryCode = $result->code;
echo ‘<h2 style=”text-align: left” class=”vc_custom_heading title-common”>Latest travel advice for ‘.$countyName.’:</h2>’;
$url = “https://fftapi.scot.nhs.uk/1/get/$countryCode”;
$args = array(
‘headers’ => array(
‘Authorization’ => ‘Basic ‘ . base64_encode(gpservice . ‘:’ . fftServ1c3)
)
);
$response = wp_remote_get( $url, $args );
$body = wp_remote_retrieve_body( $response );
$data = json_decode($body);
echo ‘<p>’.$data->Description.'</p>’;
echo $data->GeneralInformation;
echo $data->ExtraContent;
echo $data->YellowFever;
[/php]