• 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

Teresa

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 38 total)
1 2 →
  • Author
    Posts
  • December 13, 2019 at 7:06 pm in reply to: Kreativ Pro Theme #495495
    Teresa
    Participant

    OK. I get it. It's the link, not a page in the theme.

    Thanks.

    February 16, 2018 at 7:12 am in reply to: News Pro – Footer Text Color #216606
    Teresa
    Participant

    Hmmm... that is very odd. I'm seeing something different this morning from what I saw yesterday afternoon. But it's what I wanted, so that works.

    Thank you for your help.

    February 15, 2018 at 3:05 pm in reply to: News Pro – Footer Text Color #216589
    Teresa
    Participant

    It isn't the link color I want to change, it's the rest of the text.

    The link (hover) color is red, and that's fine. What I want to do is make the text white.

    Thanks!

    May 19, 2017 at 7:05 am in reply to: Design Pro Font Size #206693
    Teresa
    Participant

    That fixed it!

    Thank you so much.

    Teresa

    May 19, 2017 at 7:04 am in reply to: Design Pro Font Size #206692
    Teresa
    Participant

    Sorry. My apologies. I'm not sure I was awake when I posted that. 🙂

    I'll go back and look again.

    Thanks.

    Teresa

    May 14, 2017 at 7:40 am in reply to: Hello! Pro Font Sizes #206405
    Teresa
    Participant

    I appreciate your responses. I've never run into these problems with any of the StudioPress themes before, which is why I wondered if it being a Third Party Theme was causing the problem.

    Re: WordPress debug - is that a plugin? If not, how do I turn it on?

    Re: Editing the theme - would I do this in the Stylesheet and just replace it via FTP?

    Thank you very much.

    Teresa

    May 13, 2017 at 2:33 pm in reply to: Hello Pro Theme #206385
    Teresa
    Participant

    Thanks!

    February 15, 2017 at 9:20 am in reply to: Suggestion for a Theme #201232
    Teresa
    Participant

    I've been working with the theme as is. I'm just so used to Genesis/StudioPress themes, working with anything else seems very foreign.

    Everything shown on that theme are posts. Not really anything special.

    I'll continue to work with it to see what I can come up with.

    Thanks for taking the time to answer.

    Teresa

    August 24, 2016 at 1:33 pm in reply to: Modifying Genesis #191971
    Teresa
    Participant

    Maybe I should have, but it's too late now. 🙂

    August 24, 2016 at 1:22 pm in reply to: Modifying Genesis #191963
    Teresa
    Participant

    Well, I wondered about that. But since I didn't know these people and I wasn't part of the
    conversation, I thought it would be best if I just stayed out of it.

    But you know how it is when you get curious about something. 🙂

    Thanks for you input.

    Teresa

    December 8, 2015 at 7:08 am in reply to: News Pro – Need to change top margin #173195
    Teresa
    Participant

    Thank you so much! Worked like a charm.

    I will mark this as resolved.

    Teresa

    April 10, 2014 at 8:09 am in reply to: Prose Widgets Still There After Child Theme is Changed #99487
    Teresa
    Participant

    You were right, Brad. "Prose Extras" was the plugin. I didn't even know it was there.

    Thanks for your help!

    April 10, 2014 at 8:07 am in reply to: Prose Widgets Still There After Child Theme is Changed #99486
    Teresa
    Participant

    Hmmmm.... hadn't thought of that. I'll check.

    Thanks.

    December 19, 2013 at 5:27 pm in reply to: Landing Page Plugin #80348
    Teresa
    Participant

    You did it!

    http://www.centerforempoweredwomen.com/thank-you-and-welcome/

    How can I ever thank you??

    December 19, 2013 at 5:08 pm in reply to: Landing Page Plugin #80344
    Teresa
    Participant

    That definitely shrunk the container, the text still goes outside it. Is there a way to keep the text inside the container?

    http://www.centerforempoweredwomen.com/thank-you-and-welcome/

    You are an angel to help me like this. I deeply appreciate it.

    Thanks.

    Teresa

    December 19, 2013 at 4:14 pm in reply to: Landing Page Plugin #80330
    Teresa
    Participant

    I deeply appreciate your help. But I think I've fixed most of it. Here is the link to the page:
    http://www.centerforempoweredwomen.com/thank-you-and-welcome/

    And here is the code that I finally got to remove both the top Navigation and the footer widgets:

    <?php
    /**
    * This file adds the Landing template to the Education Theme.
    *
    * @author StudioPress
    * @package Education Pro
    * @subpackage Customizations
    */

    /*
    Template Name: Landing
    */

    //* Add landing body class to the head
    add_filter( 'body_class', 'education_add_body_class' );
    function education_add_body_class( $classes ) {

    $classes[] = 'education-landing';
    return $classes;

    }

    //* Force full width content layout
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );

    // Remove header, navigation, breadcrumbs, footer widgets, footer
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    remove_action( 'genesis_header', 'genesis_do_header' );
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
    remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
    remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_subnav' );
    remove_action( 'genesis_before_content', 'genesis_do_breadcrumbs' );

    //* Remove site footer widgets
    remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );

    //* Remove site footer elements
    remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );

    //* Run the Genesis loop
    genesis();

    The only thing I want to do now is to change the container width so that the text doesn't spread out so wide. I tried to use the one Brad Dalton suggested, but I didn't have any luck with it.

    If you can help me with that, I will be ever so grateful and I'll leave you alone - at least temporarily 🙂

    Thanks so very much.

    Teresa

    December 19, 2013 at 9:16 am in reply to: Landing Page Plugin #80203
    Teresa
    Participant

    It didn't work. So I'm going to start over and go through it step-by-step like I've done with your help for the past 2 days.

    I have a better idea of what I should be looking for this time. Maybe I can catch the problem when it happens.

    If I Deactivate the Genesis Simple Edits plugin, will that cause the theme to revert to the original content, or will it keep the changes I've made?

    I'll start working on the Landing Page right now and keep you posted.

    Thank you so much Andrea. I know this takes time away from your own business projects and I deeply appreciate your help.

    Teresa

    December 18, 2013 at 6:15 pm in reply to: Landing Page Plugin #80072
    Teresa
    Participant

    Does it matter where I add it?

    Thanks.

    Teresa

    December 18, 2013 at 5:43 pm in reply to: Landing Page Plugin #80067
    Teresa
    Participant

    I do have Simple Edits installed, but I've done some tinkering with the template and now something else weird has happened.

    If you look at the page again: http://www.centerforempoweredwomen.com/thank-you-and-welcome/ you'll see that the footer widget is gone, but the top Navigation menu is back.

    What I did was this: I copied the Landing page .php from the Balance theme and substituted it for the one we were using that got rid of the top Navigation, but left the Footer Widgets.

    It got rid of the Footer Widgets and brought back the top Navigation. How's that for weird? LOL

    Any suggestions now? I can start all over - whatever you suggest. If we simply can't get rid of the top Navigation, that's better than having the Footer widgets, but I'd like to get rid of all of it.

    Thanks so much for your patience.

    Teresa

    December 18, 2013 at 9:27 am in reply to: Landing Page Plugin #79960
    Teresa
    Participant

    I'm sure it's something I've done. Here you go:

    <?php
    /**
    * This file adds the Custom Landing template to the Education Theme.
    *
    * @author Brad Dalton
    * @package Generate
    * @subpackage Customizations
    */

    /*
    Template Name: Landing
    */

    // Add custom body class to the head
    add_filter( 'body_class', 'education_add_body_class' );
    function education_add_body_class( $classes ) {
    $classes[] = 'custom-landing';
    return $classes;
    }

    // Remove header, navigation, breadcrumbs, footer widgets, footer
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    remove_action( 'genesis_header', 'genesis_do_header' );
    remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
    remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
    remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_subnav' );
    remove_action( 'genesis_before_content', 'genesis_do_breadcrumbs' );
    remove_action( 'genesis_after', 'genesis_footer_widget_areas' );
    remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );

    genesis();

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

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