• 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 20 posts - 1 through 20 (of 91 total)
1 2 3 4 5 →
  • Author
    Posts
  • September 8, 2015 at 8:47 am in reply to: Pathway Gothic One Google Font and News Pro theme #164913
    Graham
    Member

    Thought so. Thanks for your confirming opinion.


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

    July 16, 2015 at 7:48 pm in reply to: Query Without Reload #159620
    Graham
    Member

    Start here

    https://codex.wordpress.org/AJAX


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

    July 16, 2015 at 7:37 pm in reply to: How do I make a mobile app for my website? #159619
    Graham
    Member

    https://apppresser.com ?

    Not used it, yet have heard good things


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

    June 15, 2015 at 6:46 pm in reply to: What's it called and How do you create it? #156330
    Graham
    Member

    Theirs*


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

    June 15, 2015 at 5:22 pm in reply to: What's it called and How do you create it? #156324
    Graham
    Member

    Scroll triggered box for the sign up form at bottom

    Scroll then fix - for the site header and nav-wrap

    e.g. https://wordpress.org/plugins/scroll-triggered-boxes/

    There's is done with a bit of jQuery combined with some css

    jQuery( function($) {
    	$navs = $( '.nav-wrap, .site-header' );
    	$newsletterPopup = $( '.newsletter-signup-footer' );
    	$( window ).scroll( function() {
    		if ( $( window ).scrollTop() > 105 ) {
    			$navs.addClass( 'fixed' );
    			$newsletterPopup.addClass( 'popup' );
    		} else {
    			$navs.removeClass( 'fixed' );
    			$newsletterPopup.removeClass( 'popup' );
    		}
    	});
    } );

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

    June 15, 2015 at 5:19 pm in reply to: How To Chance Agent Press Pro Featured Background Area #156323
    Graham
    Member

    no. it is not php, it is CSS

    place it at the bottom of the CSS file


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

    June 15, 2015 at 5:17 pm in reply to: Change "leave a comment" wording #156322
    Graham
    Member

    A thought...

    You do have W3 Total Cache enabled .. maybe you need to clear the cache manually before you see any changes?


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

    June 15, 2015 at 5:09 pm in reply to: Change "leave a comment" wording #156320
    Graham
    Member
    add_filter( 'comment_form_defaults', 'child_comment_form_defaults' );
    function child_comment_form_defaults( $defaults ) {
     
    	$defaults['title_reply'] = 'Have your say';
    	return $defaults;
     
    }

    Placed at the bottom of your functions.php file should change the wording to "Have your say"

    Have you tried it?


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

    June 15, 2015 at 4:55 pm in reply to: How To Chance Agent Press Pro Featured Background Area #156315
    Graham
    Member

    CSS

    .home-featured .widget {
        background: transparent none repeat scroll 0 0;
    }

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

    June 15, 2015 at 4:14 pm in reply to: Change "leave a comment" wording #156310
    Graham
    Member
    <?php
    //* Do NOT include the opening php tag shown above. Copy the code shown below.
    
    //* Modify the speak your mind title in comments
    add_filter( 'comment_form_defaults', 'sp_comment_form_defaults' );
    function sp_comment_form_defaults( $defaults ) {
     
    	$defaults['title_reply'] = __( 'Leave a Comment' );
    	return $defaults;
     
    }

    Comments


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

    June 14, 2015 at 10:03 pm in reply to: I want the homepage to show different featured posts everyday, how do I do that? #156208
    Graham
    Member

    Not quite what you're after .. yet perhaps use the Featured Posts Widget.

    Set the number of posts to show = 6 and Order By = Random


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

    June 12, 2015 at 6:03 pm in reply to: Chrome & FF Displaying Gallery Differently #156026
    Graham
    Member

    Sounds like you're setting the link on the gallery images to the image file itself. These are the default image file displays for Firefox and chrome.
    Use an image attachment template to have more control

    The Executive pro theme does not have a image attachment template.... (Disappointingly, I've not seen one yet in a StudioPress theme, but happy to be corrected), so WordPress defaults to using the next available template in the theme following the hierarchy.

    Template Hierarchy

    In this case, the single.php that is found in the parent Genesis theme ( the same that is used to display single blog posts )

    An option would be to customise the Executive Pro theme by adding your own template file for displaying image attachments ( image.php )

    ___

    Other options could be using a carousel to display the gallery, check the one that comes with Jetpack as an example


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

    June 11, 2015 at 9:34 pm in reply to: Genesis Simple Sidebars plugin #155928
    Graham
    Member

    Sometimes a plugin doesn't need to be updated. I wouldn't consider it a cause for concern, we use it when required


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

    June 11, 2015 at 9:31 pm in reply to: Block Quotes Won't ReSize Properly in Executive Pro #155927
    Graham
    Member

    Check the fonts that are being used by the stylesheet against those that you have enqueued


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

    June 9, 2015 at 4:37 pm in reply to: Making filters affect custom loop only #155632
    Graham
    Member

    OK great, thank you. That pointed me back on track

    As it stands, adding that to my existing code wouldn't work as hoped. I would end up with one Organisation and the rest being CreativeWorks ,

    Yet if I change the hook I use from genesis_header to genesis_before_entry .. then all good.

    i.e.

    add_action( 'genesis_before_entry', 'vlhdir_edits' ); 
    function vlhdir_edits() {
        if ( get_post_type() == 'vlhdir_entry' ) { 
            remove_filter( 'genesis_attr_entry', 'genesis_attributes_entry' );
            add_filter( 'genesis_attr_entry', 'vlhdir_attributes_entry' );
    
            // etc
    
        }
    }
    
    add_action(  'genesis_after_entry', 'vlhdir_remove_edits'  );
    function vlhdir_remove_edits() {
        if ( get_post_type() == 'vlhdir_entry' )  {
            remove_filter( 'genesis_attr_entry', 'vlhdir_attributes_entry' );
            add_filter( 'genesis_attr_entry', 'genesis_attributes_entry' );
    
            // etc
        
        }
    }

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

    June 7, 2015 at 5:52 pm in reply to: MODERN STUDIO PRO THEME – IMAGE SLIDER #155283
    Graham
    Member

    If you are using the Genesis Responsive Slider, then check the maximum image width and height in the slider settings

    Dashboard > Genesis > Slider Settings > Display Settings

    The featured image associated with the post(s) that are being shown in the slider must be at least these dimensions

    If they are less, then a gap will appear in the slider


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

    May 29, 2015 at 6:48 pm in reply to: How to change page URL extension? #154179
    Graham
    Member

    Another approach is to use 301 redirects and say good bye to the .html extensions

    https://support.google.com/webmasters/answer/93633?hl=en


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

    May 29, 2015 at 6:23 am in reply to: Remove white space in Responsive header, Parallax Pro #154086
    Graham
    Member

    That is being caused by padding on .title-area

    .title-area {
        padding: 20px 0;
    }

    and padding-bottom of .site-header in the media query section

    @media only screen and (max-width: 960px) {
      .site-header {
        padding-bottom: 10px;
      }
    }

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

    May 29, 2015 at 3:46 am in reply to: Remove white space in Responsive header, Parallax Pro #154068
    Graham
    Member

    Do you have a link to your site?


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

    May 29, 2015 at 12:05 am in reply to: White Gap Driving Me NUTS!!! Help please! #154054
    Graham
    Member

    Hah! Snap

    I've just answered the same on the same post in the General Discussion forum, I hadn't got to Design Tips and Tricks yet.

    That's reassuring

    http://www.studiopress.community/topic/white-gap-driving-me-nuts-help-please/#post-154053


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

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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