Certain features of this plugin require WordPress theme support. If a theme doesn't support this additional functionality, it will be unavailable or won't function properly. The additional functionality is listed below along with information about adding support to a theme.

For more information see WordPress Codex: Theme Features

Features

fullscreen-page-template

The fullscreen-page-template feature is used to show fullscreen content such as fullscreen videos and supersized image galleries. Unless already available, the theme should define an additional page template that allows for the fullscreen content to take up the entire background.

The following features may have issues unless the theme adds this support:
- [intense_fullscreen_video] shortcode - entire shortcode
- [intense_gallery] shortcode - Supersized gallery type

Example Theme Page Template:

<?php
/*
Template Name: Fullscreen
*/

global $data;

get_header();
?>  

<?php while ( have_posts() ) : the_post(); ?>

<?php the_content(); ?>

<?php endwhile; // end of the loop. ?>

<?php get_footer(); ?>