Forum Replies Created
-
AuthorPosts
-
tashworth19191Member
I did drag the default search box to sidebar and it does not work.
tashworth19191MemberLauren, Thank you so much for being so helpful. Hopefully I can return the favor some day..
Regards, Tom...
tashworth19191MemberHi Lauren, I put it in functions.php on lifestyle pro them that did not work so I put in on the front-page template. Here is what is on the front page template right now. Still cannot figure out how to get it to display.
function lifestyle_home_genesis_meta() { if ( is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-middle' ) || is_active_sidebar( 'home-bottom-left' ) || is_active_sidebar( 'home-bottom-right' ) ) { // Force content-sidebar layout setting add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' ); // Add lifestyle-pro-home body class add_filter( 'body_class', 'lifestyle_body_class' ); // Remove the default Genesis loop remove_action( 'genesis_loop', 'genesis_do_loop' ); add_filter( 'genesis_post_meta', 'sp_post_meta_filter' ); // Add homepage widgets add_action( 'genesis_loop', 'lifestyle_homepage_widgets' ); } } function sp_post_meta_filter($post_meta) { $post_meta = '[post_categories] [post_tags]'; return $post_meta; } function lifestyle_body_class( $classes ) { $classes[] = 'lifestyle-pro-home'; return $classes; } function lifestyle_homepage_widgets() { genesis_widget_area( 'home-top', array( 'before' => '<div class="home-top widget-area">', 'after' => '</div>', ) ); genesis_widget_area( 'home-middle', array( 'before' => '<div class="home-middle widget-area">', 'after' => '</div>', ) ); if ( is_active_sidebar( 'home-bottom-left' ) || is_active_sidebar( 'home-bottom-right' ) ) { echo '<div class="home-bottom">'; genesis_widget_area( 'home-bottom-left', array( 'before' => '<div class="home-bottom-left widget-area">', 'after' => '</div>', ) ); genesis_widget_area( 'home-bottom-right', array( 'before' => '<div class="home-bottom-right widget-area">', 'after' => '</div>', ) ); echo '</div>'; } } genesis();
tashworth19191MemberI figured it out.....
echo '<header itemtype="http://schema.org/WPHeader" itemscope="itemscope" role="banner" class="site-header">'; if (!is_home()) { do_action( 'genesis_header' ); } else { genesis_widget_area( 'slider', array( 'before' => '<div class="slider widget-area">', 'after' => '</div>', ) ); } echo '</header>';
tashworth19191MemberYou are welcome, It would be great if you could find this stuff in a document somewhere.
tashworth19191MemberI like the colors, good choice. Yeah, I think the sub-domain might hurt seo though.
Regards, Tom Ashworth
http://horseshoe-bay-texas-homes.com
tashworth19191MemberYeah, looks great except for the slider image not being centered. Also, I would think about adding a call to action on the home page.
Regards, Tom Ashwoth
tashworth19191Membertashworth19191MemberLooks good!
tashworth19191MemberOf course I don't have dsIDXPress set up yet, just using the demo now, but I think what would be great if is dsIDXPress or StudioPress got together to make a tutorial on how to get this integrated.
tashworth19191MemberI figured it out. All I did was comment this area out in my functions.php
/** Add suport for custom background
add_custom_background(); *//** Add support for custom header
add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 125, 'textcolor' => '333' ) );*/
Hope it helps someone else.
tashworth19191MemberYes that is what was confusing to me, but I bought the theme and working with dsIDXPress to get MLS setup. I figured out I can use the hook system to do what I want, by inserting the dsIDXPress search widget in Slider. I have not got that far, but I think it will work from reading documentation,.
tashworth19191MemberDid you get any response on this?
March 24, 2013 at 9:55 am in reply to: Using AgenPress 2.0 – Having trouble displaying company logo at the TOP LEFT #30878tashworth19191MemberDid you ever get an answer. I am having the same issue..
tashworth19191MemberI understand they are different, but to me when someone says it is integrated, it means they are combined and the search functions will work for either.
-
AuthorPosts