• 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

mikep

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 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • June 11, 2019 at 5:11 am in reply to: Add post author name to top of post in Education Pro #491568
    mikep
    Member

    Thanks for the quick reply. I still need some help.

    What I am trying to add is the [post_author_posts_link] under the title of the posts.

    I looked at the snippets and there is a customize entry Header as you say but in Education Pro theme that appears ABOVE the title of the post.

    I want the [post_author_posts_link] to appear AFTER the title of the post. There are snippets there for removing the title but I don't see how to insert the [post_author_posts_link] after the title

    August 11, 2017 at 1:18 pm in reply to: OutReach Pro Theme Home page top widget – image not aligned #210269
    mikep
    Member

    Thank you victor but in reality I'm talking about the "top widget" on the home page not the header.

    August 2, 2017 at 10:35 am in reply to: Outreach Pro – remove home page widgets #209913
    mikep
    Member

    Masterful! Thank you VERY MUCH!

    August 2, 2017 at 9:51 am in reply to: Outreach Pro – remove home page widgets #209910
    mikep
    Member

    Brad,
    unfortunately the site isn't live so i can't publish a link to it here. Here is the entirety of the functions.php:

    <?php
    //* Start the engine
    include_once( get_template_directory() . '/lib/init.php' );
    
    //* Setup Theme
    include_once( get_stylesheet_directory() . '/lib/theme-defaults.php' );
    
    //* Set Localization (do not remove)
    load_child_theme_textdomain( 'outreach', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'outreach' ) );
    
    //* Child theme (do not remove)
    define( 'CHILD_THEME_NAME', __( 'Outreach Pro Theme', 'outreach' ) );
    define( 'CHILD_THEME_URL', 'http://my.studiopress.com/themes/outreach/' );
    define( 'CHILD_THEME_VERSION', '3.1' );
    
    //* Add HTML5 markup structure
    add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) );
    
    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );
    
    //* Enqueue Scripts
    add_action( 'wp_enqueue_scripts', 'outreach_load_scripts' );
    function outreach_load_scripts() {
    
    	wp_enqueue_script( 'outreach-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
    	
    	wp_enqueue_style( 'dashicons' );
    	
    	wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Lato:400,700', array(), CHILD_THEME_VERSION );
    
    }
    
    //* Add new image sizes
    add_image_size( 'home-top', 1140, 460, TRUE );
    add_image_size( 'home-bottom', 285, 160, TRUE );
    add_image_size( 'sidebar', 300, 150, TRUE );
    
    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    	'header-selector' => '.site-title a',
    	'header-text'     => false,
    	'height'          => 100,
    	'width'           => 340,
    ) );
    
    //* Add support for custom background
    add_theme_support( 'custom-background' );
    
    //* Add support for additional color style options
    add_theme_support( 'genesis-style-selector', array(
    	'outreach-custom' 	=>	__( 'Outreach Custom', 'outreach' ),
    	'outreach-pro-blue' 	=>	__( 'Outreach Pro Blue', 'outreach' ),
    	'outreach-pro-orange' 	=> 	__( 'Outreach Pro Orange', 'outreach' ),
    	'outreach-pro-purple' 	=> 	__( 'Outreach Pro Purple', 'outreach' ),
    	'outreach-pro-red' 		=> 	__( 'Outreach Pro Red', 'outreach' ),
    ) );
    
    //* Add support for structural wraps
    add_theme_support( 'genesis-structural-wraps', array(
    	'header',
    	'nav',
    	'subnav',
    	'site-inner',
    	'footer-widgets',
    	'footer',
    ) );
    
    //* Modify the size of the Gravatar in the author box
    add_filter( 'genesis_author_box_gravatar_size', 'outreach_author_box_gravatar_size' );
    function outreach_author_box_gravatar_size( $size ) {
    
        return '80';
        
    }
    
    //* Remove comment form allowed tags
    add_filter( 'comment_form_defaults', 'outreach_remove_comment_form_allowed_tags' );
    function outreach_remove_comment_form_allowed_tags( $defaults ) {
    	
    	$defaults['comment_notes_after'] = '';
    	return $defaults;
    
    }
    
    //* Add the sub footer section
    add_action( 'genesis_before_footer', 'outreach_sub_footer', 5 );
    function outreach_sub_footer() {
    
    if ( is_front_page() )
        return;
    
    	if ( is_active_sidebar( 'sub-footer-left' ) || is_active_sidebar( 'sub-footer-right' ) ) {
    		echo '<div class="sub-footer"><div class="wrap">';
    		
    		   genesis_widget_area( 'sub-footer-left', array(
    		       'before' => '<div class="sub-footer-left">',
    		       'after'  => '</div>',
    		   ) );
    	
    		   genesis_widget_area( 'sub-footer-right', array(
    		       'before' => '<div class="sub-footer-right">',
    		       'after'  => '</div>',
    		   ) );
    	
    		echo '</div><!-- end .wrap --></div><!-- end .sub-footer -->';	
    	}
    	
    }
    
    //* Add support for 4-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 4 );
    
    //* Add support for after entry widget
    add_theme_support( 'genesis-after-entry-widget-area' );
    
    //* Relocate after entry widget
    remove_action( 'genesis_after_entry', 'genesis_after_entry_widget_area' );
    add_action( 'genesis_after_entry', 'genesis_after_entry_widget_area', 5 );
    
    //* Register widget areas
    genesis_register_sidebar( array(
    	'id'          => 'home-top',
    	'name'        => __( 'Home - Top', 'outreach' ),
    	'description' => __( 'This is the top section of the Home page.', 'outreach' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'home-bottom',
    	'name'        => __( 'Home - Bottom', 'outreach' ),
    	'description' => __( 'This is the bottom section of the Home page.', 'outreach' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'sub-footer-left',
    	'name'        => __( 'Sub Footer - Left', 'outreach' ),
    	'description' => __( 'This is the left section of the sub footer.', 'outreach' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'sub-footer-right',
    	'name'        => __( 'Sub Footer - Right', 'outreach' ),
    	'description' => __( 'This is the right section of the sub footer.', 'outreach' ),
    ) );
    
    //* Change the footer text
    add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
    function sp_footer_creds_filter( $creds ) {
    	$creds = '[footer_copyright] &middot; Company &middot;';
    	return $creds;
    }
    
    
    August 1, 2017 at 7:47 pm in reply to: Outreach Pro – remove home page widgets #209864
    mikep
    Member

    Brad,
    Thank you very much for your reply. Your solution works perfectly for eliminating the sub-footer on outreach pro. However the 4-column footer remains. A little further down the functions.php file I find this:

    //* Add support for 4-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 4 );
    

    The syntax is different than the subfooter syntax so I'm not sure how to make it work for the footer as well.

    August 1, 2017 at 6:39 am in reply to: Outreach Pro – remove home page widgets #209818
    mikep
    Member

    Thanks Victor but the problem is that the Footer and Subfooter widgets are programmed into all of the pages. If I remove them they via widgets screen they disappear from all of the pages. I just want them removed from the homepage.

    August 11, 2015 at 4:30 am in reply to: Outreach home top – image slider not aligned #162018
    mikep
    Member

    Thanks Marcy. I had the non-responsive version installed. Problem solved.

    September 25, 2014 at 9:43 am in reply to: Education pro modify logo box size #125677
    mikep
    Member

    It worked! Thank you!

    June 21, 2014 at 1:28 pm in reply to: Modify recent post widget in parallax pro #110976
    mikep
    Member

    That worked thanks!

    June 21, 2014 at 11:36 am in reply to: Modify recent post widget in parallax pro #110965
    mikep
    Member

    Thanks for the tip. That works for changing the color/font for all text that falls underthat. My main concern is changing the size jsut for recent posts without impacting all other text on the home page.

    When looking at the code code it appears the the list of entries for recent posts falls under the "widget_recent_entries

    <section id="recent-posts-3" class="widget widget_recent_entries"><div class="widget-wrap"> <h4 class="widget-title widgettitle">Recent articles</h4>

    June 18, 2014 at 5:08 pm in reply to: Parallax Pro featured image on post pages #110441
    mikep
    Member

    Thank you for your help! It worked. I did have the featured image activated but the additional code you provided did the trick. thanks!

  • Author
    Posts
Viewing 11 posts - 1 through 11 (of 11 total)

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