• 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

nciske

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 49 total)
1 2 3 →
  • Author
    Posts
  • June 9, 2017 at 12:23 pm in reply to: Can't Access Dashboard After Updating to 2.5.2 #207525
    nciske
    Member

    I posted a fix in this thread:

    Fatal Error after Updating to Genesis 2.5.2

    But I'm guessing (hoping?) they'll be releasing an official patch/fix soon.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 9, 2017 at 11:55 am in reply to: Fatal Error after Updating to Genesis 2.5.2 #207519
    nciske
    Member

    There's a typo in the upgrade function that just got me as well.

    How I fixed it:

    /wp-content/themes/genesis/lib/functions/upgrade.php
    On line 604: change genesis_upgrade_2502 to genesis_upgrade_2503 then refresh the page with the missing function error.

    Not sure if they meant that to be named 2502 or 2503, but the actual function is named 2503, hence the missing function error.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 11:20 am in reply to: Changing Hyperlink Color for Streamline Pro #191056
    nciske
    Member

    Options

    • Tweak it in styles.css or Simple Custom CSS
    • Use a Genesis 'tweaks" plugin like Design Palette Pro
    • Use a plugin like CSS Hero

    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 9:08 am in reply to: Online guestbook to gather stories #191063
    nciske
    Member

    Create a post/page and use the comments feature built into WordPress or use a plugin like:
    https://wordpress.org/plugins/in-memoriam-light-a-candle/screenshots/


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 9:06 am in reply to: Missing Template settings and widgets on Blog page #191062
    nciske
    Member

    Check out Genesis Simple Sidebars:

    Genesis Simple Sidebars

    Use the default primary sidebar for blog widgets, then choose a custom sidebar for your pages.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 9:04 am in reply to: Multiple RSS News Themes #191061
    nciske
    Member

    You want the articles to be on the site, or link offsite?

    On site
    Any theme will work, but you'll need a way to import the RSS feeds as posts, add them to the right category (or a custom taxonomy) and use the taxonomy widgets to display each feed.

    Link offsite
    A news style theme with a bunch of RSS widgets would work.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 9:00 am in reply to: Add Title and Alt Text to Soliloquy Slider #191058
    nciske
    Member

    Or, as one snippet: tweak the markup as needed for your site.

    //* Add Title & Alt to Soliloquy Slider
    add_filter( 'soliloquy_output_caption', 'sol_soliloquy_title_before_caption', 10, 5 );
    function sol_soliloquy_title_before_caption( $caption, $id, $slide, $data, $i ) {
         
        // Check if current slide has a title specified
        if ( isset( $slide['title'] ) && !empty( $slide['title'] ) ) {
            $caption = '<h4 class="title">' . $slide['title'] . '</h4>'; 
            $caption .= '<h4 class="alt">' . $slide['alt'] . '</h4>'; 
           	$caption .= '<div class="caption">' . $slide['caption'] . '</h4>'; 
            } 
            return $caption;
    }

    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 10, 2016 at 8:58 am in reply to: Add Title and Alt Text to Soliloquy Slider #191057
    nciske
    Member

    Your second code snippet replaces the caption variable with the alt text. If you want to add to it instead, you need to concatenate .= vs. replace =.

    //* Add Alt Text to Soliloquy Slider
    add_filter( 'soliloquy_output_caption', 'sol_soliloquy_alt_before_caption', 10, 5 );
    function sol_soliloquy_alt_before_caption( $caption, $id, $slide, $data, $i ) {
         
        // Check if current slide has a title specified
        if ( isset( $slide['alt'] ) && !empty( $slide['alt'] ) ) {
            	$caption .= '<h4 class="alt">' . $slide['alt'] . '</h4>'; 
            	$caption .= '<div class="caption">' . $slide['caption'] . '</h4>'; 
            } 
            return $caption;
    }

    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 26, 2015 at 8:27 pm in reply to: Calendar Plugin That Prints Month View #163683
    nciske
    Member

    Great... but you didn't answer my question:

    "The calendar (which appears to be All in One Calendar vs The Events Calendar) is printing about as I’d expect… what are you/the client expecting that’s not happening?"


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    August 26, 2015 at 8:15 pm in reply to: Calendar Plugin That Prints Month View #163681
    nciske
    Member

    The calendar (which appears to be All in One Calendar vs The Events Calendar) is printing about as I'd expect... what are you/the client expecting that's not happening?

    Screen Shot

    The expanded URLs are a bit kludgey, but that's the AI1EC styling, not Genesis:
    Screen Shot

    More:
    https://time.ly/forums/topic/bug-when-printing-shows-entire-date-url/

    Also, this may be a better print plugin to try as it's Genesis specific:

    Genesis Printstyle Plus

    Another (simple but solid) calendar to try (free and paid versions exist):

    https://pippinsplugins.com/products/sugar-event-calendar/

    You can see on the live demo that the calendar prints pretty much verbatim:
    https://pippinsplugins.com/demo-sugar-calendar/


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    May 25, 2015 at 12:31 pm in reply to: I need to show the email adress in the comments #153571
    nciske
    Member

    This should get you started:
    http://wpsmackdown.com/add-content-post-authors-comment/

    I'd strongly recommend you use a plugin like CryptX to obfuscate the emails of your users (the JavaScript method works best). They may have given you permission to use them, but allowing them to be spammed mercilessly was unlikely part of that agreement 😉

    Even better, never output the email and use a seperate form to allow email to go to your users without ever revealing their email (until they respond of course).


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 23, 2014 at 4:21 pm in reply to: Responsiveness of the banner -Outreach Theme #111241
    nciske
    Member
    .header-image .site-title & gt;
        a {
            float: left;
            min-height: 180px;
            width: 100%;
        }

    Needs to be:

    .header-image .site-title >
        a {
            float: left;
            min-height: 180px;
            width: 100%;
        }

    e.g. replace "& g t ;" with a left angle bracket. The forum keeps mangling the code...


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:19 pm in reply to: Minimum Pro – Background Image Tips #110506
    nciske
    Member

    Size wise: 1600x1200 or larger would be best, but bigger means larger file size. A 4:3 aspect ratio would work best as most computer screens are that (or close) and it's easy to crop that to 16:9, but cropping 16:9 to 4:3 loses a lot of data.

    Possibly relevant:
    http://travlanders.com/wordpress/2013/09/studiopress-minimum-pro-background-image-options/


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:13 pm in reply to: Mobile Layout Of My Theme #110505
    nciske
    Member

    A real answer to this thread:

    Easy way: Insert the ads all the places you want them to appear, then show/hide them with media queries so they only appear at certain resolutions.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:12 pm in reply to: Mobile Layout Of My Theme #110503
    nciske
    Member

    Oops, replied to the wrong post. Please disregard.


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:11 pm in reply to: Responsiveness of the banner -Outreach Theme #110502
    nciske
    Member

    Try this (in your max-width 1023px media query):

    
    .header-image .site-title > a{
    	float: left;
    	min-height: 180px;
    	width: 100%;
    }
    
    .site-title a{
    	background: url("http://armidaletreegroup.org.au/wp-content/uploads/cropped-arm-tree-group-header-150-v2.png") repeat-x;
    	background-size: contain;
    }
    

    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:08 pm in reply to: Parallax Pro Modification for Mobile #110501
    nciske
    Member

    cover or contain didn’t cut it?
    This doesn't stretch the images?


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:06 pm in reply to: Problem in Eleven40 pro – og:image schema tag #110500
    nciske
    Member

    Manipulating WordPress SEO’s choice of Open Graph image


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:05 pm in reply to: Help with logo not resizing properly #110499
    nciske
    Member

    'the logo does not resize down accordingly"

    Looks like it resizes to me... can you better explain what you were expecting... and what's actually happening? Bonus points for a screenshot of how you want it to look 😉


    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

    June 18, 2014 at 11:01 pm in reply to: Mobile Layout Of My Theme #110497
    nciske
    Member

    Try this (in your max-wdith 1023px media query):

    
    .header-image .site-title > a{
    	float: left;
    	min-height: 180px;
    	width: 100%;
    }
    
    .site-title a{
    	background: url("http://armidaletreegroup.org.au/wp-content/uploads/cropped-arm-tree-group-header-150-v2.png") repeat-x;
    	background-size: contain;
    }
    

    Nick Ciske | https://luminfire.com/ | @nciske
    Did I help you? Say thanks: http://bit.ly/1lahwy0

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

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