• 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

mel62

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 27 total)
1 2 →
  • Author
    Posts
  • March 18, 2016 at 2:56 am in reply to: Author Info not showing up in Post Info area #181746
    mel62
    Member

    I don't know why I didn't think to look at css!! Thank you!! 🙂

    June 3, 2015 at 5:08 am in reply to: remove blog page title without removing post titles #154690
    mel62
    Member

    Hello! I would really appreciate some help on this. 🙂

    May 30, 2015 at 1:13 am in reply to: remove blog page title without removing post titles #154188
    mel62
    Member

    So, is what I'm looking for not possible?

    May 27, 2015 at 10:22 am in reply to: remove blog page title without removing post titles #153836
    mel62
    Member

    That took care of the blog page title, yes. But it also removed the content at the top of the page, which I need.

    May 27, 2015 at 4:59 am in reply to: remove blog page title without removing post titles #153767
    mel62
    Member

    That didn't work for me for some reason. What is it doing for you exactly?

    What I need is to remove the blog page title but not the titles of the posts in the loop.

    May 22, 2015 at 1:16 am in reply to: remove blog page title without removing post titles #153216
    mel62
    Member

    Just a simple template, I believe I got it from a post by Brad Dalton. I'm using a template so that I can add text and an image to the top. I wasn't able to get it to work without a template.

    //* Template Name: Blog
    
    //* The blog page loop logic is located in lib/structure/loops.php
    
    add_action('genesis_loop', 'genesis_standard_loop', 8);
    
    genesis();
    May 21, 2015 at 5:42 am in reply to: remove blog page title without removing post titles #153079
    mel62
    Member

    Thank you Susan!

    I found the code offered in the comments and tried the code below but it isn't working. Do you know what I might be doing wrong?

    add_action( ‘get_header’, ‘child_remove_titles’ );
    
    function child_remove_titles() {
    	if ( is_page_template(‘page_blog.php’) || $post->post_parent ) {
    	remove_action( ‘genesis_entry_header’, ‘genesis_do_post_title’ );
    	}}

    I'm still getting page and post titles on my blog page.

    May 20, 2015 at 11:42 am in reply to: remove blog page title without removing post titles #152931
    mel62
    Member

    Can someone help me with this please?

    May 19, 2015 at 10:02 am in reply to: remove blog page title without removing post titles #152761
    mel62
    Member

    Hi Susan, thank you.

    We already have that installed and it removes all titles from the blog page, including the blog post titles.

    March 5, 2015 at 4:40 pm in reply to: Custom post type archive template question #143385
    mel62
    Member

    Actually, since no one has responded yet, I would also like to have the option of showing the full content rather than an excerpt.

    Are both of these possible?

    October 1, 2014 at 7:08 am in reply to: Include Custom Post Types in Archive Page #126418
    mel62
    Member

    Thank you for that, Brad. What if you wanted to display both custom posts and regular posts on the archive page?

    September 27, 2014 at 11:51 am in reply to: Include Custom Post Types in Archive Page #125967
    mel62
    Member

    Ok, I will unregister the blog and archive templates and went with the Display Post Shortcodes plugin on the default page template. Gives a better result anyway.

    Thank you Kellylise!! 🙂

    September 27, 2014 at 11:10 am in reply to: Include Custom Post Types in Archive Page #125961
    mel62
    Member

    wait.. I think I see what you're getting at here.. let me try something and I'll let you know how it goes!

    September 27, 2014 at 10:47 am in reply to: Include Custom Post Types in Archive Page #125955
    mel62
    Member

    I'm not referring to the blog page. I have a page that is using the archive template. That's what I want to add custom post types to. The home page/blog page is the widgetized front page that Lifestyle Pro provides.

    Maybe I'm missing something.

    September 27, 2014 at 9:59 am in reply to: Include Custom Post Types in Archive Page #125950
    mel62
    Member

    Thank you kellylise. I tried that, changing the name of the post type but it didn't work. Is there something else I need to change?

    function namespace_add_custom_types( $query ) {
      if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
        $query->set( 'post_type', array(
         'post', 'nav_menu_item', 'bundle'
    		));
    	  return $query;
    	}
    }
    add_filter( 'pre_get_posts', 'namespace_add_custom_types' );
    September 2, 2014 at 7:33 am in reply to: manually add shortcode to post template #122397
    mel62
    Member

    I'll check it out. Thanks again for the help with this!

    September 2, 2014 at 1:57 am in reply to: manually add shortcode to post template #122356
    mel62
    Member

    That's perfect, thanks again. What do you like better about AddThis?

    September 1, 2014 at 8:17 am in reply to: manually add shortcode to post template #122212
    mel62
    Member

    Brad, you are so helpful each time, thank you! I got the shortcode added to pages, but now it shows up twice on the custom type page. I guess I'll just remove it from the type view if needed.

    I actually want to add two shortcodes, one for sharing and one for related posts. I'm not sure how to go about this. Is it possible to add them both in one hook or do I need a hook for each one?

    Here's what I have... (only the share buttons are showing up)

    //* Add Shareaholic shortcode to regular posts
    add_action('genesis_before_comments', 'shareaholic_related_after_content');
    function shareaholic_related_after_content() {
    if (is_single()) {
        echo do_shortcode('[shareaholic app="share_buttons" id="6750691"]', '[shareaholic app="recommendations" id="6750702"]');
       }
    }
    March 23, 2014 at 4:23 am in reply to: Primary Navigation showing up twice #96150
    mel62
    Member

    Can someone help me on this please or do I need to submit a support ticket?

    February 13, 2014 at 3:51 pm in reply to: back to top link #90176
    mel62
    Member

    Thank you Jeremy!

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