• 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

PhilMurray

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 78 total)
← 1 2 3 4 →
  • Author
    Posts
  • August 19, 2014 at 1:49 pm in reply to: Hide Primary Sidebar if empty #119844
    PhilMurray
    Participant

    Thanks Genwrock - that's perfect actually

    thanks Anita - yes i don't want full page width - i prefer the narrower content width in this case - but as long as only LOGGED IN users see that Primary Widget panel - that's fine

    cheers

    Phil

    August 18, 2014 at 12:36 am in reply to: Targeting ancestor in menu in Genesis Sample Theme #119469
    PhilMurray
    Participant

    Terrific Sridhar - that nailed it

    thanks very much for sorting that.

    Phil

    August 17, 2014 at 11:27 pm in reply to: Targeting ancestor in menu in Genesis Sample Theme #119459
    PhilMurray
    Participant

    Thanks Sridhar

    i tried that - it highlights the ancestor ok but not all the SUB MENU items are also highlighted

    any idea how to fix that?

    thanks
    Phil

    August 16, 2014 at 12:23 pm in reply to: Targeting ancestor in menu in Genesis Sample Theme #119234
    PhilMurray
    Participant

    hi

    I am having a similar problem

    I am re-building the child theme for my site http://www.fingerprintdigitalmedia.com and have some CATEGORY links in the top menu

    if you look at the OUR CLIENTS link and click one of it's sub links i would like the TOP LEVEL item [ie: OUR SERVICES to be highlighted.

    i tried;
    .genesis-nav-menu a:hover,
    .genesis-nav-menu .current-menu-item > a,
    .genesis-nav-menu .sub-menu .current-menu-item > a:hover,
    .genesis-nav-menu > .menu-item.current-page-ancestor > a {
    color: #ac8ad9;
    }

    but the menu link is not getting highlighted

    it is because the sub menu link is a CATEGORY? if so how do i fix the CSS?

    thanks

    Phil

    August 16, 2014 at 12:11 am in reply to: Sub-Menu Opacity #119178
    PhilMurray
    Participant

    hi miija

    yes thanks - it's a new site i am building

    http://www.fingerprintdigitalmedia.com/corkgc/

    cheers

    Phil

    August 14, 2014 at 11:22 am in reply to: Post Navigation Missing #118824
    PhilMurray
    Participant

    Thanks genwrock -- that's perfect now

    cheers

    Phil

    August 14, 2014 at 11:05 am in reply to: Post Navigation Missing #118818
    PhilMurray
    Participant

    Thanks genwrock

    yes the PAGINATION is working ok - but the POST NAV isn't [ie: Next | Previous etc at bottom of posts]

    is POST NAV built in automatically to the Genesis Sample Theme?

    thanks

    Phil

    August 14, 2014 at 9:13 am in reply to: Post Navigation Missing #118791
    PhilMurray
    Participant

    does it only kick in if there are 10+ posts on a site genwrock?

    i know i can add code to functions.php to get it to work -- but i assumed post navigation was built into the genesis sample child theme?

    thanks

    Phil

    August 14, 2014 at 7:33 am in reply to: Post Navigation Missing #118770
    PhilMurray
    Participant

    hi genwrock

    no only 3 so far - it's a new build you see

    August 14, 2014 at 5:49 am in reply to: Portfolio Items in Featured Post Widget #118751
    PhilMurray
    Participant

    actually this one by is Jo Waltham is perfect

    https://github.com/calliaweb/featured-custom-post-type-widget-for-genesis

    Phil

    August 14, 2014 at 5:42 am in reply to: Portfolio Items in Featured Post Widget #118749
    PhilMurray
    Participant

    looks like I have a solution with this PLUGIN

    http://wordpress.org/plugins/ultimate-posts-widget/screenshots/

    cheers

    Phil

    August 9, 2014 at 4:08 pm in reply to: Arranging Widget Area order #117998
    PhilMurray
    Participant

    brilliant Jan - thanks - worked a treat

    cheers

    Phil

    August 9, 2014 at 3:50 pm in reply to: Arranging Widget Area order #117996
    PhilMurray
    Participant

    hi Jan

    i tried that but the widget gets added above the PRIMARY NAV --- so looks like giving it an order ID is causing it to not sit below the NAV

    So do I need to give the PRIMARY NAV an order ID of it's own?

    if so - how?

    thanks

    Phil

    August 9, 2014 at 3:45 pm in reply to: Arranging Widget Area order #117995
    PhilMurray
    Participant
    This reply has been marked as private.
    August 9, 2014 at 1:39 pm in reply to: Arranging Widget Area order #117972
    PhilMurray
    Participant

    Thanks a lot Jan - will do

    where it says 'childtheme' - do i place the name of the childtheme in there or leave it as 'childtheme' ?

    thanks

    Phil

    August 9, 2014 at 12:53 pm in reply to: Arranging Widget Area order #117957
    PhilMurray
    Participant

    hi Jan

    this is one of them

    thanks

    Phil

    /** Register Widget Area */

    genesis_register_sidebar( array(
    'id' => 'widget_before_content',
    'name' => __( 'Homepage Below Menu' ),
    'description' => __( 'This is below the bottom menu of the homepage.' ),
    ) );

    /** Add Slider Widget Area */

    add_action( 'genesis_after_header', 'widget_before_content' , 3);
    function widget_before_content() {
    echo '<div class="widget_before_content">';
    dynamic_sidebar( 'widget_before_content' );
    echo '</div>';
    }

    August 9, 2014 at 12:44 pm in reply to: Arranging Widget Area order #117951
    PhilMurray
    Participant

    Thanks Jan --- i will try that

    but do I need to add something in functions.php for the PRIMARY NAV also? is it registered as 'genesis_after_header' too in the core code? or will it always sit directly below the HEADER anyway even if other widgets are added to 'genesis_after_header' ?

    also - i have styled the WIDGETS with background colours - but if the widget is not used [ie: has nothing in it] the backgroudn colour is still showing up on the site - how do I have the widgets NOT show up on the site unless they are being used?

    thanks

    Phil

    August 2, 2014 at 8:20 am in reply to: Content Slide Effect #116674
    PhilMurray
    Participant

    hi Antiac

    if you look at the Minimum Pro theme - http://my.studiopress.com/themes/minimum/#demo-full

    when you scroll - the content slides up over the large photo and under the header -- how is that achieved?

    thanks

    Phil

    July 25, 2014 at 8:55 am in reply to: Styling a Category Blog Page #115822
    PhilMurray
    Participant

    I managed to get round it using this neat plugin from Bill Erikson

    Genesis Title Toggle

    cheers

    Phil

    July 25, 2014 at 8:41 am in reply to: Styling a Category Blog Page #115821
    PhilMurray
    Participant

    hi Kellywise

    ok - i found the problem

    in my functions.php file i have code to remove PAGE TITLES - [which i live because I want to show my own Page Titles in the actual content]

    //* Remove page title for a specific page (requires HTML5 theme support)
    add_action( 'get_header', 'child_remove_page_titles' );
    function child_remove_page_titles() {
    if ( is_page( )) {
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }
    }

    Because I am using a PAGE to display a single category of POSTS - i reckon that must be removing the actual POST TITLES also

    so - anyway to get round this? I would like to keep the above code IN the functions.php but I want to be able to see the POST TITLES

    thanks

    Phil

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

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