Advertisement
designbymerovingi

Klein 3.0 Buy Access Template

May 1st, 2015
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Buddypress Wrapper
  4.  *
  5.  * @package klein
  6.  */
  7. ?>
  8.  
  9. <?php get_header(klein_header()); ?>
  10.  
  11.     <div class="bp-row">
  12.         <?php if (bp_is_user()) { ?>   
  13.             <?php klein_bp_member_head(); ?>
  14.         <?php } ?>
  15.  
  16.         <?php if (bp_is_group_single()) { ?>
  17.             <?php klein_bp_group_head(); ?>
  18.         <?php } ?>
  19.  
  20.         <div class="container">
  21.             <div class="row buddypress-wrap">
  22.                 <div id="primary" class="bp-content-area col-xs-10 col-xs-push-1">
  23.                     <div id="content" class="site-content" role="main">
  24.  
  25.                         <?php if ( function_exists( 'display_profile_purchase_form' ) ) display_profile_purchase_form(); ?>
  26.  
  27.                     </div><!-- #content -->
  28.                 </div><!-- #primary -->
  29.             </div>
  30.         </div>
  31.     </div><!--.row-->
  32.  
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement