Forum Replies Created
-
AuthorPosts
-
HammerHankinson
MemberYes that does help actually. Thanks!
HammerHankinson
MemberHmm, this is interesting because I did try that with both archive-clients.php and single-clients.php files and the site doesn't recognize them which is why I was trying to use the template_include filter but that's not working either.
I am using the Custom Post Type UI plugin to create the CPT's, but I wouldn't think that would cause a conflict?
This is a site that I inherited from a developer that quit in the company I work for, I have no idea what he did but I seriously think he didn't set this site up properly or something because there is other genesis functionality that isn't working correctly.
March 7, 2013 at 11:46 am in reply to: genesis_post_content stopped working after upgrade to 1.9.1 #24808HammerHankinson
MemberThe theme is a custom built Genesis child theme and I only have basic genesis plugins activated (simple hooks, simple sidebars, etc) with the exception of the .html and AddtoAny plugin and deactivating it didn't resolve the issue.
March 7, 2013 at 10:53 am in reply to: genesis_post_content stopped working after upgrade to 1.9.1 #24796HammerHankinson
MemberUnfortunately the site is still in development and I don't have a public link that I can share.
Here is the full template code:
<?php /*
Template Name: Interal w/ Video Bar
*/ ?>
<?php get_header(); ?>
<?php genesis_before_content_sidebar_wrap(); ?><div id="ipwv-widgeted-1">
<?php if (!dynamic_sidebar('Internal with video Top')) : ?>
<div class="widget">
<h4>
<?php _e("Internal with video Top", 'genesis'); ?>
</h4>
<p>
<?php _e("This is a widgeted area which is called Home Top. It is using the Genesis - Featured Page widget to display what you see on the Freelance child theme demo site. To get started, log into your WordPress dashboard, and then go to the Appearance > Widgets screen. There you can drag the Genesis - Featured Page widget into the Home Top widget area on the right hand side.", 'genesis'); ?>
</p>
</div>
<!-- end .widget -->
<?php endif; ?>
</div><div id="ipwv-widgeted-2">
<?php if (!dynamic_sidebar('Internal with video left')) : ?>
<div class="widget">
<h4>
<?php _e("Internal with video left", 'genesis'); ?>
</h4>
<p>
<?php _e("This is a widgeted area which is called Home Top. It is using the Genesis - Featured Page widget to display what you see on the Freelance child theme demo site. To get started, log into your WordPress dashboard, and then go to the Appearance > Widgets screen. There you can drag the Genesis - Featured Page widget into the Home Top widget area on the right hand side.", 'genesis'); ?>
</p>
</div>
<!-- end .widget -->
<?php endif; ?>
</div><div id="ipwv-widgeted-3">
<h1>
<?php the_title(); ?></h1><?php genesis_post_content(); ?>
</div>
<?php genesis_after_content(); ?>
<?php genesis_after_content_sidebar_wrap(); ?>
<?php get_footer(); ?> -
AuthorPosts