Forum Replies Created
-
AuthorPosts
-
MM
MemberThks csbeck and brad. @csbeck - did you insert that in style.css ?
March 13, 2013 at 7:22 am in reply to: Consistency across Home.php featured post displays and categories / page 2 etc #25828MM
MemberHi Burridge
Thanks for this! Like you, learning on the fly here. Still unable to fix via your workaround for page 2 displays - any ideas?
Other results to report for Eleven40 theme...
Category / Tag Pages to Mirror Home
Strangely, no customisation was needed. I duplicated home.php to create category.php and tag.php - and that worked.
Changing the function as suggested (in Eleven40 at least) led to parse errors.
Blog Content Etc
The advice didn't change the text content limit. But changing that in Genesis > Theme Settings, to be the same as in Home.php, made this work. I guess that's something to do with the homepage pulling settings from home.php, but the Blog page... pulling settings from Genesis > Theme Settings.
Page 2 Same as Home
Interestingly,
http://mikemetcalfe.co/blog/page/2/ - THIS WORKS (displaying like home)
http://mikemetcalfe.co/page/2/ - THIS DOESN'T (still showing a grid)
Have tried the following on home.php...
1st - which failed
My home.php was missing the 3 lines below...
‘grid_image_size’ => 600,
‘grid_image_class’ => 'alignnone post-image',
‘grid_content_limit’ => 145,I inserted them, made them mirror feature settings. Still didn't work.
2nd - which failed
I changed:
/** Do nothing on page 2 or greater */
if ( get_query_var( 'paged' ) >= 2 )
return;To:
/** Do nothing on page 2 or greater */
if ( get_query_var( 'paged' ) >= 1000 )
return;Thinking it'd only kick in after 1000 archive pages. Didn't work.
3rd - which failed
I deleted
<?php
/** Add the home featured section */
add_action( 'genesis_before_loop', 'eleven40_home_featured' );
function eleven40_home_featured() {/** Do nothing on page 2 or greater */
if ( get_query_var( 'paged' ) >= 2 )
return;genesis_widget_area( 'home-featured', array(
'before' => '<div class="home-featured widget-area">',
) );}
MM
MemberHi Burridge and Flameno
Good reading above. I had a question along these lines...
Consistency across Home.php featured post displays and categories / page 2 etc
If you can provide insights to fix that problem, that's great!
Thks,
March 12, 2013 at 4:01 pm in reply to: How to remove featured image on Minimum theme post page? #25734MM
MemberThanks Bill, Joyce. Will try that avenue. Nice theme tweaks there also Bill.
March 12, 2013 at 12:13 pm in reply to: How to remove featured image on Minimum theme post page? #25680MM
MemberThanks Joyce, have found advice on removing the featured fully. It's below.
Still wondering about:
Also if possible, is there a way on the homepage (www.hayleywebb.com) to insert a small tile 90 x 90 as a preview on the post preview grid of 6.
-----
for Minimum, you can alter this function in the functions.php file to remove the post image:/** Add the featured image section */
add_action( 'genesis_after_header', 'minimum_featured_image' );
function minimum_featured_image() {
if ( is_home() ) {
echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>';
}
elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
echo '<div id="featured-image">';
echo get_the_post_thumbnail($thumbnail->ID, 'header');
echo '</div>';
}
}Just remove this part:
elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
echo '<div id="featured-image">';
echo get_the_post_thumbnail($thumbnail->ID, 'header');
echo '</div>';
}March 12, 2013 at 7:05 am in reply to: How to remove featured image on Minimum theme post page? #25634MM
MemberThanks Joyce , it's Minimum Theme. Does that change any of the above advice? Cheers!
March 12, 2013 at 5:26 am in reply to: Eleven40 – control length / setup of homepage and post previews #25628MM
MemberHi Anyone or Anita,
On mikemetcalfe.co, I've customised post previews on home.php as per http://mikemetcalfe.co
But I want previews on category pages (Eg. http://mikemetcalfe.co/category/tools-hints-tips/) and page 2, 3 etc (eg. http://mikemetcalfe.co/page/2/) exactly the same as home.
I couldn't see in home.php or functions.php how to customise this? Any advice out there? Thks!
March 6, 2013 at 5:10 pm in reply to: Space between text on Genesis Simple Hooks footer text? #24647MM
MemberThks Charlie. It's mikemetcalfe.co
MM
MemberHi Firstname_galo
Thanks and here's quick answers:
1) Check out this thread:
Minimum Theme – How to change the Homepage social icon image and link?
2) Think the slider is just above the text in the appearance > widgets section.
Good luck!
February 23, 2013 at 5:30 pm in reply to: How to control the primary nav to only click dropdowns items? #22475MM
MemberCheers Brad!
February 22, 2013 at 7:26 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22218MM
MemberCheers Chris - yes thought you had some secret advice that wasn't elsewhere online. Thanks for trying! 😉
February 22, 2013 at 7:14 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22216MM
MemberStrange? Thanks Chris. It's mikemetcalfe.co - any advice on exactly what to use appreciated. 😉
February 22, 2013 at 5:24 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22202MM
MemberThanks Chris!
Alas doesn't seem to work.
Is this perhaps being blocked by using Jetpack Comments?
Cheers, Michael
MM
MemberLegend, thanks Sridhar!
February 22, 2013 at 2:52 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22166MM
MemberThis reply has been marked as private.February 20, 2013 at 11:05 am in reply to: Minimum Theme – How to change the Homepage social icon image and link? #21690MM
Memberrockstars, thanks guys.
February 19, 2013 at 4:28 pm in reply to: Minimum – How to change the text banner per page title ? #21487MM
MemberHi Brad / Anyone,
Still trying to change the text to display as follows (see hayleywebb.com)
home page: as it currently show... 'Push your Limits' etc
blog category page: name of category
blog article page: title of the post
other pages eg. About to say 'About'
Instructions appreciated, cheers!
February 13, 2013 at 1:51 pm in reply to: Minimum Theme – How to Change Homepage Picture to Featured Post Image Slider? #20129MM
MemberThks Anitac, all working after trial and error 😉
February 13, 2013 at 1:03 pm in reply to: Minimum Theme – Home and blog category pages – number of displayed posts? #20119MM
MemberOops... thanks Susan. Lots of different locations for settings 😉
February 11, 2013 at 4:23 pm in reply to: Minimum Theme – How to Change Homepage Picture to Featured Post Image Slider? #19711MM
MemberThanks Anitac.
Trying to solve this one still...
Per the article...
When I replace;
echo ”; ‘<img src="'. get_stylesheet_directory_uri() . '/images/sample.j
With this:
echo ”;
genesis_widget_area( ‘home-slider’, array( ‘before’ => ”, ) );
echo ”;I get a parse error every time and have to reload functions.php.
Any ideas? Thanks!
-
AuthorPosts