Standard page loop replace

Hi! I really need some help, probably quite simple but I can’t get my head around any tutorials and im running out of hair through stress so here seemed a good place to ask. I need to replaced the standard page loop in this coding:

[php]<?php
get_header();
global $woo_options;
?>

<div id="content" class="page col-full">
	<div id="main" class="col-left">
	           
	<?php if ( $woo_options['woo_breadcrumbs_show'] == 'true' ) { ?>
		<div id="breadcrumbs">
			<?php woo_breadcrumbs(); ?>
		</div><!--/#breadcrumbs -->
	<?php } ?>  			

    <?php if ( have_posts() ) { $count = 0; ?>
    <?php while ( have_posts() ) { the_post(); $count++; ?>
                                                                
        <div <?php post_class('drop-shadow lifted'); ?>>

		    <h1 class="title"><?php the_title(); ?></h1>

            <div class="entry">
            	<?php the_content(); ?>

				<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'woothemes' ), 'after' => '</div>' ) ); ?>
           	</div><!-- /.entry -->

			<?php edit_post_link( __( '{ Edit }', 'woothemes' ), '<span class="small">', '</span>' ); ?>
            
        </div><!-- /.post -->
        
        <?php
        	$comm = 'both';
        	if ( isset( $woo_options['woo_comments'] ) && ( $woo_options['woo_comments'] != '' ) ) { $comm = $woo_options['woo_comments']; }
        	if ( ($comm == 'page' || $comm == 'both' ) ) {
        		comments_template();
        	}
        ?>
                                            
	<?php
			} // End WHILE Loop
		} else {
	?>
		<div <?php post_class(); ?>>
        	<p><?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ); ?></p>
        </div><!-- /.post -->
    <?php } ?>  
    
	</div><!-- /#main -->

    <?php get_sidebar(); ?>

</div><!-- /#content -->
<?php get_footer(); ?>[/php]

I want to replace the standard page loop in this coding to:

[php]<?php woocommerce_content(); ?>[/php]

the closest I have got meant that the loop hadn’t closed so content just filled my wordpress page untile it timed out at 30 secs!

Please help, I’ll love you forever.

Sponsor our Newsletter | Privacy Policy | Terms of Service