• 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

Jen Baumann

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 - 241 through 260 (of 288 total)
← 1 2 3 … 12 13 14 15 →
  • Author
    Posts
  • December 13, 2012 at 2:34 pm in reply to: Hyperlink Featured Image? #5028
    Jen Baumann
    Participant

    If you are using Genesis SEO, then in the SEO section for the post, you'll see Custom Redirect URI.  If using Yoast SEO, there's an Advanced Tab in the post SEO section with 301 redirect. You can past that link there.

    December 13, 2012 at 2:30 pm in reply to: adding page to menu #5027
    Jen Baumann
    Participant

    Glad you figured it out!

    December 12, 2012 at 10:24 am in reply to: Adding version to CSS #4735
    Jen Baumann
    Participant

    Nick has a tutorial: http://designsbynickthegeek.com/tutorials/versioning-your-stylesheet

    December 11, 2012 at 9:50 am in reply to: Custom Body Class on Sub Page 'Depth=3' #4501
    Jen Baumann
    Participant

    Welcome!

    December 10, 2012 at 6:15 pm in reply to: Help with Forum for Innov8tive Child Theme #4330
    Jen Baumann
    Participant

    If you want to use the standard layout on your category pages like your tags display: http://nwsuburbschicago.com/tag/deby-dato/, delete category.php from the Innov8tive theme folder.

    December 10, 2012 at 5:26 pm in reply to: Genesis and bbPress #4313
    Jen Baumann
    Participant

    You're welcome!

    Edit: Jared will likely address this in the next version of http://wordpress.org/extend/plugins/bbpress-genesis-extend/

    December 10, 2012 at 4:53 pm in reply to: Genesis and bbPress #4310
    Jen Baumann
    Participant

    Yes, the layout would only work when inside the admin area. I can replicate this and do see it shows only for administrators.

    Try this to disable the layout options and other user profile additions on the bbPress Profile Edit page:
    add_action( 'genesis_before', 'bbpress_remove_user_admin_settings' );
    function bbpress_remove_user_admin_settings() {
    if ( bbp_is_single_user_edit() ) {
    remove_action( 'show_user_profile', 'genesis_user_options_fields' );
    remove_action( 'show_user_profile', 'genesis_user_layout_fields' );
    remove_action( 'show_user_profile', 'genesis_user_seo_fields' );
    remove_action( 'show_user_profile', 'genesis_user_archive_fields' );
    }
    }

    December 10, 2012 at 12:57 pm in reply to: Custom Body Class on Sub Page 'Depth=3' #4234
    Jen Baumann
    Participant

    You could do something like this, but it assumes that your page depth is how you have it organized in the page hierarchy, not menu hierarchy.

    Due to code posting problems, I just made it a snippet here: http://dreamwhisperdesigns.com/?p=1112

    December 10, 2012 at 12:54 pm in reply to: How to add a custom class #4230
    Jen Baumann
    Participant

    Yes, it would :0)

    December 10, 2012 at 12:26 pm in reply to: How to add a custom class #4220
    Jen Baumann
    Participant

    I found your post here: http://wordpress.org/support/topic/missing-content-in-print-friendly-page

    It is probably better to add a post class.

    add_filter('post_class', 'additional_classes');
    function additional_classes($classes) {
    $classes[] = 'myclass';
    return $classes;
    }

    December 10, 2012 at 11:45 am in reply to: adding post to previous post #4202
    Jen Baumann
    Participant

    Welcome!

    December 10, 2012 at 11:35 am in reply to: How to add a custom class #4197
    Jen Baumann
    Participant

    Can you explain more what you are trying to accomplish?  Depending on what you are doing, you probably don't need to add a class to the entry-content div and can either use existing body or post classes.

    December 10, 2012 at 11:29 am in reply to: adding post to previous post #4194
    Jen Baumann
    Participant

    You need to use the blog PAGE template to display all your posts.  Add a page, then select the Blog Template at the right hand side of the edit screen.  Settings for the blog page template are under Genesis > Theme Settings.

    December 10, 2012 at 10:11 am in reply to: Genesis and bbPress #4187
    Jen Baumann
    Participant

    You might try this: http://wordpress.org/extend/plugins/bbpress-genesis-extend/

    December 10, 2012 at 9:53 am in reply to: Font image generator plugin for WordPress #4182
    Jen Baumann
    Participant

    You might be able to do something with this: http://wordpress.org/extend/plugins/proquoter/

     

    December 9, 2012 at 10:25 am in reply to: Change logo padding #4011
    Jen Baumann
    Participant

    Welcome!

    December 8, 2012 at 10:11 am in reply to: Remove post data on category page except post title #3846
    Jen Baumann
    Participant

    You're welcome!

    December 7, 2012 at 2:08 pm in reply to: Which server to develop on? #3773
    Jen Baumann
    Participant

    Also, if you develop in a subdirectory, you can use http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install to go live.

    December 7, 2012 at 1:55 pm in reply to: Remove post data on category page except post title #3769
    Jen Baumann
    Participant

    You actually need to use this code in the reverse.  Put your remove actions within the conditional. If you are just trying to do this on the category pages, then your conditional is is_category().  More on conditionals: http://codex.wordpress.org/Conditional_Tags

    November 30, 2012 at 4:55 pm in reply to: Code snippets – add body class to category or to page template #2674
    Jen Baumann
    Participant

    I do this quite frequently for certain client templates.

    Another option is to use the body class field under Layout settings.

  • Author
    Posts
Viewing 20 posts - 241 through 260 (of 288 total)
← 1 2 3 … 12 13 14 15 →
« 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