• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Ted

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 52 total)
← 1 2 3 →
  • Author
    Posts
  • August 29, 2013 at 11:17 am in reply to: Minimum Pro Homepage slideshow #59562
    Ted
    Participant

    Hi Eli,

    Yeah, I always like being able to have a slider on the homepage too. I'm a little weak in PHP so I can't guarantee the code, but I've also been tweaking the new theme a bit. This is what I've added to the functions.php

    /** Add the featured image section */
    add_action( 'genesis_after_header', 'minimum_featured_image' );
    function minimum_featured_image() {

    if ( is_home() ) {
    printf( '<div %s>', genesis_attr( 'home-slider' ) );
    genesis_structural_wrap( 'home-slider' );

    genesis_widget_area( 'home-slider', array(
    'before'=> '<div class="home-slider widget-area">',
    'after' => '</div>',
    ) );

    genesis_structural_wrap( 'home-slider', 'close' );
    echo '</div>'; //* end .home-slider
    }
    }

    And registered the widget area.....

    //* Register widget areas
    genesis_register_sidebar( array(
    'id' => 'home-slider',
    'name' => __( 'Home Slider', 'minimum' ),
    'description' => __( 'This is the homepage slider section.', 'minimum' ),
    ) );

    and that did the trick. I did remove the background image code on front-page.php but you could do that too.

    You can see my modification here: http://themes.imageperceptions.com/mpro4/

    One thing I am curious about. Where did you get that image? (City Center in Vegas)

    August 26, 2013 at 7:36 pm in reply to: Minimum Pro 3.0 – added homepage slideshow, but top of images cut off by header #58974
    Ted
    Participant

    Oh man, Gary, that's wild! I thought that was the first thing I had tried today, but just tried it again and it worked like a charm!

    Obviously I must've been sleeping on the job. Thanks for waking me up, man!

    Ted

    June 30, 2013 at 6:51 pm in reply to: Fixed Header for Minimum Child Theme #48597
    Ted
    Participant

    Very cool! Is it set up for mobile as well?

    June 11, 2013 at 9:22 pm in reply to: Adding Category Names to page-title.php in Minimum 2.0 #45390
    Ted
    Participant

    Just to followup. I've added similar code for each category, to the page-title.php file:

    elseif ( is_category(beauty)|| is_singular() ) {
    echo '<div id="page-title"><div class="wrap"><p>' . __( 'Beauty News, Tips and more...', 'minimum' ) . '<a class="page-title-button" href="http://feeds.feedburner.com/ImagePerceptionsInc">' . __( 'Subscribe', 'minimum' ) . '</a></p></div></div>';
    }

    There are 9 categories that this applies to. I was hoping to figure out code that would just require one piece of code that would just automatically grab the category name so there wasn't so much repetition in the code.... but this does what I need.

    June 1, 2013 at 4:11 pm in reply to: Fixed Header for Minimum Child Theme #43519
    Ted
    Participant

    Check out this article by Brad Dalton. It offeres a way to make the main nav sticky in a very simple way. Would just take some modification to use this method as the header.

    http://wpsites.net/web-design/how-to-make-your-nav-menu-sticky/

     

    June 1, 2013 at 4:07 pm in reply to: Responsive Header problem at 1024 #43518
    Ted
    Participant

    Hi Chris,

    Thanks for your message. Actually I was able to determine the css fix to take care of this. New it was something simple, but for some reason I just kept missing it!

    Thanks again, Chris,

    Ted

    May 13, 2013 at 7:46 am in reply to: Fixed Header for Minimum Child Theme #40651
    Ted
    Participant

    This isn't exactly what you're looking for, but I used Brian Gardner's Sticky Menu code to add that to Minimum.

    Then I used CSS to make sure it didn't display on mobile.

    #subnav {
    display: none;
    }

    Here's a Minimum site I've added it to: http://tavphoto.com

    Here's Brian's code: http://www.briangardner.com/sticky-menu/

    May 9, 2013 at 3:29 pm in reply to: How to make Genesis Responsive Slider Stretch full width of page? #40174
    Ted
    Participant

    Very cool, thanks for all your input!

    May 9, 2013 at 1:17 pm in reply to: How to make Genesis Responsive Slider Stretch full width of page? #40138
    Ted
    Participant

    Thanks for taking a look at the site, I appreciate the comments, man!

    Also thanks for the tip on Soliloquy. Does it do full width formats? I imagine it probably does, huh?

    Thanks again!

    May 9, 2013 at 1:58 am in reply to: How to make Genesis Responsive Slider Stretch full width of page? #40042
    Ted
    Participant

    Found an awesome slider that pretty much resolved my issue.

    Slideshow by Stefan Boonstra

    http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/

    • It's responsive
    • allows you to have full width (stretch) slide shows
    • Great admin page with a lot of customization options
    • no need to create posts to use the featured images. You just add the photos directly to the slide show.

    Anyway, it's got lots of other cool features and yes, it's free. 🙂

    I didn't end up using it on my jazz site, but I did add it to my photography site that also uses a modified Minimum 2.0 theme.

    http://tavphoto.com (warning, no nudity, but does contain lingerie shots)

    May 8, 2013 at 10:39 pm in reply to: How to make Genesis Responsive Slider Stretch full width of page? #40032
    Ted
    Participant

    Thanks so much for the reply. I tried adding that to the the theme's css and the plugin css as well, but no luck.

    The Genesis Responsive Slider settings require's width and height to be entered in pixels. I don't know if that makes this not doable with this slider.

    April 30, 2013 at 5:56 pm in reply to: different phone number on mobile version? #38659
    Ted
    Participant

    Very nice, Ryan!

    April 30, 2013 at 5:31 pm in reply to: different phone number on mobile version? #38654
    Ted
    Participant

    Geeez, why didn't I think of that! That's perfect, Ryan!

    April 30, 2013 at 5:18 pm in reply to: different phone number on mobile version? #38649
    Ted
    Participant

    This wouldn't be total fix for you, but might satisfy the client. (probably not, but here goes...)

    I've been setting it up so when a mobile responsive site is being viewed on a smart phone, a prominent button is displayed on the home page saying something like, "Click to call now!"  It won't show up on desktops, laptops or even tablets/iPads. Only on smartphones.

    I created a new widgeted area called home-mobil-call, and in the css I would add this:

    #home-mobile-call {
    display: none;
    }

    Then add the styling in the @480 section of the css.

    You can go here to see an example of it on my web biz site: http://imageperceptions.com/responsive/

    Like I said, it's not the perfect solution for your deal. People  ignore the click-2-call button and transcribe the other phone number on the site. Don't know why they would, but the client might bring up that scenario.

    Hope this helps, 🙂

    April 29, 2013 at 9:52 pm in reply to: Minimum Header issue at 1024px Screen Size #38499
    Ted
    Participant

    Just to followup, I was able to edit the css in the @1024 section of the style sheet.

    It was actually a pretty simple fix of just having to address any code that pertained to the #header, .header-image and #title-area. Don't know why it seemed like such a mystery before!

    Thanks again, Anita for your effort here! I appreciate it!

    🙂

    April 23, 2013 at 5:20 pm in reply to: [Minimum Theme] Front Page – Span Two Columns #37278
    Ted
    Participant

    Yeah, you could modify the functions.php, home.php and style.css to add/modify the widgeted areas. My PHP chops are sketchy at best, but I'll do this kind of stuff from time to time.

    If you're not comfortable digging around in there, Keith Davis did a review on a couple of plugins that help you modify the design of your genesis site.

    You can read his post here:

    http://www.wmwebdesign.co.uk/dynamik-website-builder-for-genesis-or-the-genesis-extender-plugin/

    April 23, 2013 at 5:01 pm in reply to: Optical Illusion #37274
    Ted
    Participant

    Wish I could offer a solution, but everything looks fine to me. I've looked at the site with (Mac)  Chrome, Safari and Firefox. I even checked it at http://studiopress.com/responsive/ and of course the formatting changed but nothing looked 'wrong.'

    What browser/OS is your client using?

    April 22, 2013 at 7:21 pm in reply to: Minimum Header issue at 1024px Screen Size #37035
    Ted
    Participant

    Yeah, that's an awesome plugin. I'm using it on that site and the screen sizes that the plugin addresses (240, 320, 480, 768) all look perfect. It's just the logo seen at 1024 (iPad landscape) that looks stretched and the lower part is behind the menu.

    Thanks for your reply, very much appreciated, Anita! 🙂

    April 22, 2013 at 7:12 pm in reply to: Minimum Header issue at 1024px Screen Size #37032
    Ted
    Participant

    Hi Anita,

    Thanks for the quick response! Yeah, I had read that a while back, and have been editing the css for some of the different device sizes, but for some reason this one just has me stumped.

     

    April 22, 2013 at 5:36 pm in reply to: Not seeing my posts. Is there a time delay? #37010
    Ted
    Participant

    I took the URLs out of my post and it went through.

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 52 total)
← 1 2 3 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble