Forum Replies Created
-
AuthorPosts
-
April 28, 2016 at 9:39 am in reply to: Altitude Pro – Front Page Background Images – Change size? #184618kenMember
.front-page-5 .image-section {
max-height:700px;
}kenMemberOn the top level of the Forums, can there be a Topic for each theme. Say If I am looking for help with positioning a menu for Minimum Pro, that would be the first place for me to look.
kenMemberBrad, Genesis Featured Page Advanced worked with the excerpt. https://wordpress.org/plugins/genesis-featured-page-advanced
kenMemberBrad,
This says that it has the option to use the excerpt. I will try this one. But still would be nice to use the content and not have to copy text into the excerpt!kenMemberBrad,
The widget uses the first 'x' characters of the post. It does not use the excerpt. Any solution for that?kenMemberThank you very much for your help on this. Time to stick a fork in this one.
kenMemberAs you can see on this page http://www.mt2.sohtest.com/blog/ the blog page is set to only show one post (the most recent). Am I trying to do the impossible?
Should I be doing this by adding custom fields to the Post entry screen?
kenMemberI am using Genesis Extender to code the hooks.
kenMemberI do not have any 'conditional' set up yet. If I look at a single post using single.php, the hook is executed and it all works fine. It is when the page_blog.php is called it does not show up.
kenMemberLooks like I might be closer. I can echo text in the selected area, but I cannot execute the short code
\\<?php
echo "Hello world!";
?>
<?php echo do_shortcode( '[manual_related_posts]' ); ?>Will investigate further.
kenMemberCreated the custom blog template and the same result. Ughh. I am using the enterprise-pro child theme and I just do not understand while this will not work. Am I approaching this the wrong way? What I want is a Blog page that shows the most recent post with the same formatting as if you were looking at any of the other posts by themselves.
kenMemberIs it the evil 'Blog' template that is messing this up??? You can see on http://www.mt2.sohtest.com/late-spring-garden-chores-2/ the You May Also Like is on there twice. But on http://www.mt2.sohtest.com/blog/ which uses Blog template there is no You May...
kenMemberThanks for the solution. Will work on this today. Thanks again.
kenMemberThanks for the reply. A plugin: http://www.relatedpostsforwp.com
kenMemberBrad, To show you all that I did changed...
PAGE_BLOG.PHP
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Templates
* @author StudioPress
* @license GPL-2.0+
* @link http://my.studiopress.com/themes/genesis/
*///* Template Name: Blog
//* The blog page loop logic is located in lib/structure/loops.php
add_filter( 'genesis_pre_get_option_content_archive', 'wpsites_full_content_blog_page' );
function wpsites_full_content_blog_page( $opt ) {
return 'full';
}genesis();
ADDED TO FUNCTIONS
add_filter( 'genesis_pre_get_option_content_archive', 'wpsites_full_content_blog_page' );
function wpsites_full_content_blog_page( $opt ) {
if ( is_page_template( 'page_blog.php' ) ) {
return 'full';
}
}August 25, 2014 at 10:32 am in reply to: Enterprise Pro Theme – Template FIle: page_blog.php #120936kenMemberBrad,
This is what I am adding and it is not working. Is my coding off?add_filter( 'genesis_pre_get_option_content_archive', 'wpsites_full_content_home_page' );
function wpsites_full_content_home_page( $opt ) {
if ( is_page_template( 'page_blog.php' ) ) {
return 'full';
}
}kenMember<h1 class="site-title" itemprop="headline">oceanquote.com</h1>
kenMemberThis reply has been marked as private.kenMemberThis reply has been marked as private.kenMemberThis reply has been marked as private. -
AuthorPosts