Forum Replies Created
-
AuthorPosts
-
eightcrazy
MemberAwesome. Thank you. That did it.
eightcrazy
MemberDid you ever figure it out? I would like to do this as well.
eightcrazy
MemberCan you share the code and where you added it please.
February 19, 2016 at 3:19 am in reply to: Blog Text overflowing and creating new column in sidebar #179379eightcrazy
MemberI believe I figured it out. I had imported some posts from blogger.com and there was some code markup within the post. I deleted it, and I believe the problem is solved!
February 19, 2016 at 3:14 am in reply to: Blog Text overflowing and creating new column in sidebar #179378eightcrazy
MemberI haven't touched the function.php code!
<?php //* Start the engine require_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( 'executive', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'executive' ) ); //* Child theme (do not remove) define( 'CHILD_THEME_NAME', __( 'Executive Pro Theme', 'executive' ) ); define( 'CHILD_THEME_URL', 'http://my.studiopress.com/themes/executive/' ); define( 'CHILD_THEME_VERSION', '3.1.2' ); //* 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', 'executive_load_scripts' ); function executive_load_scripts() { wp_enqueue_script( 'executive-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' ); wp_enqueue_style( 'dashicons' ); wp_enqueue_style( 'google-font', '//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700', array(), CHILD_THEME_VERSION ); } //* Add new image sizes add_image_size( 'featured', 300, 100, TRUE ); add_image_size( 'portfolio', 300, 200, TRUE ); add_image_size( 'slider', 1140, 445, TRUE ); //* Add support for custom background add_theme_support( 'custom-background' ); //* Add support for custom header add_theme_support( 'custom-header', array( 'width' => 260, 'height' => 100, 'header-selector' => '.site-title a', 'header-text' => false ) ); //* Add support for additional color style options add_theme_support( 'genesis-style-selector', array( 'executive-pro-brown' => __( 'Executive Pro Brown', 'executive' ), 'executive-pro-green' => __( 'Executive Pro Green', 'executive' ), 'executive-pro-orange' => __( 'Executive Pro Orange', 'executive' ), 'executive-pro-purple' => __( 'Executive Pro Purple', 'executive' ), 'executive-pro-red' => __( 'Executive Pro Red', 'executive' ), 'executive-pro-teal' => __( 'Executive Pro Teal', 'executive' ), ) ); //* Unregister layout settings genesis_unregister_layout( 'content-sidebar-sidebar' ); genesis_unregister_layout( 'sidebar-content-sidebar' ); genesis_unregister_layout( 'sidebar-sidebar-content' ); //* Unregister secondary sidebar unregister_sidebar( 'sidebar-alt' ); //* Load Admin Stylesheet add_action( 'admin_enqueue_scripts', 'executive_load_admin_styles' ); function executive_load_admin_styles() { wp_register_style( 'custom_wp_admin_css', get_stylesheet_directory_uri() . '/lib/admin-style.css', false, '1.0.0' ); wp_enqueue_style( 'custom_wp_admin_css' ); } //* Create Portfolio Type custom taxonomy add_action( 'init', 'executive_type_taxonomy' ); function executive_type_taxonomy() { register_taxonomy( 'portfolio-type', 'portfolio', array( 'labels' => array( 'name' => _x( 'Types', 'taxonomy general name', 'executive' ), 'add_new_item' => __( 'Add New Portfolio Type', 'executive' ), 'new_item_name' => __( 'New Portfolio Type', 'executive' ), ), 'exclude_from_search' => true, 'has_archive' => true, 'hierarchical' => true, 'rewrite' => array( 'slug' => 'portfolio-type', 'with_front' => false ), 'show_ui' => true, 'show_tagcloud' => false, ) ); } //* Create portfolio custom post type add_action( 'init', 'executive_portfolio_post_type' ); function executive_portfolio_post_type() { register_post_type( 'portfolio', array( 'labels' => array( 'name' => __( 'Portfolio', 'executive' ), 'singular_name' => __( 'Portfolio', 'executive' ), ), 'has_archive' => true, 'hierarchical' => true, 'menu_icon' => get_stylesheet_directory_uri() . '/lib/icons/portfolio.png', 'public' => true, 'rewrite' => array( 'slug' => 'portfolio', 'with_front' => false ), 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'revisions', 'page-attributes', 'genesis-seo', 'genesis-cpt-archives-settings' ), 'taxonomies' => array( 'portfolio-type' ), ) ); } //* Add Portfolio Type Taxonomy to columns add_filter( 'manage_taxonomies_for_portfolio_columns', 'executive_portfolio_columns' ); function executive_portfolio_columns( $taxonomies ) { $taxonomies[] = 'portfolio-type'; return $taxonomies; } //* Remove the site description remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); //* Reposition the secondary navigation menu remove_action( 'genesis_after_header', 'genesis_do_subnav' ); add_action( 'genesis_footer', 'genesis_do_subnav', 7 ); //* Reduce the secondary navigation menu to one level depth add_filter( 'wp_nav_menu_args', 'executive_secondary_menu_args' ); function executive_secondary_menu_args( $args ){ if( 'secondary' != $args['theme_location'] ) return $args; $args['depth'] = 1; return $args; } //* Relocate the post info remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); add_action( 'genesis_entry_header', 'genesis_post_info', 5 ); //* Change the number of portfolio items to be displayed (props Bill Erickson) add_action( 'pre_get_posts', 'executive_portfolio_items' ); function executive_portfolio_items( $query ) { if( $query->is_main_query() && !is_admin() && is_post_type_archive( 'portfolio' ) ) { $query->set( 'posts_per_page', '12' ); } } //* Customize Portfolio post info and post meta add_filter( 'genesis_post_info', 'executive_portfolio_post_info_meta' ); add_filter( 'genesis_post_meta', 'executive_portfolio_post_info_meta' ); function executive_portfolio_post_info_meta( $output ) { if( 'portfolio' == get_post_type() ) return ''; return $output; } //* Remove comment form allowed tags add_filter( 'comment_form_defaults', 'executive_remove_comment_form_allowed_tags' ); function executive_remove_comment_form_allowed_tags( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; } //* Add support for 3-column footer widgets add_theme_support( 'genesis-footer-widgets', 3 ); //* 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-slider', 'name' => __( 'Home - Slider', 'executive' ), 'description' => __( 'This is the slider section on the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-top', 'name' => __( 'Home - Top', 'executive' ), 'description' => __( 'This is the top section of the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-cta', 'name' => __( 'Home - Call To Action', 'executive' ), 'description' => __( 'This is the call to action section on the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-middle', 'name' => __( 'Home - Middle', 'executive' ), 'description' => __( 'This is the middle section of the home page.', 'executive' ), ) );
eightcrazy
MemberThanks! That did it!
eightcrazy
MemberThat was the answer. Thanks!
Better to use padding than margin.
March 10, 2013 at 8:02 pm in reply to: Need Primary Menu & Header Alignment Help Quattro Theme #25383eightcrazy
Memberadopting rule!
March 10, 2013 at 7:52 pm in reply to: Need Primary Menu & Header Alignment Help Quattro Theme #25380eightcrazy
Memberahhh... this seems to be the answer http://www.studiopress.community/topic/modern-portfolio-menu-link-position/
Guess it is a known issue/bug with Chrome right now
March 10, 2013 at 7:15 pm in reply to: Need Primary Menu & Header Alignment Help Quattro Theme #25365eightcrazy
MemberI think I have a similar issue. My non active menu items are dropping down as well...until it gets to a responsive width. That's what yours does too.
But I'm using the Outreach theme, not Quattro. I haven't figured it out yet either. So I'd be curious to know what you come up with.
eightcrazy
MemberHi EightCrazy!
I hope you have not given up on Decor. I am seeking the same solution. I wonder if you have found an answer to your question about the header background disappearing for mobile viewers.
Just to clarify...I'm not the theme developer. This is a StudioPress theme.
eightcrazy
MemberAre you referring to the fact that when you shrink the browser the uploaded header image goes off the screen to the left? I'm having the same issue.
eightcrazy
MemberThanks for taking the time to take a look. I really appreciate it! I actually found a line of php that was the culprit, and it looks like problem solved!
eightcrazy
MemberEVERY page and post! ALL the thumbnails are displaying on the homepage, on the blog page, and on the archives. But if you click on any page/post and view it individually, you cannot see any of the photos that are inserted into that post.
eightcrazy
Membereightcrazy
MemberYou will need to wright a new home.php to include the loop.
Find info here: http://my.studiopress.com/tutorials/genesis-grid-loop/
eightcrazy
Memberlooks good in chrome to me
eightcrazy
MemberThis thread in the new forum should cover it for you:
eightcrazy
MemberI don't see your question in the forum over at EightCrazy, I only saw your link to showcase your site.
eightcrazy
MemberThe "grid" appearance on this home page does not come from the loop. It comes from featured posts in widget areas on the home page.
-
AuthorPosts