• 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

chillybin

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 - 21 through 40 (of 68 total)
← 1 2 3 4 →
  • Author
    Posts
  • February 10, 2014 at 8:11 am in reply to: How to remove post meta space and shrink post entries space #89659
    chillybin
    Member

    Alternatively, you can just add this code to your style.css

    footer.entry-footer {
      display: none;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:10 am in reply to: How to remove post meta space and shrink post entries space #89658
    chillybin
    Member

    Not sure, that could should work, a 500 error means you have some formatting wrong in functions.php

    make sure you have an open <?php tag at the top, and this code is before any closing ?>


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:07 am in reply to: How to remove footer widgets from front page? #89655
    chillybin
    Member
    //* Remove footer widgets from front page
    
    if ( is_front_page() || is_home())  {
    	  remove_action( 'genesis_after', 'genesis_footer_widget_areas' );
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 8:02 am in reply to: invert hover color scheme and non hover color scheme #89652
    chillybin
    Member
    .footer-widgets a { color: #333; }
    .footer-widgets a:hover { color: #d7c603; }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:56 am in reply to: How to remove footer widgets from front page? #89648
    chillybin
    Member

    This should help

    //* Remove footer widgets from front page
    add_action( 'genesis_after', 'remove_footer_widgets' );
    
    function remove_footer_widgets() {
    	if ( is_front_page() || is_home())  {
    	  remove_action( 'genesis_after', 'genesis_footer_widget_areas' );
    	}
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:50 am in reply to: NewsPro Homepage: Number of comments with tags and categories after post excerpt #89646
    chillybin
    Member

    You can unhook it from Entry Header and place it in Entry Footer

    Entry Header

    Entry Footer

    Place this code in functions.php and it should be all ok

    //* Customize the entry meta in the entry header (requires HTML5 theme support)
    add_filter( 'genesis_post_info', 'sp_post_info_filter' );
    function sp_post_info_filter($post_info) {
    	$post_info = '[post_date] by [post_author_posts_link] [post_edit]';
    	return $post_info;
    }
    //* Customize the entry meta in the entry footer (requires HTML5 theme support)
    add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
    function sp_post_meta_filter($post_meta) {
    	$post_meta = '[post_categories] [post_tags] [post_comments]';
    	return $post_meta;
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:45 am in reply to: Need some serious help #89643
    chillybin
    Member

    There are options in Genesis > Theme settings on what to do with your RSS feeds

    Also, there is an option in WordPress SEO plugin regarding hiding your feeds, you may want to look there as well


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:41 am in reply to: How to remove post meta space and shrink post entries space #89641
    chillybin
    Member

    add this to functions.php if you're using a html5 theme, if not the snippets are here > http://my.studiopress.com/snippets/post-meta/

    //* Remove the entry footer markup (requires HTML5 theme support)
    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    //* Remove the entry meta in the entry footer (requires HTML5 theme support)
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:39 am in reply to: IE7 Enterprise Pro menu bug #89640
    chillybin
    Member

    I don't think IE7 is still supported, but I'm note 100% sure.

    This should point you in the right direction > http://uncorkedstudios.com/blog/how-to-fix-the-ie7-and-inlineblock-css-bug


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:36 am in reply to: Remove Title From Page #89638
    chillybin
    Member

    or in functions.php you could have conditional statements to remove the hooks for those specific pages

    
    if (is_home()) {
    //* Remove the entry header markup (requires HTML5 theme support)
    remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
    remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
    //* Remove the entry meta in the entry header (requires HTML5 theme support)
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    }
    

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 10, 2014 at 7:30 am in reply to: Nivo Slider not responsive #89634
    chillybin
    Member

    With 1 image it just displays the image with no javascript, with 2 images it loads the slider

    Best to ask for support at the Nivo Slider support forums though


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 6:52 pm in reply to: Is the Crystal Theme Compatible with the Latest Genesis Update? #89271
    chillybin
    Member

    You can follow the instructions for your theme here > http://my.studiopress.com/setup/crystal-theme/

    It will show you how to get the site up and running and looking like the demo, but with your own conent


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 6:38 pm in reply to: Weather To Allow Comments or Not on My WP Blog ? #89266
    chillybin
    Member

    I would have them on, but only for a period of time, in the wordpress settings you can turn off comments after a set number of days, 14 for example, will stop a bit of spam, and encourage your active audience to participate on new topics. I dont usually design for blogs though so i turn them off on all my client sites


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 6:15 pm in reply to: uploaded code for google fonts and got an error message #89257
    chillybin
    Member

    You can edit in cPanel, or download something like Notepad++ on Windows


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 5:59 pm in reply to: Directory #89252
    chillybin
    Member

    I created my own directory using Advanced Custom Fields and Gravity Forms, Gravity Forms has a 3rd party plugin for a directory as well, i've not used it before, I just created everything with templates and custom post types and fields


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 5:53 pm in reply to: Parallax Pro reduced experience on Windows Chrome #89250
    chillybin
    Member

    You could always change the fonts away from the Google Webfonts back into web-safe fonts.

    Or you could comment out this line in the CSS

    body {
        background-color: #fff;
        color: #000;
        font-family: 'Sorts Mill Goudy', sans-serif;
        font-size: 22px;
        font-weight: 400;
        line-height: 1.5;
        /* -webkit-font-smoothing: antialiased; */
    }

    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 7, 2014 at 5:34 pm in reply to: Enterprise Pro theme – text formatting #89247
    chillybin
    Member

    You could always disable autowp using something like

    Disable WordPress autop

    or use this to toggle it on and off for each post/page

    http://wordpress.org/plugins/toggle-wpautop/


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 4, 2014 at 5:45 pm in reply to: Updated to HTML5 #88636
    chillybin
    Member

    We just finished most of the mobile responsive design as well, phew, now to optimise and tweak! It's never-ending!


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 4, 2014 at 4:27 am in reply to: Is It WordPress or StudioPress That Hates Photographers? #88484
    chillybin
    Member

    Should be OK,

    You now need to regenerate the thumbnails using http://wordpress.org/plugins/ajax-thumbnail-rebuild/

    And you need to make that change in home.php as well to select the new image size you just created


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

    February 4, 2014 at 3:53 am in reply to: Is It WordPress or StudioPress That Hates Photographers? #88480
    chillybin
    Member

    if you dont want it to crop the image, change

    add_image_size( 'grid-featured-388', 388, 200, TRUE );

    to

    add_image_size( 'grid-featured-388', 388, 200, FALSE );

    then adjust to the right dimensions


    We are a web design & development consultancy based in Singapore who specialise in all things WordPress & Genesis. | ChillyBin Web Design & Consultancy: http://www.chillybin.com.sg | Twitter: @chillybindesign

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 68 total)
← 1 2 3 4 →
« 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