• 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

Graham

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 - 81 through 91 (of 91 total)
← 1 2 3 4 5
  • Author
    Posts
  • May 19, 2015 at 2:33 am in reply to: Altitude Pro – Change ONE Text Widget Background Colour #152708
    Graham
    Member

    Try

    .solid-section {
    	background-color: #FFA500;
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 19, 2015 at 2:21 am in reply to: Responsive Slider — MOBILE #152702
    Graham
    Member

    Likewise, I tend not to use the Genesis Responsive Slider for this very reason. I was disappointed in the outcome.

    Without the post title, the featured images in the slide usually carry no meaning and the slider becomes a pointless slide show on mobile.

    We use LayerSlider at the moment, yet I intend to investigate Soliloquy as an alternative. I see it mentioned a lot.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 19, 2015 at 12:40 am in reply to: Menu Items borders flash dashed white when clicked #152693
    Graham
    Member

    I can't replicate that currently, not seeing the white borders.

    As it's a premium theme, it might be worth asking the theme authors / support.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 19, 2015 at 12:07 am in reply to: Alter title for paginated multi-page posts(add Page 2 etc) #152689
    Graham
    Member

    If you wished, you could remove that filter from wp_title() and add your own as indicated above:

    remove_filter('wp_title', 'genesis_default_title', 10, 3);
    add_filter ('wp_title','child_default_title', 10, 3);
    function child_default_title( $title, $sep, $seplocation ) {
    	global $wp_query;
    	global $page;	
    	if( $page > 1 ) {
    		$title .= ' (Page  ' . $page . ')';
    	}
    	// etc
    	return esc_html( trim( $title ) );
    }

    Or perhaps (?), disable the Genesis SEO entirely and use something like Yoast SEO which I believe gives the option to no-index subpages and add a %%page%% variable to the template.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 11:44 pm in reply to: Alter title for paginated multi-page posts(add Page 2 etc) #152679
    Graham
    Member

    Yes, sorry ... my function was only aimed at changing the titles on the page. I missed the part about GWT (Google Webmaster Tools) in your post.

    As genesis_default_title() only allows the user to set a custom title on a per-page or per-post basis - and is not further filterable, I feel you would have to remove that filter from wp_title() and then roll your own function.

    remove_filter('wp_title', 'genesis_default_title', 10, 3);
    add_filter('wp_title', 'child_default_title', 10, 3);
    function child_default_title(  $title, $sep, $seplocation  ){
      // etc
    }

    Seems like a lot of work and begs the question .. if you wish to have separate SEO titles for each section and not rel canonical , then I suspect you would need separate meta descriptions as well.. (otherwise GWT will moan about there being duplicate meta descriptions) - -- so why not post each section as a separate blog post and just link to the other related posts in the content?

    I'm happy to be educated here.

    No further suggestions, sorry.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 11:01 pm in reply to: Minimum Pro Portfolio Page #152670
    Graham
    Member

    For some reason, when the Portfolio custom post type is added in that theme, support for genesis-cpt-archives-settings is not enabled.

    In functions.php look for ( line 92 ? )

    'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'revisions', 'page-attributes', 'genesis-seo' ),

    and replace with

    'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'revisions', 'page-attributes', 'genesis-seo', 'genesis-cpt-archives-settings' ),

    This adds a new menu item Archive Settings under the Portfolio menu item.

    If Genesis SEO is enabled, you should then be able to add a custom document title and meta description for your portfolio archive.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 10:27 pm in reply to: Alter title for paginated multi-page posts(add Page 2 etc) #152660
    Graham
    Member

    Ah sorry, missed the part about GWT (Google Webmaster Tools) ... that will be to do with rel=canonical

    So probably a SEO plugin / settings option ?


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 10:21 pm in reply to: Alter title for paginated multi-page posts(add Page 2 etc) #152658
    Graham
    Member

    You would have to add a filter to genesis_post_title_text that checks the value of the $page variable.

    e.g.

    add_filter ('genesis_post_title_text', 'child_maybe_filter_title' );
    function child_maybe_filter_title( $title ) {
    	global $page;
    	if( $page > 1 ) {
    		$title .= ' (Page ' . $page . ')';
    	}
    	return $title;
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 9:52 pm in reply to: Removing sidebar for Single Blog Posts Categorized as "Testimonials" #152654
    Graham
    Member

    Or, conditionally remove sidebar without forcing full width layout. e.g.

    add_action( 'get_header', 'child_maybe_remove_sidebar' );
    function child_maybe_remove_sidebar() {
    	if ( is_single() && in_category( 'Testimonials' ) ) { 
    		remove_action( 'genesis_sidebar', 'ss_do_sidebar' );
    		remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
    	}
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 18, 2015 at 9:43 pm in reply to: Removing sidebar for Single Blog Posts Categorized as "Testimonials" #152652
    Graham
    Member

    Possibly force full width content if single view and in Testimonials category

    add_filter( 'genesis_pre_get_option_site_layout', 'child_maybe_full_width_content' );
    function child_maybe_full_width_content( $opt ) {
        if ( is_single() && in_category( 'Testimonials' ) ) {
            $opt = 'full-width-content';
            return $opt;
        }
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 13, 2015 at 5:46 pm in reply to: Missing footer widget area in Genesis Sample. #152092
    Graham
    Member

    Hi, the correct code to add 3 Genesis footer widgets is

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

    Tutorial here
    http://my.studiopress.com/tutorials/add-footer-widgets/


    My JustGiving page: https://www.justgiving.com/helping-graham-give

  • Author
    Posts
Viewing 11 posts - 81 through 91 (of 91 total)
← 1 2 3 4 5
« Previous Page

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