David

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Aspire: Post Titles not Appearing in Blog #18706
    David
    Customer

      Thank you Wes – that fixed it!

      Can you also tell me how to use the “portfolio” view within a front page widget to display blog posts? ie. post featured image and excerpt below, with the button pointing to the blog?

      Many thanks!

      in reply to: Aspire: Post Titles not Appearing in Blog #18667
      David
      Customer

        Also, just noticed something else…. my home page images aren’t full width. Just tested again with the default image for Widget #5 and it was the same thing.

        Any idea why?
        http://bit.ly/1nTclSo

        thanks

        in reply to: Aspire: Post Titles not Appearing in Blog #18666
        David
        Customer

          Hey Wes. Thanks. You’re absolutely right. I added something to my functions.php file.
          The following code displays a paralax featured image above all my posts.
          Any way to adapt the code below to play nice with your theme and return my Post titles on the blog page?
          Cheers!

          genesis_register_sidebar( array(
          	'id'          => 'singular-parallax-section',
          	'name'        => __( 'Singular Parallax Section', 'parallax' ),
          	'description' => __( 'This is the parallax section below nav on Posts and Pages.', 'parallax' ),
          ) );
          
          /**
           * Template Redirect
           * Use template_singular-parallax.php for Posts and Pages.
           */
          add_filter( 'template_include', 'custom_singular_template', 99 );
          function custom_singular_template( $template ) {
          
          	if ( is_singular( array( 'post', 'page' ) ) && ! is_front_page() ) {
          		$new_template = locate_template( array( 'template_singular-parallax.php' ) );
          		if ( '' != $new_template ) {
          			return $new_template ;
          		}
          	}
          
          	return $template;
          }
        Viewing 3 posts - 1 through 3 (of 3 total)