Forum Replies Created
-
AuthorPosts
-
Mack
MemberSusan,
Thank you.
I will give that a go and let you this weekend.
Mack
Mack
MemberAnyone?
Mack
Memberbraddalton
Thank you. I figured out I excluded it from the standard menu location by selecting the blank in the menu drop down.
Mack
Mack
MemberOk I found a solution, using the header right widget with a custom menu.
But the other Nav Bar is still there. How can I remove this?
I would think it would go away when the header right widget is used with navigation.
http://coaches.faganandassociatesinc.com/
Thanks in advance for your assistance.
Mack
Mack
MemberI fixed the function: from: add_action(‘genesis_before_footer’, ‘child_home_center_after_loop’);
to: add_action(‘genesis_before_footer’, ‘agency_home_center_after_loop’);
Still the same.
Mack
MemberJohn,
Thanks for your continued support!!
I added this to functions.php:
add_action(‘genesis_before_footer’, ‘child_home_center_after_loop’);
I added this to home.php
add_action( 'genesis_before_footer', 'agency_home_center_loop_helper' );
Then placed this code in home.php:
function agency_home_center_loop_helper() {
if ( is_active_sidebar( 'home-left-center' ) || is_active_sidebar( 'home-middle-center' ) || is_active_sidebar( 'home-right-center' )) {echo '<div id="home">';
echo '<div class="home-left-center">';
dynamic_sidebar( 'home-left-center' );
echo '</div><!-- end .home-left -->';The calendar is now just above the actual footer and below the footer widgets.
I need it between the home left,middle, right and the footer widgets in it's own #inner
See it here: http://faganandassociatesinc.com/
Mack
MemberThanks John,
Now the calendar (test for widget) appears in the same widget area as left,middle and center.
How do I get it in it's own container???? Or is it #inner??????
For a coder this would take five minutes. I am on day 3 of trying to sort this out.
Would be nice if there was a tutorial like this only specific for this theme and this requirement. I have seen several posts asking how to do this.
They send folks to cryptic how to's.
None of this makes any sense to me.
Mack
MemberPS:
I have the following in my functions.php
genesis_register_sidebar( array(
'id' => 'home-left-center',
'name' => __( 'Home Left-center', 'agency' ),
'description' => __( 'This is the second (center) left section of the homepage.', 'agency' ),
) );
genesis_register_sidebar( array(
'id' => 'home-middle-center',
'name' => __( 'Home Middle-center', 'agency' ),
'description' => __( 'This is the second (center) middle section of the homepage.', 'agency' ),
) );
genesis_register_sidebar( array(
'id' => 'home-right-center',
'name' => __( 'Home Right-center', 'agency' ),
'description' => __( 'This is the second (center) right section of the homepage.', 'agency' ),
) );Mack
MemberI thought I did all of that. I just need to have two more rows, center and bottom of the home left, middle and right.
This is now two days of pulling out my hair with this.
I have registered the Widgets in the Functions and they appear correctly in the Widget Admin area.
I tried the:
genesis_widget_area( 'home-left-center', array( 'before' => '<div id="home-left-center" class="widget-area">' ) || 'home-middle-center', array( 'before' => '<div id="home-middle-center" class="widget-area">' ) || 'home-right-center', array( 'before' => '<div id="home-right-center" class="widget-area">' ));
echo '<div id="home-center">';echo '<div class="home-left-center">';
dynamic_sidebar( 'home-left-center' );
echo '</div><!-- end .home-left-center -->';echo '<div class="home-middle-center">';
dynamic_sidebar( 'home-middle-center' );
echo '</div><!-- end .home-middle-center -->';echo '<div class="home-right-center">';
dynamic_sidebar( 'home-right-center' );
echo '</div><!-- end .home-right-center -->';echo '</div><!-- end #home-center -->';
But no go!!
Mack
MemberJohn,
"Did you add the action which loads the function?"
I wish I knew what that is????
I need to have to more left, middle and right separate from each other.
Here is a link: http://www.faganandassociatesinc.com
As always, I appreciate your assistance!!
Mack
Mack
MemberBill,
Thank you! That was it. Much appreciated.
Regards,
MackMack
MemberP.S. This is in a WPMU environment. It did not work in non WPMU mode either.
Mack
MemberYes I need the functiion.php code to turn off the footer.
-
AuthorPosts