Forum Replies Created
-
AuthorPosts
-
KarenLeighBurtonMember
Thank you Victor, I may move the files around and rezip myself. Working through lots of pain, leaking appendix and insurance won't approve surgery until it ruptures. It's hard to think.
KarenLeighBurtonMemberI can't get to the developer support because apparently I have to setup an account for each new third party theme now??? even though I bought my pro pack like a gazillion years ago - I have zero clue what my transaction ID would be, I have no idea when I bought it - other than to say you all had maybe 10 themes at the time, I think it was 2007,08,09 ish but i have no idea. so I don't even know how to report anything other than in the forum at this point unless it relates to a sp child theme.
little frustrated, sorry. not trying to take it out on you - been in the hospital for a few days and a bit frustrated.
KarenLeighBurtonMemberThis is the theme - I'm guessing it's new. http://my.studiopress.com/themes/jessica/
KarenLeighBurtonMemberno we've never gotten a response or a fix.
thank you for escalatingKarenLeighBurtonMemberno we never managed to get this working. I finally convinced him to get far far far away from greenrope and migrate to mailchimp (yay). but thank you for checking in.
KarenLeighBurtonMemberOM Gosh - this is awesome! Thank you so very very much!
KarenLeighBurtonMemberSridhar, Wondering if you know how to do this same thing on an un-modified version of eleven40 (not the pro). I want to use the page-title widget area to display a slider or image on the homepage, but then on all pages/posts pull the featured image - if none revert to the homepage image. I've asked, I've even tried what you provided above and it's not working...
its a development site so no url to publish - Child - Eleven40 vs 1.1 Genesis - vs 2.0.1
I've made no other modifications to this theme at all yet - figured I'd start with this first... Would greatly appreciate if you can help.
I put this in a page.php template in the theme folder;
<?php
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
if (has_post_thumbnail( $post->ID ) ) :
echo get_the_post_thumbnail($post->ID);else :
if ( is_active_sidebar( 'page-title' ) ) :
echo '<div id="page-title">';
dynamic_sidebar( 'page-title' );
echo '</div><!-- end #page-title -->';endif;
endif;
}
genesis();
October 1, 2013 at 7:36 pm in reply to: Set Featured image in Page-Title area on pages/posts in eleven40 #65027KarenLeighBurtonMemberAny takers? come-on it can't be that hard? I just don't know what i'm doing for the call. I just need to know how to call the page/post "featured-image" to appear in the "page-title" section on all pages/posts EXCEPT the homepage.
I created a page.php and placed within the theme.
Added this code - trying to model after another post - not working...<?php
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
echo '<div id="inner">';if (has_post_thumbnail( $post->ID ) ) :
echo get_the_post_thumbnail($post->ID);else :
if ( is_active_sidebar( 'page-title' ) ) :
echo '<div id="page-title">';
dynamic_sidebar( 'page-title' );
echo '</div><!-- end #page-title -->';endif;
endif;
echo '</div><!-- end #inner -->';}
genesis();
this is really my weak point, can someone please help?
KarenLeighBurtonMemberwell I created a special widget area called welcome-text in the theme which was assigned to "all pages/posts/home" etc. I figured out I needed to acutally use the home-slider widget section for the slideshow - once i moved the slideshow there it worked. I did have to apply a div to the featured image so that it just wasn't left aligned on the top of the page.
I made this edit to the page.php code;
<?php
add_action( 'genesis_after_header', 'agency_home_welcome_helper' );
function agency_home_welcome_helper() {
echo '<div id="home-welcome">';
if (has_post_thumbnail( $post->ID ) ) :
echo get_the_post_thumbnail($post->ID);
echo '</div><!-- end #home-welcome -->';else :
if ( is_active_sidebar( 'home-slider' ) ) :
echo '<div id="home-slider">';
dynamic_sidebar( 'home-slider' );
echo '</div><!-- end #home-slider -->';endif;
endif;
}
genesis();
KarenLeighBurtonMembernevermind! I think I may have figured it out and fixed it - woohoo!
Thank you very much.KarenLeighBurtonMemberThank you - 🙂
That works - but it is still running the slider so it now has the slider on top and the featured image below;
http://www.readyvillemill.com/about/any additional suggestions?
KarenLeighBurtonMemberif i remove the comma I get some fatal error, but I'll try again as the article you linked is different than one I was working with. (thank you) and I've tried setting the number of posts in a few different places, I'm wondering if something is being called wrong somewhere else and I just don't know enough php to read it/find it.
KarenLeighBurtonMemberI can't figure out what is going on - its driving me insane... I've asked for help i get the same thing some error in java - I don't do java, understand java etc.
Im runinning studiopress genesis with the manhattan child theme.
the plugin works FINE until I make the site "appear" on the route
so the wordpress url is http://h0m3.unleashyourpractice.com and the site url is http://unleashyourpractice.com - no server move, no move at all of the core files. literally I follow this article from wordpress: http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory (i copy the htaccess and the index.php to the route and make the changes as told in the article linked... EVERYTHING except the simple social icons works.... I NEED help. Client really really really likes that the icons can be her "colors"... I've tried everything I can think of.
--oh - there is no social media section in the child theme css and this has happened on MULTIPLE installs on separate websites where I've finally just given up and installed the regular old icons... this client will NOT allow me to use the other.
KarenLeighBurtonMemberWoo Hoo! I finally, after about 30 different restores of the functions.php found the correct way to do this.... so if anyone needs it here it is!!!!!
add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 );
/**
* Change default Header URL.
*/function child_header_title( $title, $inside, $wrap ) {
if ( is_front_page() ) {
$inside = sprintf( '<a href="http://www.yourdomain.com/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
} else {
$inside = sprintf( '<a href="http://www.yourdomain.com/innerpage/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
}
return sprintf( '<%1$s id="title">%2$s</%1$s>', $wrap, $inside );
}KarenLeighBurtonMemberSo, I've found this little piece of code... which works great to just change the url, but i still need the home page header to simply either not link to anything or only link to the sales page (home page)
function child_header_title( $title, $inside, $wrap ) {
$inside = sprintf( '<a href="http://mybirthbusinessrocks.com/student-login/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
return sprintf( '<%1$s id="title">%2$s</%1$s>', $wrap, $inside );
}I tried using a conditional is_front_page() with it, but all it does is give me errors and I have to go in through cpanel and reupload the functions.php. Can someone tell me what i am doing wrong?
KarenLeighBurtonMemberI haven't had any problems with wishlist member in genesis themes. I've got about 4 sites going with it and we love it. we use 1shoppingcart for our ecommerce and wishlist just seems to integrate best with them.
-
AuthorPosts