Hi rdcrew3392, I actually had the same problem as yours. I use the woothemes’ cushy theme to build my new website here: https://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:
- Install Get-A-Post plugin.
- 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>
- Delete this part:
<?php
endforeach;
endif;
endif;
?>
This is all I can do. Hope this will help. ??
Best regards,
Jumaidil Awal