• 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

[email protected]

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 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • October 21, 2015 at 6:09 pm in reply to: Very strange extra links added to menus #168695
    [email protected]
    Member

    All normal:

    October 21, 2015 at 5:42 pm in reply to: Very strange extra links added to menus #168692
    [email protected]
    Member

    Thanks for the reply Porter! Yeah, as you said removing the padding, which I could do in a round about way in css (and probably will) will solve it, but why the heck are those "buttons to the home page with no text" areas in there? Where did they come from??

    null

    August 26, 2015 at 4:13 pm in reply to: Different excerpt/content display for Custom Post Type Archives #163640
    [email protected]
    Member

    bumping this up - any suggestions?

    October 27, 2014 at 2:28 pm in reply to: Genesis Pagination incomplete (caps at 28 pages) #129479
    [email protected]
    Member

    Hey James! I'm still using that plugin because I'm using the grid loop functions in a totally different way for the category archives, and so I needed the homepage to function like a regular gridloop + pagination, which I achieved with the Amplified plugin. (Super roundabout, but this is like the 3rd generation of how the homepage was functioning).

    BUT ALL THAT SAID - I really think the Amplified plugin is a red herring here. When I deactivate it completely, my problem with capped pagination at 28 pages persists!

    September 2, 2014 at 12:50 pm in reply to: Metro Pro – Why so many extra, blank Pagination pages? #122448
    [email protected]
    Member

    Hi Anita! Yep, tried that right after I posted here - no effect 🙁

    Realized I no longer needed the amplification features for this one, so kept it off.

    Any other ideas?

    MH

    January 29, 2014 at 1:34 pm in reply to: Combining Date, Post Title, and comments link into one line #87716
    [email protected]
    Member

    OK got this figured out! here's what I did:

    in Functons.php:

    add_action( 'genesis_entry_header', 'custom_entry_header', 5);
    function custom_entry_header() {
     
    	if ( ! is_page() ) {
    		echo '<div class="entry-time">';
    		echo do_shortcode( '[post_date]' );
    		echo '</div><!-- end .entry-time -->';
                 
    	}
     
    }

    then just messing with FLOAT in the stylesheet for .entry-time .entry-comments-link

    thanks for your help MarketLearner!

    January 27, 2014 at 7:41 pm in reply to: Combining Date, Post Title, and comments link into one line #87360
    [email protected]
    Member

    Ah, OK I've never messed with priority numbers before. How do I tell it to do [post-date] first, then the post title, then the [post_comments]?

    Something like this? Or am I making it way too complicated?

    
    remove_action('genesis_entry_header', 'genesis_do_post_title');
    add_action( 'genesis_entry_header', 'custom_entry_header' );
    function custom_entry_header() {
     
    	if ( ! is_page() ) {
    		echo '<div class="entry-time">';
    		echo do_shortcode( '[post_date' );
    		echo '</div><!-- end .entry-time -->';
                    add_action( 'genesis_entry_header', 'do_genesis_post_title' );
                    echo '<div class="entry-comments-link">';
    		echo do_shortcode( '[post_comments' );
    		echo '</div><!-- end .entry-comments-link -->';
    	}
     
    }
    
    April 3, 2013 at 5:54 pm in reply to: Switching single post title h1 with h2 #32957
    [email protected]
    Member

    That did the trick!  thank you!

    For anyone referring back to this post, here's how I tweaked it:

     
    /** make single post titles H2 instead of H1 **/

    add_filter( 'genesis_post_title_output', 'ac_post_title_output', 15 );
    function ac_post_title_output( $title ) {
    if ( is_single () )
    $title = sprintf( '<h2 class="entry-title"><span>%s</span></h2>', apply_filters( 'genesis_post_title_text', get_the_title() ) );
    return $title;
    }

    January 28, 2013 at 9:05 pm in reply to: Multiple Posts in Featured Tabs widget #15867
    [email protected]
    Member

    FOUND A STOPGAP SOLUTION:

    Using this code for a new plugin and deactivating the main Genesis Tabs plugin (but not deleting):  https://gist.github.com/4455461

    Then delete the current widget that wasn't working, drop in a new one, and there is a field for "Number of posts per cat?"

    I had to re-tweak some CSS stuff, but it's working.

    The selected-category is still not staying as the hover color though - this may be a deeper issue in the plugin.

    Matt

    January 28, 2013 at 8:34 pm in reply to: Multiple Posts in Featured Tabs widget #15860
    [email protected]
    Member

    Note - the error wherein the selected tab does not take on the new color is a problem on the unedited plugin - it's happening on the NEWS Child Theme demo page as well.  Seems like the plugin itself will need an update to fix that regardless of our multiple posts hacks.

     

     

    January 28, 2013 at 7:00 pm in reply to: Multiple Posts in Featured Tabs widget #15832
    [email protected]
    Member

    One other thing that has broken with that, in my Stylesheet had these lines that made the current tab selected display as the hover cover, like a a:current in a nav bar.  The hover still works correctly, but not the selected

     #home-top .ui-tabs ul.ui-tabs-nav li a:hover,
     #home-top .ui-tabs ul.ui-tabs-nav li.ui-tabs-selected a {
     background-color: #cae5f0;
     color: #fff;
     }
    
    
    January 28, 2013 at 6:55 pm in reply to: Multiple Posts in Featured Tabs widget #15827
    [email protected]
    Member

    Same problem here - just realized the 3.5 update broke 3 of my sites this way!  If anyone finds a solution, please let me know!

    Matt

    January 9, 2013 at 3:49 pm in reply to: Attached Featured images not displaying in archives #10809
    [email protected]
    Member

    Bumping this up - any help?  please??

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 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