• 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

sahdow

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 56 total)
1 2 3 →
  • Author
    Posts
  • May 25, 2019 at 12:27 pm in reply to: Modify Header on Kreativ Pro #491336
    sahdow
    Participant

    In customizer logo is under site-identity not header image

    October 31, 2018 at 6:26 am in reply to: Using an SEO plugin that doesn't trigger Genesis SEO deactivation #224091
    sahdow
    Participant

    Thanks Victor solution for anyone else who needs it is below:

    /** Disable Genesis SEO When SmartCrawl Enabled */
    add_filter('genesis_detect_seo_plugins', 'md_disable_genesis_seo');
    function md_disable_genesis_seo( $array ) {
        $array['classes'][] = "Smartcrawl_Loader";
        return $array;
    }
    September 30, 2018 at 4:37 pm in reply to: Pretty Chic Pro Header Obscured by Admin Bar #223465
    sahdow
    Participant

    Thanks Victor, I had tried that before but had a caching issue - your reply led me to fix it.

    December 28, 2017 at 11:12 am in reply to: Position JetPack Sharing buttons below page break navigation #214899
    sahdow
    Participant

    In case anyone else runs into this problem, here are the snippets to remove and reposition (after post content and meta, above comment form) the sharing buttons in Genesis.

    // Remove JetPack Sharing Buttons	
    function remove_jetpack_share_button() {
        remove_filter( 'the_content', 'sharing_display',19 );
        remove_filter( 'the_excerpt', 'sharing_display',19 );
    }
    
    add_action( 'loop_start', 'remove_jetpack_share_button' );
    	
    // Reposition JetPack Sharing Buttons
    add_action('genesis_entry_footer', 'genesis_share_after_content');
    function genesis_share_after_content() {
        if ( function_exists( 'sharing_display' ) )
        return sharing_display( '', true );
    }
    September 18, 2015 at 12:02 pm in reply to: latest Genesis update causing CPT archive issues? #166022
    sahdow
    Participant

    I had a different issue with a CPT on one site after updating to genesis 2.2.2 - takes forever to load.

    Still looking for a permanent solution, but reverting to genesis 2.1.2 has provided a work around.

    August 10, 2015 at 9:50 am in reply to: Custom post type archive template question #161937
    sahdow
    Participant

    Providing you are trying to override theme settings and have CPT display differently than regular post types...

    Add to functions - replace CPT with your post type (3 occurrences in following snippet

    add_action( 'genesis_before', 'CPT_conditional_actions' );
    function CPT_conditional_actions() {
        if( is_archive() && 'CPT' == get_post_type() ) {
            //put your actions here
            remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
            add_action( 'genesis_entry_content', 'the_content' );
     
        }
     
    }
    July 24, 2015 at 2:49 pm in reply to: Adjusting Featured Image Size on Home Page #160353
    sahdow
    Participant

    Read reply #156184 immediately above mine.

    Click on his link (it's not in the signature - which I would be totally cool with). Takes you to a page that requires a purchase to get the solution, how's that not pitching your wares in a support forum?

    I don't care how much someone contributes, most forums would consider that a TOS violation.

    "Here’s my solution http://wpsites.net/wordpress-themes/move-featured-image-before-title-on-genesis-grid-loop/"

    July 24, 2015 at 2:19 pm in reply to: Adjusting Featured Image Size on Home Page #160345
    sahdow
    Participant

    Braddalton pitching your membership site in the forums isn't cool. Why not just post the code you mention and be part of the community, or if you want to charge for your information - do it in the appropriate place.

    March 11, 2015 at 12:35 pm in reply to: Change Text of Continue Reading with Manual Excerpt in Post Archives #144064
    sahdow
    Participant

    Thanks for the reply, I figured out the issue - sharing in case anyone else has the same problem:

    It's a plugin conflict with "Q and A FAQ and Knowledge Base for WordPress" The plugin overrides the theme functions which is why I couldn't get any excerpt functions to work.

    https://wordpress.org/support/topic/plugin-conflict-with-custom-excerpt-continue-reading-link#post-4123181

    August 15, 2014 at 2:29 pm in reply to: Streamline-Pro featured widgets #119086
    sahdow
    Participant

    Thanks, genrock but it doesn't work, hence my reason for the post - see my original post

    August 15, 2014 at 1:12 pm in reply to: Streamline-Pro featured widgets #119030
    sahdow
    Participant

    Basically, want the featured widgets to display below the post content and sidebar (content_sidebar_wrap) and move it down immediately above the footer widgets.
    Screen shot example

    January 18, 2013 at 6:02 pm in reply to: Help with How to Remove a Date Block #12999
    sahdow
    Participant

    Find the following in post functions:

    /** Add post image above post title */
    add_action( 'genesis_before_post_title', 'decor_post_image' );
    function decor_post_image() {

    if ( is_page() ) return;

    if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
    printf( '<a href="%s" rel="bookmark" class="post-photo"><span class="post-date">%s</span><img src="%s" alt="%s" /></a>', get_permalink(), do_shortcode( '<em>[post_date format="j"]</em>[post_date format="F Y"]' ), $image, the_title_attribute( 'echo=0' ) );
    }

    }

     

    Change to:

    /** Add post image above post title */
    add_action( 'genesis_before_post_title', 'decor_post_image' );
    function decor_post_image() {

    if ( is_page() ) return;

    if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
    printf( '<a href="%s" rel="bookmark" class="post-photo"><img src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
    }

    }

    December 29, 2012 at 3:47 pm in reply to: Genesis Featured posts and internet explorer #8214
    sahdow
    Participant

    Did you import your content from another WordPress site, or are you using multi-site?

    December 20, 2012 at 12:11 pm in reply to: Slider help #6466
    sahdow
    Participant

    Also note the width of  "home-middle-1" - you are placing a 900 px slider in a 285 px box

    December 1, 2012 at 5:04 pm in reply to: Widget help (CSS & Placement) #2801
    sahdow
    Participant

    I find it's easiest to deal with one issue at a time. From what I can see (just glancing) you haven't defined margins. Think of the margin as the container, but the padding as the space inside the container and how close to the walls.

    Start by centering your footer menu:

    Top left/right Bottom
    0        auto      0

    http://www.w3schools.com/css/css_margin.asp 

    Then look at your list items, set to display inline

    http://www.w3schools.com/css/css_list.asp

     

     

    December 1, 2012 at 10:03 am in reply to: Looking for feedback / suggestions on my Surf / Kayak Studio Press News Blog #2756
    sahdow
    Participant

    Page background makes top menu hard to read, perhaps add a background to the menu.

    December 1, 2012 at 10:01 am in reply to: Help Styling a "Follow Buttons" Section #2755
    sahdow
    Participant

    Have you tried adding a float left to the images?

    something like ( I didn't test):

    # nav li img {
    float: left;
    margin-right: 10px;
    }

    Also check the rss and twitter classes in your style sheet and you can use the #follow id associated with the list item the foloow information is in.

     

     

    December 1, 2012 at 9:33 am in reply to: Creating Custom Pages #2752
    sahdow
    Participant

    I used a slider not long ago that allowed me to have more than one. Unfortunately can't remember what it was called but a quick search found:

    Spider Slider
    Responsive Slider Mod

    November 30, 2012 at 4:00 pm in reply to: Creating Custom Pages #2646
    sahdow
    Participant

    I don't want to step on any toes and I don't want to get paid for something  like that either, but if you post exactly what you have so far on the page template and functions.php I'll tweak it since (as far as I can tell - you basically have it).

    November 30, 2012 at 12:35 pm in reply to: Creating Custom Pages #2583
    sahdow
    Participant

    Sozo is right, I forgot it's a page template, so there is a place to select the simple sidebars.

    As for my example, all the bolded items are what need to be changed.

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

© 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