Taupas
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Senses Lite] Banner caption box adds block of black aboveDone, thanks again!
Forum: Themes and Templates
In reply to: [Senses Lite] Banner caption box adds block of black aboveThat fixed it – thank you so much! And thank you, too, for your super fast reply! I’m very grateful. 🙂
Sorry, accidental post.
Just posting the solution I eventually worked out, in case it helps anyone else.
I created a blank wordpress page template (blank as in no sidebar, header or footer), and added the plugin shortcode to that.
Here’s the code I used for the blank page:
<?php
/**
* Template Name: Blank Page
*
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>” /><!– page title, displayed in your browser bar –>
<title><?php bloginfo(‘name’); ?> | <?php is_home() ? bloginfo(‘description’) : wp_title(”); ?></title><!– add feeds, pingback and stuff–>
<link rel=”profile” href=”http://gmpg.org/xfn/11″ />
<?php wp_head(); ?>
</head><body id=”top”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php wp_footer(); ?>
</body>
</html>Fantastic – that fixed it!
I really can’t tell you how grateful I am that you’ve continued to offer support for this plugin. Thank you!