Statistics: Posted by Cristián Lávaque — March 23rd, 2011, 7:22 pm
Statistics: Posted by Jason Caldwell — March 22nd, 2011, 11:03 pm
<?php
/**
* Template Name: Presskit-Test
*/
?>
<?php get_header(); ?>
<!-- The class "grid_7" restricts the div to 7 columns wide -->
<div id="content" class="grid_10 prefix_1">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
This is Presskit-Test Template:<br /><br />
The login widget should show up here:<br />
<?php echo s2member_pro_login_widget(); ?>
</div><!-- end entry -->
</div><!-- end post -->
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<br />
</div><!-- end content -->
<div id="sidebar" class="grid_4">
<?php
if ( ! dynamic_sidebar( 'press-widget' ) ) : ?>
<?php endif; // end primary widget area ?><br />
</div>
<?php get_footer(); ?>
Statistics: Posted by jacksonmurphy — March 18th, 2011, 9:51 pm
jacksonmurphy wrote:
Would it have anything to do with PHP settings on the server?
http://www.annawilson.com/test.php
Statistics: Posted by Jason Caldwell — March 18th, 2011, 7:56 pm
Statistics: Posted by jacksonmurphy — March 17th, 2011, 8:55 am
Statistics: Posted by Cristián Lávaque — March 16th, 2011, 7:29 pm
<?php if (is_user_logged_in() && current_user_can('access_s2member_ccap_presskit'))
the_content('<p class="serif">Read the rest of this page »</p>');
else
echo '<h1>Members of the Press Only</h1> Please login to view this page.', s2member_pro_login_widget(); ?>
Statistics: Posted by Cristián Lávaque — March 16th, 2011, 12:36 pm
<?php
/**
* Template Name: Presskit Test
*/
?>
<?php get_header(); ?>
<!-- The class "grid_7" restricts the div to 7 columns wide -->
<div id="content" class="grid_10 prefix_1">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php echo s2member_pro_login_widget(); ?>
</div><!-- end entry -->
</div><!-- end post -->
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<br />
</div><!-- end content -->
<div id="sidebar" class="grid_4">
</div>
<?php get_footer(); ?>
<?php if (is_user_logged_in() && current_user_can("access_s2member_ccap_presskit")) { ?>
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php } else { ?>
<h1>Members of the Press Only</h1>
Please login to view this page.
<?php echo s2member_pro_login_widget(); ?>
<?php } ?>
Statistics: Posted by jacksonmurphy — March 16th, 2011, 11:51 am
Statistics: Posted by Cristián Lávaque — March 16th, 2011, 11:28 am
Statistics: Posted by jacksonmurphy — March 16th, 2011, 9:14 am
Statistics: Posted by Cristián Lávaque — March 15th, 2011, 7:38 pm
<?php echo s2member_pro_login_widget(); ?>
Statistics: Posted by jacksonmurphy — March 15th, 2011, 7:21 pm