• 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

Scott Buehler

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 29 total)
1 2 →
  • Author
    Posts
  • January 16, 2015 at 5:19 am in reply to: Favicon will not change! #137649
    Scott Buehler
    Member

    Hello, this is likely a browser caching issue. However, I wanted to point out that your site is currently outputting to meta tags for a shortcut

    <link rel="shortcut icon" href="http://insight.crystalbastrology.com/wp-content/uploads/2015/01/favicon.ico" /><link rel="Shortcut Icon" href="http://www.crystalbastrology.com/favicon.png" type="image/x-icon" />

    However, http://insight.crystalbastrology.com/wp-content/uploads/2015/01/favicon.ico is showing the world icon which is what you wanted. You may need to load that ico link in your browser and hold shift + reload to force it to pull in the new image. Or, purge your browser cache and try again.

    I would definitely remove one of the shortcut icon references though.


    TygrScott on Social Media

    January 16, 2015 at 5:11 am in reply to: "Next Page" not working on blog page #137648
    Scott Buehler
    Member

    Just a suggestion, but your main page is taking a very long time to load and that won't help SEO. Posts per page would drastically improve your page load times.... that's why that feature exists.


    TygrScott on Social Media

    October 30, 2013 at 10:41 am in reply to: Custom Post Type Move Heading #69917
    Scott Buehler
    Member

    I was able to fix what I needed with

    //* Move Featured Image Before Entry Title
    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
    add_action( 'genesis_entry_header', 'genesis_do_post_image', 3 );

    Thanks to: http://ahjira.com/move-the-post-image-before-the-post-title-on-genesis-blog-archive-and-search-results-pages/


    TygrScott on Social Media

    October 19, 2013 at 10:59 am in reply to: A few questions about Metro Pro #67680
    Scott Buehler
    Member

    braddalton, love that you provided a way to remove it from the source code with the functions.php instead of just hiding it in CSS. Any chance you can update with the genesis version of the code? Or was that opton removed in Genesis 2.0?


    TygrScott on Social Media

    October 15, 2013 at 9:08 am in reply to: Lifestyle theme widgets #66827
    Scott Buehler
    Member

    Wbizniz, without a site reference point to suggest modification with Firebug, all I can tell you is "just remove the margin and padding for the widget areas."


    TygrScott on Social Media

    October 15, 2013 at 9:04 am in reply to: .site-container size: Why 1140px? #66826
    Scott Buehler
    Member

    TeeTide, if 1170px is what you need, do it. There's no worry about horizontal scrolling here unless you remove the responsive features of the theme.

    All you need to do is account for the new width in the response CSS section to make sure it continues to behave like it did pre-modification. I've widened themes before, and didn't have too much of a hard time after adjusting the sizing in the main content and sidebar sections.


    TygrScott on Social Media

    October 13, 2013 at 6:30 pm in reply to: After single post widget #66557
    Scott Buehler
    Member

    Yep, the error was the line
    genesis_widget_area( 'after-post', array(

    Needed to be
    genesis_widget_area( 'genesis-box', array(

    Thanks Brad. Genesis support showed me the error and I appreciate both you and StudioPress support very much!


    TygrScott on Social Media

    October 13, 2013 at 7:44 am in reply to: After single post widget #66500
    Scott Buehler
    Member

    This doesn't work for me either. On new Lifestyle theme:

    genesis_register_sidebar( array(
        'id'            => 'genesis-box',
        'name'          => __( 'Genesis Box', 'lifestyle' ),
        'description'   => __( 'This is a widget area that can be placed after the post', 'lifestyle' ),
    ) );
    //* Hook Genesis box widget area after post content
    add_action( 'genesis_entry_footer', 'sp_genesis_box', 9 );
        function sp_genesis_box() {
        if ( is_single( ) )
            genesis_widget_area( 'after-post', array(
                'before' => '<div class="genesis-box widget-area">',
                'after' => '</div>',
        ) );
    }

    Regular post page doesn't display the genesis box. Using HTML5


    TygrScott on Social Media

    October 10, 2013 at 2:32 am in reply to: Want smaller borders on Lifestyle Pro #66090
    Scott Buehler
    Member

    skstigger, try Firefox's Firebug plugin. You can right click the page and Firebug then play with the CSS and HTML code to get it the way you want. Once you like something, make it permanent by altering the CSS.


    TygrScott on Social Media

    March 5, 2013 at 2:43 pm in reply to: Metro Sidebar Prevent Responsive? #24387
    Scott Buehler
    Member

    Yeah, I implied in my original post that I knew that, but I'm looking for specific ideas or tips on how to go about it in my 1024px layer.


    TygrScott on Social Media

    March 5, 2013 at 2:16 pm in reply to: Metro Sidebar Prevent Responsive? #24378
    Scott Buehler
    Member

    I posted this early AM and wonder if nobody saw it.


    TygrScott on Social Media

    February 23, 2013 at 12:58 am in reply to: Portfolio Troubles – Duplicate Image Output with entry-content #22363
    Scott Buehler
    Member

    As usual, I figure it out after spending 2 hours researching then posting, then a search does exactly what I need.

    For those of you that have featured images set in theme settings for archives, you can disable it under your archives-cpt.php file with

    /* Remove Default Featured Image from Theme Settings */
    remove_action( 'genesis_post_content', 'genesis_do_post_image' );


    TygrScott on Social Media

    February 23, 2013 at 12:49 am in reply to: Portfolio Troubles – Duplicate Image Output with entry-content #22362
    Scott Buehler
    Member

    OK, I figured out that this is a setting under Dashboard > Genesis > Theme settings. If I disable the featured image, the problem goes away.

    HOWEVER, I like the featured image on my blog archive, category, and another CPT.

    Is there a way to bypass this featured image for certain CPT archives?


    TygrScott on Social Media

    February 21, 2013 at 8:17 pm in reply to: Featured Video Placement – Willing to Pay if Needed #22123
    Scott Buehler
    Member

    Sridhar, I was able to use your code along with my membership plugin (with my own code) to do exactly what I want, even though it took me all day to get it where I want. I'm sending you a donation.

    Edit: I tried sending a donation via your button on site and it says:

    Currently PayPal accounts in India are only able to send payments. This recipient is not eligible to receive funds.


    TygrScott on Social Media

    February 21, 2013 at 2:40 pm in reply to: Featured Video Placement – Willing to Pay if Needed #22048
    Scott Buehler
    Member

    Awesome, thanks. I took it outside of  “genesis_before_content_sidebar_wrap” Hook and put it inside genesis_after_header Hook because it was showing the sidebar divider above and below the video (for my theme, if your theme doesn't have visual separator borders, it won't matter). I also added an extra div container so that I can customize exact center positioning with side/top margins.

    Further testing going on. Will edit in a few.


    TygrScott on Social Media

    February 21, 2013 at 1:45 am in reply to: Featured Video Placement – Willing to Pay if Needed #21901
    Scott Buehler
    Member

    BTW div wrapper is for responsive reasons and PHP is from my commercial membership script to either show video or to show membership requirement prompt.

    To answer your post, where you have the iframe code under post/page details, if I can add my div wrapper around the iframe tag, it'd be good. But if it can't execute PHP, then I'd have an issue with implementation. Test it with a simple PHP Date echo.


    TygrScott on Social Media

    February 21, 2013 at 1:39 am in reply to: Featured Video Placement – Willing to Pay if Needed #21898
    Scott Buehler
    Member

    Sridhar, would that Vimeo box be able to have PHP code and div wrappers as well?

    That's exactly what I want, however, it must be optional. If  a post doesn't have video such as a regular blog post, I don't want the non-video page to have a blank area. That's why I wanted a layout so I can specify if the page or post needs a featured vid.


    TygrScott on Social Media

    February 20, 2013 at 11:59 pm in reply to: Featured Video Placement – Willing to Pay if Needed #21892
    Scott Buehler
    Member

    I've read that page a few times now and it's a bit overwhelming for me. Especially when it comes to doing what I need.


    TygrScott on Social Media

    February 20, 2013 at 10:49 pm in reply to: Simple Sidebars and Custom Post Types Archives Plugins Conflict? #21872
    Scott Buehler
    Member

    What ever came of this wpsmith?


    TygrScott on Social Media

    January 15, 2013 at 10:42 am in reply to: Forum redirects to wrong URL after posting reply #12071
    Scott Buehler
    Member

    Testing

    My assumption is correct.

    1) Copy a permalink from this thread.
    2) Open new tab and paste URL
    3) Reply goes to 404


    TygrScott on Social Media

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

© 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