leilaChanler
Forum Replies Created
-
I figured it out – never mind!
Forum: Themes and Templates
In reply to: Adding different sidebar to a templateYes, I have. They are just not so responsive. But thanks!
Forum: Themes and Templates
In reply to: Adding different sidebar to a templateOops! That line from the page_lessons.php file:
//* Hook after post widget area before page content genesis_widget_area( 'after-post', array( 'before' => '<div class="after-post widget-area">',
was NOT actually in there. I was playing around before I wrote this post and forgot to remove it. The actual code in that template page is thig:
<?php // Template Name: Lessons add_action( 'get_header', 'child_sidebar_logic' ); /** * Swap in a different sidebar instead of the default sidebar. * */ function child_sidebar_logic() { if ( is_page_template( 'page_lessons.php' ) ) { remove_action( 'genesis_before_sidebar_widget_area', 'genesis_get_sidebar' ); add_action( 'genesis_before_sidebar_widget_area', 'child_get_lessons-sidebar' ); } { remove_action( 'genesis_after_content', 'genesis_get_sidebar' ) } } /** * Retrieve blog sidebar */ function child_get_lessons() { get_sidebar( 'lessons-sidebar' ); } genesis();
Ha! That worked! Thanks so much!
Forum: Plugins
In reply to: [YOP Poll] hidden boxes with ChromeI tried the fix with no luck. The only document in the files I found that had that code in it was yop_poll_model.php. Is that the correct file?
I can’t show you the url because it’s an unpublished post. It looks fine for me in all the browsers, but the client can’t see it in Chrome.
How can I fix this?
Forum: Fixing WordPress
In reply to: Twenty-twelve home page has gone crazyI finally figured it out and fixed it. Thanks!
Forum: Themes and Templates
In reply to: Custom template not working – twentytwelveIt’s working! I deleted all the files on the remote server and re-uploaded them, then re-linked to the custom template from within the WP page… and it finally worked. Thanks!
Forum: Themes and Templates
In reply to: Custom template not working – twentytwelveYes, all of that is true EXCEPT I had the code
get_header( 'homehead.php' ); ?>
in the front-pageHome.php file.I changed it now to just homehead, cleared my cache… and it still isn’t showing up.
I did notice that in the head, just like the original header.php it had
<?php wp_head(); ?>
. I deleted that and uploaded it and it still isn’t working…Forum: Themes and Templates
In reply to: Custom template not working – twentytwelveNo, that is the banner for the other pages…
Forum: Themes and Templates
In reply to: Custom template not working – twentytwelveIt’s still not working. Did I call in the header image incorrectly?:
<?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="https://www.diannemonroe.com/wp/wp-content/uploads/2014/05/DSCF2056-copy-from-origCropped.jpg" alt="" /> </a> <?php endif; ?>
Forum: Plugins
In reply to: [AutoChimp] Automatic excerpts no longer work in WP 3.8I am having the same problem and we can’t really use AutoChimp any longer as a result. Will it be fixed?
Forum: Themes and Templates
In reply to: How to attach css to a new page templateNever mind – I figured it out. Thanks so very much!
Forum: Themes and Templates
In reply to: How to attach css to a new page templateThank you. Do I need to create a new header.php file for this template?
Forum: Themes and Templates
In reply to: Custom template not workingThat was going to be my next step. Thanks.
Forum: Themes and Templates
In reply to: Custom template not workingThanks very much – but that didn’t work either. As soon as I update the page, it goes back to default template. Could it be a problem with the theme?