• Please help I have been trying to get the cushy theme from woothemes working properly for hours I brought a wordpress website and he had cushy theme in the theme libary aswell and I love it… Heres the problem.

    The featured page does not show up… there should be a feature page between the navigation and the latest blog section here is the url- http://www.world-travel-guide.org.uk

    I have followed everything it says I have to do but it still doesn’t work

    Please help someone!!

    Thanks
    Ricky

Viewing 1 replies (of 1 total)
  • Hi rdcrew3392, I actually had the same problem as yours. I use the woothemes’ cushy theme to build my new website here: http://banjirprodukdigital.com/.

    You can overcome the “featured page not showing properly” problem using a plugin called “Get-A-Post” and a little bit change in the home.php file. Here are the details:

    1. Install Get-A-Post plugin.
    2. Change the following part of the home.php:
      <?php if ( get_option('woo_features_page') ) : ?>
      					<div class="headlines">
      
      						<?php
      							$posts = get_posts( "page_id=" . get_page_id( get_option( 'woo_features_page' ) ) );
      							if( $posts ) :
      								foreach( $posts as $post ) : setup_postdata( $post );
      						?>
      
      						<div class="headline">
      							<h2><?php the_title(); ?></h2>

      into this one:

      <div class="headlines">
      						<div class="headline">
      							<?php get_a_post (get_page_id( get_option( 'woo_features_page' ) ) ); ?>
                                  <h2><?php the_title(); ?></h2>

    3. Delete this part:
      <?php
      							endforeach;
      						endif;
      					endif;
      					?>

    This is all I can do. Hope this will help. 🙂

    Best regards,

    Jumaidil Awal

Viewing 1 replies (of 1 total)
  • The topic ‘Woo Theme Help PLEASE!! Cushy’ is closed to new replies.