• 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

FireSamurai

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 30 total)
1 2 →
  • Author
    Posts
  • January 16, 2015 at 2:32 pm in reply to: Need help: Fatal Error – 'Cannot Redeclare function' error. #137705
    FireSamurai
    Member

    Thanks, and thank you for taking the time. Have a great weekend.

    January 16, 2015 at 2:11 pm in reply to: Need help: Fatal Error – 'Cannot Redeclare function' error. #137702
    FireSamurai
    Member

    Fixed it. The answer makes total sense now that I step back and look at it again.

    I was defining the recipes_post_image() function inside the seasoning2014_archive_query() function. The problem is that the seasoning2014_archive_query() gets called each pre_get_posts action.

    The second time that happens I was defining the recipes_post_image() function for a second time, causing the error.

    January 16, 2015 at 2:01 pm in reply to: Need help: Fatal Error – 'Cannot Redeclare function' error. #137700
    FireSamurai
    Member

    I know, that's what's crazy about it. If I remove those lines of code I don't get that error, but then I dont' get the image I want either. Those lines are only meant to swap out the featured image size. Maybe if there's another way of doing that, I can circumvent the problem.

    January 16, 2015 at 1:32 pm in reply to: Need help: Fatal Error – 'Cannot Redeclare function' error. #137693
    FireSamurai
    Member

    I've created a gist, thank you for taking a look:
    TCD functions.php

    July 14, 2014 at 1:00 pm in reply to: README.txt Not Displaying in Admin #114270
    FireSamurai
    Member

    Wow, apparently I'm out of the loop... I guess I'll have to write a plugin for that now.

    February 26, 2014 at 12:06 pm in reply to: Adding an additional argument to breadcrumbs for MultiSite #92495
    FireSamurai
    Member

    Thanks Brad! I attempted using that but couldn't get the crumb to display even still. Likely, I'm not adding the new argument to the array correctly.

    February 19, 2014 at 11:54 am in reply to: Add conditional stylesheets for Internet Explorer to a Genesis Child Theme #91207
    FireSamurai
    Member

    Hi Susan, thanks for checking in. I actually just posted this is a help for others who may be wanting to create conditional style sheets. I thought I had marked it as "Not a Support Question", but apparently the system doesn't really account for that very well, or maybe I misunderstood the purpose of that option. We can always mark it as "Resolved" if that's the proper protocol.

    January 13, 2014 at 9:16 am in reply to: Homepage doesn't scroll on mobile #84964
    FireSamurai
    Member

    I've narrowed it down to where the issue is happening, but have not figured out the cause.

    January 12, 2014 at 4:45 pm in reply to: Homepage doesn't scroll on mobile #84836
    FireSamurai
    Member

    ... Except that it's not resolved. It's still an issue. I'm hoping someone can offer some additional insight.

    January 12, 2014 at 2:34 pm in reply to: Homepage doesn't scroll on mobile #84810
    FireSamurai
    Member

    It's a theme I've built for myself. I've narrowed it down to being an issue with the background. Mobile devices seem to want to scroll the background image on the .home-about section instead of scrolling the actual website.

    January 12, 2014 at 2:04 pm in reply to: Homepage doesn't scroll on mobile #84806
    FireSamurai
    Member

    HI Anitac,

    Thanks for checking in. I'm using both an iPad and iPhone, and I"ve had reports from others saying that mobile chrome on android isn't scrolling either...

    December 5, 2013 at 1:47 pm in reply to: Site Unexpectly Crashes in Internet Explorer 8 (IE8) #77272
    FireSamurai
    Member

    I finally figured it out. In the normalize CSS code I've been using (git.io/normalize), the following portion of the html declaration breaks IE8:

    html{font-family:sans-serif;...

    So I just removed the font-family:sans-serif; and it's good now.

    December 5, 2013 at 1:41 pm in reply to: Site Unexpectly Crashes in Internet Explorer 8 (IE8) #77270
    FireSamurai
    Member

    Finally figured it out. In the normalize CSS code I've been using (git.io/normalize), the following portion of the html declaration breaks IE8:

    html{font-family:sans-serif;...

    So I just removed the font-family:sans-serif; and it's good now.

    November 18, 2013 at 9:58 pm in reply to: Scrolling doesn't work on homepage #74118
    FireSamurai
    Member

    OMG, I finally found the issue after hours of searching... the culprit? An overflow: hidden; declaration. I will now celebrate by crying tears of joy.

    November 15, 2013 at 3:23 pm in reply to: Site Unexpectly Crashes in Internet Explorer 8 (IE8) #73273
    FireSamurai
    Member

    Ahoy there. I did post in their forum as well. The thing is, I'm not exactly sure that the issue is caused by their plugin, or rather my own code. I've developed other themes that are not conflicting with the plugin, so I tend to think that it's something on my end (though their code isn't exactly the most error-free either).

    When I run diagnostics, I get some script errors being thrown from their plugin.

    November 15, 2013 at 12:23 pm in reply to: Header Text Still Dipslays on Homepage #73201
    FireSamurai
    Member

    I figured out what was going on. I had added a function on my home page that was telling it to replace the body styles with ones that I had created. I just kept missing (and had forgotten about) that when I was going over my code. Things are working great now. Thanks for the help.

    November 7, 2013 at 12:35 pm in reply to: Header Text Still Dipslays on Homepage #71514
    FireSamurai
    Member

    Thanks for the advice nutsandbolts. I've figured out the cause of the issue, now I'm just not sure how to fix it... It appears that .header-image class is not being added to the body section on the homepage...

    I would typically just use the following code, but the way I have my homepage set up doesn't allow for their use...

    <?php get_header(); ?>
    
    <?php genesis_home(); ?>

    I'm going to mess around with it for a bit and see what I figure out.

    November 6, 2013 at 7:50 pm in reply to: Header Text Still Dipslays on Homepage #71368
    FireSamurai
    Member

    Thanks for the suggestion; I failed to mention that I'm using a MultiSite install where some sites will be using an image header and some will not, so I can't do a universal text-indent.

    October 11, 2013 at 2:04 pm in reply to: Genesis Simple Sidebars Doesn't Activate on MultiSite #66331
    FireSamurai
    Member

    The Quick Answer:
    Make sure a Genesis-compatible child-theme is activated (and not broken) on your site(s); for MultiSite, this has to be on all of your sites.

    The Long Answer:
    After doing some more testing after giving it a rest, I discovered this same thing can happen on regular WordPress installs as well. The issue is caused when you don't have a Genesis-compatible child theme activated on your site. This means on MultiSite, if one of your sites is not using a Genesis child theme (even if the framework is installed), it will not let you activate the plugin. You'll have to go through each site 1-by-1 and activate it that way. This isn't very practical for MultiSite installs, and it would be nice to have this changed.

    June 28, 2013 at 10:46 pm in reply to: Outreach Theme – How do you change the copyright line #48336
    FireSamurai
    Member

    Crap. Still getting used to embedding gists on this forum (and apparently it won't let me edit my last post)... so here is the code:

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

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