Forum Replies Created
-
AuthorPosts
-
kfleegerMember
I used www addresses in my links but settings for the site urls did not use the www. Make sure they match!
kfleegerMemberWe found a fix! Add this to your functions.php file. Replace the word "podcast" with your custom post type.
//make full podcast content
function cd_show_full_content() {if( 'podcast' == get_post_type() )
return 'full';
}
function cd_no_content_limit() {
if( 'podcast' == get_post_type() )
return '0';
}add_filter( 'genesis_pre_get_option_content_archive', 'cd_show_full_content' );
add_filter( 'genesis_pre_get_option_content_archive_limit', 'cd_no_content_limit' );kfleegerMemberI did look at that site, yes, and thanks for the link. The archive template in his example though, still uses excerpts. So the instructions work, and I can make a custom archive template page, but I still can't get the result that I want.
I also found this http://www.shilling.id.au/2012/10/22/genesis-framework-how-to-show-experts-or-full-content-on-archive-pages/ which would be ideal (I'd rather do it in my functions.php file instead of having to make a new archive template) but it doesn't seem to do anything.
And I looked at this http://www.billerickson.net/code/full-content-features-in-grid-loop/ which should also work, but I can't seem to get it to do anything either.
If I manage to a get a combination to work though, I'll be sure to post it.
-
AuthorPosts