• 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

ilkweb

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 46 total)
1 2 3 →
  • Author
    Posts
  • January 2, 2024 at 7:30 am in reply to: Easiest way to add a hamburger menu to a classic Genesis theme? #507808
    ilkweb
    Participant

    This plugin might still work to get hamburger menus https://wordpress.org/plugins/genesis-club-lite/

    June 17, 2020 at 10:53 am in reply to: Genesis Accessibility Components: Skip Links missing javascript? #499364
    ilkweb
    Participant

    I just cleared my cache again, and this time the changes seem to have taken effect. Thanks!

    May 2, 2020 at 7:46 am in reply to: Show/hide footer area conditional logic is mis-firing in functions.php #498385
    ilkweb
    Participant

    Thanks, Victor.

    I never thought Brad's code was wrong, but I do know that the Business Pro theme I used had been heavily customised even before I started tweaking it.

    I've reached out to SEO Themes, the makers of Business Pro, with a complete and detailed message identifying the problem, and to ask which hooks I ought to be targeting to remove the footer completely on certain pages.

    Thanks again! Stay safe!

    April 30, 2020 at 4:22 am in reply to: Show/hide footer area conditional logic is mis-firing in functions.php #498308
    ilkweb
    Participant

    I didn't Anita. I don't really want to bother him.

    October 23, 2019 at 11:20 am in reply to: Quick feedback needed please – CSS inconsistency across browsers #494212
    ilkweb
    Participant

    I solved this in the end. I used the Chrome browser in Chinese and the issue appeared. With some recoding of CCS there's a happy medium now between English and Chinese.

    October 23, 2019 at 10:00 am in reply to: Quick feedback needed please – CSS inconsistency across browsers #494210
    ilkweb
    Participant

    I just got vital feedback which makes my questions a little redundant: these "gap" issues only occur when Chinese is set as the default system preference.

    October 23, 2019 at 6:03 am in reply to: Quick feedback needed please – CSS inconsistency across browsers #494200
    ilkweb
    Participant

    Thanks for checking, Victor.

    October 7, 2019 at 6:09 am in reply to: Quick feedback needed – do you see these images #493891
    ilkweb
    Participant

    Thanks. I'm satisfied that this issue is resolved.

    October 4, 2019 at 3:06 am in reply to: Business Pro Featured Image for the Portfolio Archives #493863
    ilkweb
    Participant

    Come over to the Genesis Slack group. Lee from SEO themes hangs out there. I use the same theme as you, although I'm not using the portfolio feature so cannot help you there.

    If I were to guess, I'd say the featured image is under the Customizer.

    SEO Themes have some documentation online here: https://docs.seothemes.com/

    October 3, 2019 at 4:59 am in reply to: How to remove "This content is password protected…" from content feedsummaries #493838
    ilkweb
    Participant

    I solved it with this code:

    function my_excerpt_protected( $excerpt ) {
    if ( post_password_required() ) {
    $post = get_post();
    $excerpt=$post->post_excerpt;
    }
    return $excerpt;
    }
    add_filter( 'the_excerpt', 'my_excerpt_protected' );
    October 2, 2019 at 11:29 am in reply to: How to remove "This content is password protected…" from content feedsummaries #493832
    ilkweb
    Participant

    I've been referencing this WP codex link for the code for other parts of the password protection functionality I've been customizing.

    September 27, 2019 at 6:42 am in reply to: "Hamburger" menu suddenly looks odd – What is affecting it? #493747
    ilkweb
    Participant

    Thanks Victor. I solved this and arrived at the same conclusion as you. Thanks for replying.

    September 27, 2019 at 6:40 am in reply to: Mobile Hamburger Menu Monochrome Pro #493746
    ilkweb
    Participant

    Did you get this working?

    What theme are you using?

    There's a site you can use for quick testing of viewports: https://ready.mobi/

    It seems to be ok according to that site. The useful thing is that you can use the element inspector on those viewports and see your own html and css.

    September 14, 2019 at 4:52 am in reply to: Hide footer area on certain pages? #493565
    ilkweb
    Participant

    I actually do need the plugin though - Without it, the widgets show up where I don't want them to. I've yet to replace the conditionals I put into the plugin with the equivalent conditionals in functions.php.

    I've been looking for a way to do this, as seemingly, what I presently have in functions.php is not sufficient.

    September 14, 2019 at 4:41 am in reply to: Hide footer area on certain pages? #493563
    ilkweb
    Participant

    I've used the following in functions.php to hide the actually footer widgets wrapper which I'm describing as the "footer widgets area":

    /* Show footer widget area on certain pages */
    
    add_action( 'genesis_before', 'wpsites_display_footer_home' );
    function wpsites_display_footer_home() {
    if( !is_page( array( 47, 18, 20 ) ) || is_404() || is_search() ) {
    remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
    remove_action('genesis_footer', 'genesis_do_footer');
    remove_action('genesis_footer', 'genesis_footer_markup_open', 5);
    remove_action('genesis_footer', 'genesis_footer_markup_close', 15);
    }}

    I'm also using a conditional logic plugin for individual widgets to hide the four widgets I have:

    is_page( array( 47, 18, 20 ) ) || is_404() || is_search()

    This is working so far but I think I could probably lose the conditional logic plugin.

    September 14, 2019 at 4:31 am in reply to: Hide footer area on certain pages? #493561
    ilkweb
    Participant

    I think I wrongly described what I'm trying to do.

    I actually want to remove the footer widgets plus the footer widgets area. The footer, I understand, is where the credits reside.

    August 26, 2019 at 11:18 am in reply to: Register a second sticky nav/menu at the BOTTOM of the webpage #493192
    ilkweb
    Participant

    Hi Brad, I'm using Genesis Simple Hooks in combination with some other methods. I'm almost there, and am using part of your code.

    Thanks for the help!

    August 26, 2019 at 6:40 am in reply to: Register a second sticky nav/menu at the BOTTOM of the webpage #493187
    ilkweb
    Participant

    The below code is creating TWO footers on my webpage.

    function register_additional_menu() {
      
    register_nav_menu( 'third-menu' ,__( 'Footer Navigation Menu' ));
         
    }
    add_action( 'init', 'register_additional_menu' );
    
    add_action( 'genesis_footer', 'add_third_nav_genesis' ); 
    
    function add_third_nav_genesis() {
    
    wp_nav_menu( array( 'genesis_footer' => 'third-menu', 'container_class' => 'genesis-nav-menu' ) );
    
    }
    
    echo'
    
    <div class="third-menu">';
    wp_nav_menu( array( 'genesis_footer' => 'third-menu', 'container_class' => 'genesis-nav-menu' ) );
    echo'</div>
    
    ';

    If I remove

    <div class="third-menu">';
    wp_nav_menu( array( 'genesis_footer' => 'third-menu', 'container_class' => 'genesis-nav-menu' ) );
    echo'</div>

    I have the one footer, where I want it, but without the classes and subclasses I need.

    At present the CSS I'm targeting is

    #menu-footer {
      text-align:center;
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: red;
      color: white;
      text-align: center;
      z-index:1000;
    	}

    I'm unable to center my nav as I would like to use margin:0 auto; while keeping the outer container at width: 100%;

    I'm getting there gradually.

    August 26, 2019 at 5:12 am in reply to: Register a second sticky nav/menu at the BOTTOM of the webpage #493185
    ilkweb
    Participant

    The code you posted in your tutorial breaks my CSS. I'm using a multisite.

    I'm going over the code you posted but I cannot understand what is wrong with it, if anything is wrong.

    July 18, 2019 at 2:51 am in reply to: Attempting to widgetize my theme using functions but site crashing #492415
    ilkweb
    Participant

    Thanks, Victor. That was indeed the solution.

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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