• 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

designbytracy

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 67 total)
1 2 3 4 →
  • Author
    Posts
  • February 18, 2018 at 1:20 pm in reply to: Poor Studio Press Themes? #216754
    designbytracy
    Participant

    I wasn't looking for support, just saw this thread and thought some of you who had been replying might have some comments on the shortcodes in the Mai theme.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    February 16, 2018 at 2:58 pm in reply to: Poor Studio Press Themes? #216611
    designbytracy
    Participant

    Can anyone speak to the shortcodes being used in the new Mai theme?


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    November 13, 2017 at 9:00 am in reply to: Hide Sidebar on Password Protected Pages #213526
    designbytracy
    Participant

    Thanks for your help, Brad. I tried that code and it didn't work.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    November 11, 2017 at 9:29 am in reply to: Hide Sidebar on Password Protected Pages #213482
    designbytracy
    Participant

    I think I'd like to remove the sidebar so that my password login appears centered.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    October 26, 2016 at 8:37 pm in reply to: Aspire Pro Home Page #195379
    designbytracy
    Participant

    I have the content hidden on mine, but have a hidden area that is taking up space at the bottom of the page. Any help?

    http://roseimmigration.com


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    June 16, 2014 at 12:46 pm in reply to: AgentPress Pro property listings #110016
    designbytracy
    Participant

    I'm curious about the IDX integration, too.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    March 18, 2014 at 2:00 pm in reply to: Add Full Screen responsive slider to Parallax Pro #95540
    designbytracy
    Participant

    Look what Sridhar just posted!

    Full width Slider in Parallax Pro


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    March 14, 2014 at 9:13 pm in reply to: Add Full Screen responsive slider to Parallax Pro #94952
    designbytracy
    Participant

    Anyone solve this?


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    March 1, 2014 at 4:30 pm in reply to: How to create a full width background-color content section on Metro page #92982
    designbytracy
    Participant

    Did you or anyone else ever figure out how to do this?


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    September 4, 2013 at 10:27 pm in reply to: Footer Widget and Footer Outside Wrap #60772
    designbytracy
    Participant

    I think I ended up working out what I wanted. It ended up being some changes to the #wrap and #inner widths.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    September 4, 2013 at 6:57 pm in reply to: Footer Widget and Footer Outside Wrap #60741
    designbytracy
    Participant

    The thing is, I really want the footer widgets to extend the full width of the screen like they do on the home page throughout the site. I was trying to accomplish this, but it only happened on the home page and I think it happened by accident. I'm not sure what I did...classic move!


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    September 4, 2013 at 6:55 pm in reply to: Footer Widget and Footer Outside Wrap #60739
    designbytracy
    Participant

    I did edit my functions.php some.

    <?php
    /** Start the engine */
    require_once( get_template_directory() . '/lib/init.php' );
    
    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 Theme', 'executive' ) );
    define( 'CHILD_THEME_URL', 'http://www.studiopress.com/themes/executive' );
    
    /** Add Viewport meta tag for mobile browsers */
    add_action( 'genesis_meta', 'executive_add_viewport_meta_tag' );
    function executive_add_viewport_meta_tag() {
        echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
    }
    
    /** Add support for custom header */
    /* add_theme_support( 'genesis-custom-header', array(
    	'width' 	=> 1140,
    	'height' 	=> 100
    ) ); */
    
    /** Add support for custom background */
    add_theme_support( 'custom-background' );
    
    /** Sets Content Width */
    $content_width = apply_filters( 'content_width', 680, 680, 1020 );
    
    /** Create additional color style options */
    add_theme_support( 'genesis-style-selector', array(
    	'executive-brown' 	=>	__( 'Brown', 'executive' ),
    	'executive-green' 	=>	__( 'Green', 'executive' ),
    	'executive-orange' 	=>	__( 'Orange', 'executive' ),
    	'executive-purple' 	=>	__( 'Purple', 'executive' ),
    	'executive-red' 	=>	__( 'Red', 'executive' ),
    	'executive-teal' 	=>	__( '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' );
    
    /** Add new image sizes */
    add_image_size( 'featured', 285, 100, TRUE );
    add_image_size( 'portfolio', 300, 200, TRUE );
    add_image_size( 'slider', 1140, 445, TRUE );
    
    /** Remove the site description */
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
    
    /** Relocate the post info */
    remove_action( 'genesis_before_post_content', 'genesis_post_info' );
    add_action( 'genesis_before_post_title', 'genesis_post_info' );
    
    /** Customize the post info function */
    add_filter( 'genesis_post_info', 'post_info_filter' );
    function post_info_filter($post_info) {
    	if (!is_page()) {
    	    $post_info = '
    	    <div class=\'date-info\'>' .
    	    	__('posted on', 'executive' ) .
    		    ' [post_date format="F j, Y" before="<span class=\'date\'>" after="</span>"] ' .
    		    __('by', 'executive' ) . ' [post_author_posts_link] [post_edit]
    	    </div>
    	    <div class="comments">
    	    	[post_comments]
    	    </div>';
    	    return $post_info;
    	}
    }
    
    /** Change the default comment callback */
    add_filter( 'genesis_comment_list_args', 'executive_comment_list_args' );
    function executive_comment_list_args( $args ) {
    	$args['callback'] = 'executive_comment_callback';
    	
    	return $args;
    }
    
    /** Customize the comment section */
    function executive_comment_callback( $comment, $args, $depth ) {
    
    	$GLOBALS['comment'] = $comment; ?>
    
    	<li <?php comment_class(); ?> id="comment-<?php comment_ID() ?>">
    
    		<?php do_action( 'genesis_before_comment' ); ?>
    		
    		<div class="comment-header">
    			<div class="comment-author vcard">
    				<?php echo get_avatar( $comment, $size = $args['avatar_size'] ); ?>
    				<?php printf( '<cite class="fn">%s</cite> <span class="says">%s:</span>', get_comment_author_link(), apply_filters( 'comment_author_says_text', __( 'says', 'executive' ) ) ); ?>
    				<div class="comment-meta commentmetadata">
    					<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( '%1$s ' . __('at', 'executive' ) . ' %2$s', get_comment_date(), get_comment_time() ); ?></a>
    				<?php edit_comment_link( __( 'Edit', 'executive' ), g_ent( '&bull; ' ), '' ); ?>
    				</div><!-- end .comment-meta -->
    		 	</div><!-- end .comment-author -->			
    		</div><!-- end .comment-header -->	
    
    		<div class="comment-content">
    			<?php if ($comment->comment_approved == '0') : ?>
    				<p class="alert"><?php echo apply_filters( 'genesis_comment_awaiting_moderation', __( 'Your comment is awaiting moderation.', 'executive' ) ); ?></p>
    			<?php endif; ?>
    
    			<?php comment_text(); ?>
    		</div><!-- end .comment-content -->
    
    		<div class="reply">
    			<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    		</div>
    
    		<?php do_action( 'genesis_after_comment' );
    
    	/** No ending </li> tag because of comment threading */
    
    }
    
    /** 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' ),
    			),
    			'exclude_from_search' => true,
    			'has_archive' => true,
    			'hierarchical' => true,
    			'menu_icon' => get_stylesheet_directory_uri() . '/images/icons/portfolio.png',
    			'public' => true,
    			'rewrite' => array( 'slug' => 'portfolio' ),
    			'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes', 'genesis-seo' ),
    		)
    	);
    }
    
    /** 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' );
    	}
    
    }
    
    /** Add support for 1-column footer widget */
    add_theme_support( 'genesis-footer-widgets', 1 );
    
    /** 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' ),
    ) );
    
    //* Customize the credits
    add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
    function custom_footer_creds_text() {
    echo '<div class="creds"><p>';
    echo 'copyright &copy; ';
    echo date('Y');
    echo ' &middot; <a href="http://TortediVenezia.com">Torte di Venezia</a> &middot; created by <a href="http://designbytracy" title="Design by Tracy">Design by Tracy</a>';
    echo '</p></div>';
    }
    
    /**
    * Filter the genesis_seo_site_title function to use an image for the logo instead of a background image
    *
    * The genesis_seo_site_title function is located in genesis/lib/structure/header.php
    * @link http://blackhillswebworks.com/?p=4144
    *
    */
     
    add_filter( 'genesis_seo_title', 'bhww_filter_genesis_seo_site_title', 10, 2 );
     
    function bhww_filter_genesis_seo_site_title( $title, $inside ){
    $child_inside = sprintf( '<a href="%s" title="%s"><img src="'. get_stylesheet_directory_uri() .'/images/header.jpg" title="%s" alt="%s"/></a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ) );
    $title = str_replace( $inside, $child_inside, $title );
    return $title;
    } // End bhww_filter_genesis_seo_site_title

    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    September 4, 2013 at 6:54 pm in reply to: Footer Widget and Footer Outside Wrap #60738
    designbytracy
    Participant

    I didn't edit my home.php (at least that I remember).

    <?php
    
    add_action( 'genesis_meta', 'executive_home_genesis_meta' );
    /**
     * Add widget support for homepage. If no widgets active, display the default loop.
     *
     */
    function executive_home_genesis_meta() {
    
    	if ( is_active_sidebar( 'home-slider' ) || is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-cta' ) || is_active_sidebar( 'home-middle' ) ) {
    
    		remove_action( 'genesis_loop', 'genesis_do_loop' );
    		add_action( 'genesis_loop', 'executive_home_sections' );
    		add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    		add_filter( 'body_class', 'executive_body_class' );
    		add_action( 'genesis_after', 'executive_slider_excerpt_position' );
    
    		/** Add body class to home page **/		
    		function executive_body_class( $classes ) {
       			$classes[] = 'executive-home';
      			return $classes;
    		}
    
    		/** Moves the slider pager if the sidebars are active and the screen is wide enough */
    		function executive_slider_excerpt_position() {
    				?>
    				<script type="text/javascript">
    					 jQuery(document).ready(function() {
    						if (jQuery(".slide-excerpt").length > 0) {
    							jQuery(".flex-control-nav").addClass("nav-pos-excerpt");
    						}
    					});
    				</script>
    				<?php		
    		}
    	}
    }
    
    function executive_home_sections() {
    
    	if ( is_active_sidebar( 'home-slider' ) || is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-cta' ) || is_active_sidebar( 'home-middle' ) ) {
    
    		genesis_widget_area( 'home-slider', array(
    			'before' => '<div class="home-slider widget-area">',
    		) );
    
    		genesis_widget_area( 'home-top', array(
    			'before' => '<div class="home-top widget-area">',
    		) );
    
    		genesis_widget_area( 'home-cta', array(
    			'before' => '<div class="home-cta widget-area">',
    		) );
    
    		genesis_widget_area( 'home-middle', array(
    			'before' => '<div class="home-middle widget-area">',
    		) );
    		   
    	}
    
    }
    
    genesis();

    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    September 4, 2013 at 4:41 pm in reply to: Footer Widget and Footer Outside Wrap #60722
    designbytracy
    Participant

    It is not outside the wrap on the other pages. I want it to be outside on all pages like it is on the home page.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    August 12, 2013 at 8:06 pm in reply to: JetPack Tiled Gallery fix #55939
    designbytracy
    Participant

    Success for me too on this. Thanks!


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    August 7, 2013 at 7:22 pm in reply to: Sidebar Background Color #54782
    designbytracy
    Participant

    Just to finish this up, I wanted to note that I added some more CSS to make sure the background didn't appear on my full-width pages. Here's the complete code that I added.

    #content-sidebar-wrap {
    	background-image: url(images/content_bg.gif);
    }
    
    .full-width-content #content-sidebar-wrap {
    	background-image: none !important;
    }

    And, my site is now live so the new URL is http://105DesignStudio.com.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    July 30, 2013 at 7:10 pm in reply to: Content Width #53308
    designbytracy
    Participant

    Well, I'm on a roll tonight. I had commented out some CSS and accidentally went too far. Ok, resolved this issue.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    July 30, 2013 at 5:39 pm in reply to: Column Class Trouble #53296
    designbytracy
    Participant

    Well, I figured out my column classes and just made the left margin 3.3% instead of 3%. I'll make a new post about the Flavor of the Month box.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    July 28, 2013 at 7:46 pm in reply to: Email Capture with Alerts #53024
    designbytracy
    Participant

    Anyone? I'm waiting for a response from Gravity Forms too, but just seeing if anyone knows more about this or any other sources to achieve my goal.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

    July 25, 2013 at 9:26 am in reply to: Sidebar Background Color #52448
    designbytracy
    Participant

    CSS edits to the child theme are the correct way to make modifications and customize your site, making use of the parent-child heirarchy. Yes, if you were to update your child theme, it would override, but that doesn't really happen. Studiopress sends out all updates through the parent or framework Genesis so your edits will stay.


    Tracy

    Design by Tracy | Twitter | Facebook | LinkedIn

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 67 total)
1 2 3 4 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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