• 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

Bren Pace

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 - 1 through 20 (of 20 total)
  • Author
    Posts
  • March 20, 2017 at 8:47 am in reply to: Glam – Front-Page Edit # of posts #203466
    Bren Pace
    Member

    Thank you for your kind help.

    March 18, 2017 at 8:07 am in reply to: Glam Theme – Front Page Remove Sidebar #203305
    Bren Pace
    Member

    I gotcha! 🙂

    March 18, 2017 at 7:56 am in reply to: Glam Theme – Front Page Remove Sidebar #203303
    Bren Pace
    Member

    AWESOME! It worked! Thank you!

    March 18, 2017 at 7:50 am in reply to: Glam Theme – Front Page Remove Sidebar #203301
    Bren Pace
    Member

    I found this in the front-page.php

    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );

    Can I just alter that second part?

    March 18, 2017 at 7:39 am in reply to: Glam Theme – Front Page Remove Sidebar #203300
    Bren Pace
    Member

    You are the bomb-diggity, Brad! Thanks so much!

    March 18, 2017 at 7:25 am in reply to: Glam Theme – Front Page Remove Sidebar #203296
    Bren Pace
    Member

    By adding this

    //* Remove content/sidebar layout
    genesis_unregister_layout( 'content-sidebar' );

    Will also remove it from the blog pages? Or would this just go into the front-page?

    February 19, 2017 at 7:49 am in reply to: Gallery Pro: Front-Page Image Issue #201524
    Bren Pace
    Member

    I ended up going into the File Manager via CPanel to remove the image and replace. I'm assuming this may be a glitch in the Customizer, as it happened in two different websites. Thanks for your help. I'm marking this resolved.

    February 17, 2017 at 12:35 pm in reply to: Gallery Pro: Front-Page Image Issue #201398
    Bren Pace
    Member

    This is what the code looks like? Why is it different than the others? I have tried on both sites to replace by the customizer and can't even find the default image that it continues to keep there.

    `genesis_widget_area( 'front-page-1', array(
    'before' => '<div class="front-page-1 flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_1 . ')"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-2', array(
    'before' => '<div class="front-page-2 flexible-widget-area"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-2' ) . '">',
    'after' => '</div></div></div>',
    ) );

    genesis_widget_area( 'front-page-3', array(
    'before' => '<div class="front-page-3 flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_2 . ')"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-4', array(
    'before' => '<div class="front-page-4 flexible-widget-area"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-4' ) . '">',
    'after' => '</div></div></div>',
    ) );

    }

    //* Add remaining widget to front page
    function bbs_front_page_widgets_2() {

    if ( get_query_var( 'paged' ) >= 2 )
    return;

    $front_page_image_3 = get_option( 'bbs-front-page-image-3', sprintf( '%s/images/front-page-image-3.jpg', get_stylesheet_directory_uri() ) );

    genesis_widget_area( 'front-page-5', array(
    'before' => '<div class="front-page-5 hero flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_3 . ')"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-5' ) . '">',
    'after' => '</div></div></div>',
    ) );

    February 17, 2017 at 12:21 pm in reply to: Gallery Pro: Front-Page Image Issue #201394
    Bren Pace
    Member

    Thanks Brad,

    So The front page 5 widget area is not capturing the Image 3. It's an image that came with the theme?

    February 13, 2017 at 3:45 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201088
    Bren Pace
    Member

    Victor,

    That is so sweet of you. I know some coding but anytime I get in the editors, I get a little freaked. 🙂 I really appreciate you sharing the entire coding! You're making someone very happy! 😉

    Bren

    February 13, 2017 at 3:40 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201086
    Bren Pace
    Member

    Ok, thanks so much

    February 13, 2017 at 3:28 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201082
    Bren Pace
    Member

    Hi Victor and thank you for your reply.

    So add the code:
    add_action( 'genesis_before_footer', 'my_new_widget_area', 5 );

    to the bottom of my function.php and that's it?

    February 12, 2017 at 12:12 pm in reply to: Minimum Pro Homepage with Featured Images #201004
    Bren Pace
    Member

    So I'm still struggling. I'm not sure which content to pull and replace with the new grid loop with images.

    Is this what I'm replacing?

    //* Genesis grid loop
    function minimum_grid_loop_helper() {

    if ( function_exists( 'genesis_grid_loop' ) ) {

    genesis_grid_loop( array(
    'features' => 0,
    'feature_image_size' => 0,
    'feature_content_limit' => 0,
    'grid_image_size' => 0,
    'grid_content_limit' => 250,
    'more' => __( '[Read more]', 'minimum' ),
    ) );

    } else {

    genesis_standard_loop();

    }

    }

    //* Run the Genesis loop
    genesis();

    February 7, 2017 at 2:22 pm in reply to: Minimum Pro Homepage with Featured Images #200724
    Bren Pace
    Member

    Oh my gosh, thank you! You're awesome, Brad!

    June 30, 2015 at 9:13 am in reply to: Genesis Framework and SEO #157934
    Bren Pace
    Member

    Thank you, Dareen and Moody.

    I don't want to bash Yoast because apparently they have something good going on, but there are also several other SEO plugin's out there that are less popular.

    I'm sticking to my native theme seo and going to ride it out for awhile. I will agree that Yoast is rather confusing to set up. I tried it a few years ago and was totally lost. 🙂

    Thanks again for good convo.

    June 29, 2015 at 12:40 pm in reply to: Genesis Framework and SEO #157858
    Bren Pace
    Member

    Thanks so much for your info!

    June 29, 2015 at 6:35 am in reply to: Genesis Framework and SEO #157815
    Bren Pace
    Member

    Thank you, Gregg. I don't focus too much on SEO and quickly frankly I was using Yoast until the latest update and it hosed my blog. I think the Theme SEO gives me just the amount of SEO I'm looking for. I do thank you for the additional information. Thanks.

    Brenda

    June 28, 2015 at 1:17 pm in reply to: Genesis Framework and SEO #157761
    Bren Pace
    Member

    Thank you all for replying. I've been debating this with some other bloggers and most have told me "Yes, you need Yoast" however, these are also bloggers that aren't using Genesis Framework.

    I'm going to stick to what I've been doing and keep my webby one less plugin free. 😉

    Thank you again!

    Brenda

    December 24, 2013 at 4:45 pm in reply to: Merry Christmas To All #81107
    Bren Pace
    Member

    Same to you Rob!

    October 3, 2013 at 6:16 am in reply to: Featured Image Outlined, Fabric Theme #65195
    Bren Pace
    Member

    Thank you so much! I removed that code plus changed the background color! Perfect! 🙂

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

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