• 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

Carlo

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 - 81 through 100 (of 150 total)
← 1 2 3 4 5 6 7 8 →
  • Author
    Posts
  • January 31, 2015 at 5:56 am in reply to: Can't Change Theme #139134
    Carlo
    Member

    Hi redgsr. This is a very unusual issue and one that I think will be next to impossible to solve without being able to see the back end of your site. Would you be open to paying a developer to look at your site?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 5:51 am in reply to: Messy Site #139133
    Carlo
    Member

    Hi Adam. That's a lot of help you're asking for, for free! I'll help you out with one issue if you let me know which one is the most urgent. Anything beyond that will cost you, as my time is valuable.

    Out of curiosity, if it's such a pain to you, why are you trying to do it all yourself, instead of just paying a developer and allowing yourself to focus on your business?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 5:42 am in reply to: Genesis – hierarchical breadcrumbs for CPT #139132
    Carlo
    Member

    Hi Ian. I think what the documentation means is that the parent crumb refers to the custom post type archive, not the post parent, if that makes sense. I don't think the function supports hierarchical custom post types.

    However, if you look at genesis/lib/classes/breadcrumb.php, there is a filter 'genesis_single_crumb' on line 215 that you could use to add the parent posts into the markup output.


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 5:18 am in reply to: Genesis – documentation and principles #139131
    Carlo
    Member

    Hi Ian. I agree that the documentation on the studiopress website is not as good as it could be. There are shortcodes, hooks, actions and filters that do exist but are not covered in the reference.

    Usually, I look through the source code to find filters, actions and shortcodes to use. You can find them by looking for code according to the following formats:

    Filters:

    apply_filters( 'name_of_filter', $content_to_be_filtered );

    Actions:

    do_action( 'name_of_action' );

    Shortcodes:

    add_shortcode( 'name_of_shortcode', 'callback_function' );

    Of course, knowing where to look is a skill that you have to develop with practice.

    I should probably be able to help you with changing archive html output. Can you explain in more detail what you need to do?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 4:25 am in reply to: Education Pro – how to eliminate blog on home page #139128
    Carlo
    Member

    Hi there. A simple way to remove the blog posts is to go into the file front-page.php, and add the below code directly above the line genesis();

    if ( !is_user_logged_in() )
    	remove_all_actions( 'genesis_loop' );

    Note that this just removes the blog posts from the front page. If anyone has the permalink to any of your blog posts, they'll be able to view it, regardless of whether they're a registered member.


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:37 am in reply to: Navigation to lef side #139127
    Carlo
    Member

    Hi jiihoohoo. I looked at your site and you've already got a navigation bar in the header left side. Did you solve your problem?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:35 am in reply to: Responsive picture / main page #139126
    Carlo
    Member

    Hi jiihoohoo. Do you mean the picture that shows up on the link you've provided? I think the best way would be to put the text inside an HTML div and give it a background image in your theme stylesheet. You could hard-code this or make it a shortcode. Let me know if you'd like more help.


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:30 am in reply to: Shortcodes on pages #139123
    Carlo
    Member

    Hi Teresa. Do you mean that you have a shortcode in the content of the page and it doesn't run? Can you link to the page you're talking about?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:16 am in reply to: Google Maps as Widget Background #139121
    Carlo
    Member

    Hi Tom and Josephine. Do you want just a screenshot of the map or an interactive map? Also, do you want the text over the top of the map (probably not a good idea if it's an interactive map)?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:14 am in reply to: Agentpress All Listings Page #139119
    Carlo
    Member

    Hi Amy. I went to the site and looked at the Portfolio page. Did you already solve your problem?


    Comprehensive, easy to follow Genesis documentation

    January 31, 2015 at 3:10 am in reply to: Any Attitude or Parallax sites with the blog for home page? #139118
    Carlo
    Member

    Good question slobizman and no your permalinks won't change.


    Comprehensive, easy to follow Genesis documentation

    January 30, 2015 at 4:52 pm in reply to: Any Attitude or Parallax sites with the blog for home page? #139090
    Carlo
    Member

    Hi slobizman. I can't think of any reason why the theme you use would cause any problems. I think starting off with a blog on a front page, and later switching to a static front page when you launch your products and services, is a great idea and would be very easy to implement without causing any problems for your site.

    To do it, you'd go into your WordPress admin area, Settings > Reading, and select your front page to display Your latest posts. Then when you want a static front page, select A static page, select the page you want to display on the front page, and make sure that you select for Posts page the page on which you want your blog to show. Then you just link to that 'posts page' in your menus.

    Let me know if you have any more uncertainties!


    Comprehensive, easy to follow Genesis documentation

    January 30, 2015 at 4:46 pm in reply to: How to remove comment dates #139089
    Carlo
    Member

    Hi Jennifer. Using display: none; is not a very good solution because the dates will still be there in the source code.

    Instead, I've prepared some code that you can add to your theme functions to properly remove the dates.

    function jennifer_comment_callback( $comment, array $args, $depth ) {
    	ob_start();
    	genesis_html5_comment_callback( $comment, $args, $depth );
    	$all_content = ob_get_clean();
    
    	ob_start();
    	?><p <?php echo genesis_attr( 'comment-meta' ); ?>>
    				<?php
    				printf( '<time %s>', genesis_attr( 'comment-time' ) );
    				printf( '<a href="%s" %s>', esc_url( get_comment_link( $comment->comment_ID ) ), genesis_attr( 'comment-time-link' ) );
    				echo    esc_html( get_comment_date() ) . ' ' . __( 'at', 'genesis' ) . ' ' . esc_html( get_comment_time() );
    				echo    '</a></time>';
    
    				edit_comment_link( __( '(Edit)', 'genesis' ), ' ' );
    				?>
    			</p><?php
    	$content_to_remove = ob_get_clean();
    
    	echo str_replace( $content_to_remove, '', $all_content );
    }
    
    add_filter( 'genesis_comment_list_args', function( $defaults ) {
    	$defaults[ 'callback' ] = 'jennifer_comment_callback';
    	return $defaults;
    } );

    Let me know if that works.


    Comprehensive, easy to follow Genesis documentation

    January 23, 2015 at 6:44 am in reply to: Please help me style the color boxes #138408
    Carlo
    Member

    Try using this code:

    .content-box-yellow {
    background-color: #fef5c4;
    border: 1px solid #fadf98;
    }
    
    .content-box-yellow a {
    color: #fadf98;
    }

    I used the same colour code as the border. For the other colours, repeat with their respective border colour codes.

    If you want to bold your hyperlinks, this is the code you need:

    a {
    font-weight: bold;
    }

    Comprehensive, easy to follow Genesis documentation

    January 19, 2015 at 6:17 am in reply to: H1 and H2 Aren't Responsive in Parallax Pro? #137909
    Carlo
    Member

    Yes, I see what you mean Susanta, but that's how they're meant to look. There's no 'issue' with the theme. Unless you would like to customise the theme font sizes?


    Comprehensive, easy to follow Genesis documentation

    January 18, 2015 at 4:32 pm in reply to: How to remove "time class+ entry-time" from theme #137889
    Carlo
    Member

    Hi NHEd. Try adding this code to your theme functions:

    add_filter( 'genesis_post_info', function( $content ) {
    	return 'By [post_author_posts_link] [post_comments] [post_edit]';
    } );

    Let me know if that solution works for you.


    Comprehensive, easy to follow Genesis documentation

    January 18, 2015 at 4:25 pm in reply to: Background music? #137887
    Carlo
    Member

    Hi Nelius. Background music is highly frowned upon in web design because it's contemptuous towards your users. I'd think again if I were you.


    Comprehensive, easy to follow Genesis documentation

    January 18, 2015 at 4:22 pm in reply to: H1 and H2 Aren't Responsive in Parallax Pro? #137886
    Carlo
    Member

    Hi Susanta. I don't think there's anything wrong with the headlines. That's how they're meant to look. I wouldn't worry if I were you.


    Comprehensive, easy to follow Genesis documentation

    January 18, 2015 at 3:20 pm in reply to: Text Cut Off – Scribble Theme – IE #137883
    Carlo
    Member

    Are you sure it's just IE? I think the text is being cut off in every browser.

    You want to remove the following code from your theme stylesheet:

    .entry-content {
    overflow: hidden;
    }

    Comprehensive, easy to follow Genesis documentation

    January 18, 2015 at 2:38 pm in reply to: Removing Code and Adjusting upper navigation bar. #137879
    Carlo
    Member

    Hi Lilac. To remove the note below the comment form, try adding the below code to your theme functions:

    add_filter( 'comment_form_defaults', function( $defaults ) {
    	$defaults[ 'comment_notes_after' ] = '';
    	return $defaults;
    } );

    To make your menu bar solid, try adding the below code to your theme stylesheet:

    .nav-primary {
    	background-color: #87c733;
    }

    Let me know if those solutions work.


    Comprehensive, easy to follow Genesis documentation

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 150 total)
← 1 2 3 4 5 6 7 8 →
« Previous Page

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