Forum Replies Created
-
AuthorPosts
-
mikep
MemberThanks 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 #210269mikep
MemberThank you victor but in reality I'm talking about the "top widget" on the home page not the header.
mikep
MemberMasterful! Thank you VERY MUCH!
mikep
MemberBrad,
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] · Company ·'; return $creds; }
mikep
MemberBrad,
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.
mikep
MemberThanks 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.
mikep
MemberThanks Marcy. I had the non-responsive version installed. Problem solved.
mikep
MemberIt worked! Thank you!
mikep
MemberThat worked thanks!
mikep
MemberThanks 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>
mikep
MemberThank you for your help! It worked. I did have the featured image activated but the additional code you provided did the trick. thanks!
-
AuthorPosts