• 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

spiezz

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 70 total)
1 2 3 4 →
  • Author
    Posts
  • August 11, 2021 at 3:31 pm in reply to: Post Banner from Featured image in Monochrome Pro by category #504393
    spiezz
    Participant

    I've managed to style the element (entry-background ) but there's something overwriting my css. Any ideas?
    I can get it to work in inspector but even with "last load" css it's reverting to banner.

    July 1, 2021 at 11:22 am in reply to: Display featured image as banner in only one category of posts #504297
    spiezz
    Participant

    I'm using the featured image for the banner.
    I'd like to display post info in an archive with an image- but don't want that featured image to appear on the banner for posts in just that category.
    The image appears to be loaded before the category.
    Any ideas?
    Thanks!

    June 16, 2021 at 8:42 am in reply to: Display featured image as banner in only one category of posts #504262
    spiezz
    Participant

    Hi Anita,

    I want to add the featured image for each post as a banner on the top of each page but only for that one category.

    The featured images for other categories should only appear on archives, not as page banners.

    See what I mean?

    Thanks!

    February 21, 2020 at 4:24 pm in reply to: Extra background space on Mobile – just one side #496886
    spiezz
    Participant

    http://www.reviewblastoff.com
    Thanks!

    January 31, 2020 at 6:23 pm in reply to: Cafe Pro Responsive Menu Not Sticky #496342
    spiezz
    Participant

    On mobile? It works fine on desktop....
    I can't get it to stick anywhere on mobile...

    January 30, 2020 at 1:06 pm in reply to: Cafe Pro Extra Text above Header #496313
    spiezz
    Participant

    Dang. I'll get that out of the header.

    I did like that tutorial but it wiped out my menu entirely! I'll try it again now that I've removed the "pages within pages" issue.

    Thanks SO much!

    January 21, 2020 at 3:21 pm in reply to: Altitude Pro Front Page sections height #496094
    spiezz
    Participant

    Part of the problem is that I set background to :contain instead of :fill.
    Should I set those w css based on screen size?

    January 21, 2020 at 9:37 am in reply to: Don't see Genesis in WP Dashboard after update to Genesis 3.1.1 #496082
    spiezz
    Participant

    thank you!
    Genesis wasn't appearing at all before. I see it now and I actually like how they tucked Genesis plugins there.

    January 20, 2020 at 3:00 pm in reply to: No Scroll on any Genesis- Is it server?? #496051
    spiezz
    Participant

    After a lot of investigating I found that it had something to do with the server settings - the php settings on Media Temple.
    I opted to move it to my server and there's no problem at all.

    December 23, 2019 at 2:41 pm in reply to: No Scroll on any Genesis- Is it server?? #495624
    spiezz
    Participant

    Thanks Victor!
    I applied other changes mentioned and asked Media Temple to reset server cache but didn't seem like it helped.

    Any suggestions for how to remove the "overflow:hidden;" command that's preventing scrolling?
    Thanks so much,
    Karen

    December 19, 2019 at 11:03 am in reply to: No Scroll on any Genesis- Is it server?? #495577
    spiezz
    Participant

    So, it's a problem in the functions.php
    This is the debug error:

    Function create_function() is deprecated in /nfs/c10/h08/mnt/178082/domains/marasitara.com/html/wp-content/themes/aspire-pro/functions.php on line 128

    Here's the whole line:
    // WooCommerce | Display 30 products per page.
    add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 30;' ), 20 );

    Tried DELETING Woocommerce and all related plugins and removing line. No improvement.

    Here's something I found on replacing create_function

    Fix for create_function deprecated in PHP 7.2
    KTS915 (@kts915)
    1 year, 6 months ago
    On line 652 of rest-manager/includes/class-rest-manager-settings.php, it currently says:

    $callback = create_function('', 'echo "'.str_replace('"', '\"', $section['desc']).'";');
    create_function is deprecated in PHP 7.2, so this line should be changed to:

    $callback = function() {
    	echo str_replace('"', '\"', $section['desc']);
    };

    How exactly do apply this solution?

    December 18, 2019 at 11:54 pm in reply to: No Scroll on any Genesis- Is it server?? #495568
    spiezz
    Participant

    Thank you! Progress!When it's switched off in inspector, everything scrolls!

    But I can't see where that style for "itemtype" is set. It's not in the css (I see only overflow-x:hidden;) or the index area in the bottom of the customize window.

    There is a "overflow:hidden;" for a bunch of different elements on the page but only this one is blocking scrolling on whole site.

    I looked up element.style and it's apparently set in js somewhere on the site. I'm using this same theme on my own host (flywheel) and have never had this issue which makes me think that it might be host (media temple).

    October 7, 2019 at 4:21 pm in reply to: HELP "Page Contents" Text above Site Container #493901
    spiezz
    Participant

    OHH. I know what this is. It's some code I copied to validate for a search engine.
    Fantastic. I'll have it out in a snap.

    Thanks SO much!

    August 15, 2019 at 12:39 pm in reply to: Add Breadcrumbs ONLY in search results page #492998
    spiezz
    Participant

    Hi Brad,

    I added code and altered to your specs- going into genesis settings and turning on all breadcrumbs and it works great.

    Word for posterity- I had made .breadcrumbs{display:none;} in my css and had to change to {display:block;} for this solution to work correctly.

    Thanks so much!

    K

    August 14, 2019 at 10:03 am in reply to: Add Breadcrumbs ONLY in search results page #492978
    spiezz
    Participant

    Brad,

    Thank you this is exactly what I need. I don't see this code in the functions file - where should I look for it?

    Thanks SO much
    Karen

    July 10, 2019 at 12:28 pm in reply to: No Field input on mobile #492268
    spiezz
    Participant

    UPDATE FOR POSTERITY:
    Did some troubleshooting and no fields were writeable in safari.

    Looks like the culprit was Authority Pro. FYI!

    July 10, 2019 at 9:45 am in reply to: Permalink issue #492263
    spiezz
    Participant

    For posterity, I connected w my hosting company to fix this. Maybe a host cache issue? Working now.

    July 8, 2019 at 6:10 pm in reply to: Permalink issue #492202
    spiezz
    Participant

    Buddypress is not working AT ALL with Authority Pro. I have disabled all plugins and links work. When I activate Buddypress, it's a no-go.

    I see "Genesis Connect" plugin for Woocommerce, but nothing for Buddypress. Ideas??

    Thank you in advance!!!

    July 8, 2019 at 5:55 pm in reply to: Permalink issue #492200
    spiezz
    Participant

    Rolled back but still not able to use permalinks. Buttons are all not working.

    Why????

    K

    July 8, 2019 at 10:04 am in reply to: Permalink issue #492189
    spiezz
    Participant

    (by moderately works I mean that the buttons that had a link to that page now work, but top menu item doesn't)

    I'm changing page name back to "registration" page- and resetting in buddypress because I'm no longer seeing registration form either.

    thanks for taking a look
    K

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

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