• 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

mbeck

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 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • July 27, 2016 at 9:43 am in reply to: Center Featured Image #190304
    mbeck
    Participant

    Or is there a way to make it the full width of the post/column?

    June 25, 2014 at 8:54 am in reply to: Left-Align Thumbnails #111469
    mbeck
    Participant

    Thanks, Brad!

    June 21, 2014 at 10:23 pm in reply to: Rearranging home page widgets #111020
    mbeck
    Participant

    Thanks for the ideas, Andrea.
    None seem to work.
    In fact, if I eliminate the new widget and simply change the home-featured widget area to 'genesis_after_content_sidebar_wrap', the home widgets disappear altogether.

    Guess I'll just go back to the original layout without the new widget.

    June 21, 2014 at 9:17 pm in reply to: Rearranging home page widgets #111017
    mbeck
    Participant

    Hi Andrea,
    I changed the coding at the end of the file to what's below, but nothing changed.
    Any thoughts?

    add_action( 'genesis_after_content_sidebar_wrap', 'mbi_after_widget_widget');

    function mbi_after_widget_widget() {
    if ( is_active_sidebar( 'after-widget-widget' ) ) {
    genesis_widget_area( 'after-widget-widget', array(
    'before' => '<div id="page-title"><div class="wrap">',
    'after' => '</div></div>',
    ) );
    }
    }

    genesis();

    June 21, 2014 at 7:38 pm in reply to: Rearranging home page widgets #111009
    mbeck
    Participant

    Thanks for the offer to take a look at this, Andrea.
    Here is the code from the front-page.php file:

    <?php
    /**
    * This file adds the Home Page to the Streamline Pro Theme.
    *
    * @author StudioPress
    * @package Streamline Pro
    * @subpackage Customizations
    */

    add_action( 'genesis_meta', 'streamline_home_genesis_meta' );
    /**
    * Add widget support for homepage. If no widgets active, display the default loop.
    *
    */
    function streamline_home_genesis_meta() {

    if ( is_active_sidebar( 'home-featured-1' ) || is_active_sidebar( 'home-featured-2' ) || is_active_sidebar( 'home-featured-3' ) ) {

    //* Force content-sidebar layout setting
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );

    // Add streamline-pro-home body class
    add_filter( 'body_class', 'streamline_body_class' );

    // Add homepage widgets
    add_action( 'genesis_after_content_sidebar_wrap', 'streamline_homepage_widgets' );

    }
    }

    function streamline_body_class( $classes ) {

    $classes[] = 'streamline-pro-home';
    return $classes;

    }

    function streamline_homepage_widgets() {

    if ( is_active_sidebar( 'home-featured-1' ) || is_active_sidebar( 'home-featured-2' ) || is_active_sidebar( 'home-featured-3' ) ) {

    echo '<div class="home-featured">';

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

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

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

    echo '</div><!-- end #home-featured -->';

    }

    }

    add_action( 'genesis_after_content', 'mbi_after_widget_widget');
    function mbi_after_widget_widget() {
    if ( is_active_sidebar( 'after-widget-widget' ) ) {
    genesis_widget_area( 'after-widget-widget', array(
    'before' => '<div id="page-title">',
    'after' => '</div>',
    ) );
    }
    }

    genesis();

    And here is the link to the home page:
    http://www.michaeljbeck.com/

    June 4, 2014 at 10:15 am in reply to: Add Responsive Slider to Home Page #108073
    mbeck
    Participant

    Brad, I made another attempt to solve this with your suggestion and it worked!
    Thanks so much for your help.

    June 4, 2014 at 9:41 am in reply to: Add Responsive Slider to Home Page #108071
    mbeck
    Participant

    OK, let me ask this instead.
    Do you know if the Genesis Responsive Slider can be inserted into a content area with a shortcode?

    June 3, 2014 at 5:44 pm in reply to: Add Responsive Slider to Home Page #108018
    mbeck
    Participant

    FYI, I'm using the Streamline Pro Theme and not the older Streamline Theme.

    June 3, 2014 at 5:44 pm in reply to: Add Responsive Slider to Home Page #108017
    mbeck
    Participant

    Also, does it go in the function.php file or the front-page.php file?

    June 3, 2014 at 5:36 pm in reply to: Add Responsive Slider to Home Page #108016
    mbeck
    Participant

    Thanks, Brad,
    I took a look at your tutorial and wrote some code, but I must have something wrong.
    Would you mind taking a look at it for me?
    Thanks!

    genesis_register_sidebar( array(
    'id' => 'bottom_center',
    'name' => __( 'Bottom Center', 'streamline' ),
    'description' => __( 'This is the content after Home Widgets', 'streamline' ),
    ) );
    add_action( 'genesis_before_content', 'bottom_center' );
    function your_widget() {
    if ( is_front_page() && is_active_sidebar('bottom_center') ) {
    genesis_widget_area( 'bottom_center', array(
    'before' => '<div class="bottom_center widget-area">',
    'after' => '</div>',
    ) );

    January 24, 2014 at 10:00 am in reply to: Responsive Header Image #86833
    mbeck
    Participant

    Thanks for asking. My intention is to use the text in both cases.
    On a large screen, there would be a white background and a graphic behind the text but on a small screen, there would be no text and the background would be a color.

    Here is a link to the graphic:
    http://www.michaeljbeck.com/theme_test/wp-content/themes/streamline-pro/images/headerbackground1.png

    Here's what the header would look like on a large screen: (the text isn't positioned correctly in this example)
    http://www.michaeljbeck.com/theme_test/wp-content/themes/streamline-pro/images/Screen%20Test.jpg

    This is what the header would look like on a smaller screen:
    http://www.michaeljbeck.com/theme_test/

    January 24, 2014 at 12:34 am in reply to: Customize Featured Page Widget #86759
    mbeck
    Participant

    Thanks, Nick. Looks like a useful plugin!
    My question pertained to getting that nice button into a text widget, but I figured it out already.
    I've downloaded your plugin to check it out.

    January 22, 2014 at 9:56 pm in reply to: Header image behind site title #86586
    mbeck
    Participant

    Great! Thanks again, Peter.

    January 22, 2014 at 11:39 am in reply to: Header image behind site title #86494
    mbeck
    Participant

    Worked perfectly!
    Thanks, Peter!

    January 19, 2014 at 4:19 pm in reply to: Customize Featured Page Widget #85981
    mbeck
    Participant

    Hi Ozzy, Your post didn't have any HTML coding in it and/or the link didn't take me anywhere. Would you mind re-posting?

    January 18, 2014 at 9:44 pm in reply to: Customizing Color #85837
    mbeck
    Participant

    Thanks, Andrea. I'll do it that way, then.

  • Author
    Posts
Viewing 16 posts - 1 through 16 (of 16 total)

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 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