Community Forums › Forums › General Discussion › Minimum Theme: Rotate Home Page Image
Tagged: minimum, rotate home page image
This topic contains 17 replies, has 3 voices, and was last updated by anitac 3 months, 3 weeks ago.
-
AuthorPosts
-
January 14, 2013 at 9:20 pm #11991
I saw this discussion, however it does not give the outcome of how to rotate the image. I just want to have 3 rotating images that don’t link anywhere. Is there a simple way to do this with Minimum?
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 15, 2013 at 9:40 pm #12193I am using a very simple image rotation script to do this. The code is here:
January 16, 2013 at 9:15 am #12295Thank you @goddess. But how do I use it? It says to save it as rotate.php. What file folder do I copy this to? Where do I save the images and how do I get it to work with Minimum? I don’t code

Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 16, 2013 at 9:52 am #12314In my theme files, the images folder, I made a new folder called home-page. In it, I included the rotate.php file and all the images I wanted to rotate. YOu can add or delete images from rotation merely by adding or deleting them from that folder.
Then, in functions.php, should be around line 70, replace the call to /images/sample.jpg to this: /images/home-page/rotate.php
That’s it!
January 22, 2013 at 4:19 pm #13864Another option is to use the Genesis Responsive Slider, create posts using the desired images as the post featured image, and then set the slider to “do not link to post”.
You’ll have to modify functions.php (like Goddess said, around line 70) to remove sample.jpg and insert the slider, like this:
if ( is_home() ) {
echo ‘<div id=”home-featured”><div class=”wrap”>’;
genesis_widget_area( ‘home-slider’, array( ‘before’ => ‘<div class=”home-slider widget-area”>’, ) );
echo ‘</div></div>’;
}
Cheers,Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
January 22, 2013 at 4:49 pm #13884Hi Carrie, thanks for replying. How would I keep those posts from showing up in the Archive or being picked up by the search engines?
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 22, 2013 at 5:04 pm #13895For those individual posts you can go to the Edit Posts > Theme SEO Settings and opt to make the page not archived and not indexed.

Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
January 22, 2013 at 5:05 pm #13897Oh, great! Thanks!
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 25, 2013 at 8:11 am #14581One more question, what should the slider settings be set at to get the full width like the original image?
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 25, 2013 at 8:31 am #14588The original image in the demo is 1600×600.

Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
January 25, 2013 at 8:37 am #14589Hummmm, now I have two big images on there. The original image and the slider image.
Did I register the slider widget correctly:
genesis_register_sidebar( array(
‘id’ => ‘home-featured’, // Feel free to use a more meaningful name here
‘name’ => __( ‘Slider’, ‘minimum’ ),
‘description’ => __( ‘This is a description of my new widget area’, ‘minimum’ ),
) );
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 25, 2013 at 8:40 am #14590Oh, here is what’s in the featured area:
/** Add the featured image section */
add_action( ‘genesis_after_header’, ‘minimum_featured_image’ );
function minimum_featured_image() {
if ( is_home() ) {
echo ‘<div id=”home-featured”><div class=”wrap”>’;
genesis_widget_area( ‘home-slider’, array( ‘before’ => ‘<div class=”home-slider widget-area”>’, ) );
echo ‘</div></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>’;
}
}
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 27, 2013 at 8:52 am #15286I responded above. I have played around with the code and still get two featured images on the home page. What did I do wrong in the code provided above?
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 27, 2013 at 9:24 am #15294So I had to scrap all the custom code and start from the beginning. I have the slider in there but why isn’t it full width like the original sample image? I have the slider set at 1600 x 600 and yet it’s not showing up that way. What am I doing wrong and will this even work? There’s the board around the slider, etc., I wanted a fading image the size and appearance of the sample image. This isn’t giving me that effect.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsJanuary 27, 2013 at 9:39 am #15300Hi Anita,
Can you post a link? You may need to edit the CSS for the slider to be the same dimensions. Also, do you use Firebug? That should show you where the border is coming from so that you can remove that from your CSS.
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
-
AuthorPosts
You must be logged in to reply to this topic.