• 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

okieman

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 13 posts - 21 through 33 (of 33 total)
← 1 2
  • Author
    Posts
  • February 6, 2016 at 4:45 pm in reply to: Loading style sheet from child theme folder w/php #178488
    okieman
    Member

    A lot of information at that link. I'll tinker and report back!

    January 9, 2016 at 10:01 pm in reply to: Reverted to Genesis 2.2.5 after error message? #176099
    okieman
    Member
    This reply has been marked as private.
    January 9, 2016 at 5:51 pm in reply to: Reverted to Genesis 2.2.5 after error message? #176089
    okieman
    Member

    flyingpylon:

    I received several suggestions (below). I don't know that I should say which of these worked, since each install is unique. But it was an easy fix ...

    1- Look at the functions.php file for your theme. Have you added any custom code? Could it be contributing to this problem?

    2- At the following page, do you see a prompt to upgrade your WordPress database?
    your-domain-whatever.com/wp-admin/upgrade.php
    If you see an upgrade prompt, make a full backup of your site. Then click the button to upgrade your WP database.
    Then upgrade Genesis to 2.2.6

    2- Do you have a caching plugin enabled? When you deactivate plugins and test, do you clear the cache and deactivated the cache plugin? If not, first clear the cache of cache plugin, then deactivate the plugin. Then perform the
    Genesis upgrade again to see if the error persists. If so, try deactivating other plugins again while the cache plugin remains disabled.

    January 7, 2016 at 7:34 pm in reply to: Reverted to Genesis 2.2.5 after error message? #175903
    okieman
    Member

    OK, will do!

    July 12, 2015 at 3:57 pm in reply to: Audio shortcode pulling old content? #159205
    okieman
    Member

    But I would like to know if there's a way to make my HTML text editor (Notepad++) recognize errors in WordPress-specific text like shortcodes? It already does that with regular HTML.

    July 12, 2015 at 3:50 pm in reply to: Audio shortcode pulling old content? #159204
    okieman
    Member

    User error. The process of carefully composing the post made me see that mp3 was missing from the meditation shortcode. WordPress was evidently pulling up the last good version of that. Now I know the likely diagnosis if a link on a WordPress page starts pulling old content. Thanks anyway.

    May 30, 2015 at 12:18 pm in reply to: Insert text below Search form? #154211
    okieman
    Member

    OK I just decided to use a plugin. Thanks anyway for offering to help!

    May 30, 2015 at 12:00 pm in reply to: Insert text below Search form? #154209
    okieman
    Member

    Well I searched the entire Outreach Pro child theme folder for the text string "search" and no results except inside style.css. I'm stumped. Seems like such a simple idea to just insert a back to top link. PS Searched for any files with string "search" in their name. Zip.

    May 29, 2015 at 10:28 am in reply to: Insert text below Search form? #154130
    okieman
    Member

    The code is what's in the browser if I do Ctrl-U. I've tried Notepad++ searches looking for various unique text strings* in any php or js file inside the WordPress directory.
    ( *footer-widgets-4, widget-area, widget-wrap, "Search this site", etc )

    When I get in front of the PC on Saturday I'll try again to find something in the Outreach Pro files. But I'm surprised nothing has come up before, since that's a sub-directory of the main directory I searched. And I had the box ticked to drill down. Thanks, Savvyjackie.

    May 26, 2015 at 6:39 pm in reply to: Right location for file to insert CSS? #153737
    okieman
    Member

    Two bits of news for anyone who may wander down this road:

    1- Someone has proposed a simple CSS solution that I'm now using. By adding/removing the page-id selector, and by taking advantage of the fact that CSS is processed in order, with the most recent code having priority.
    2- It's been suggested I can use a conditional tag inside functions.php via a WordPress hook. So that's my side project while the site functions happily via the CSS mod, proposed by "CrouchingBruin" ...

    .nav-primary #menu-item-572,
    .nav-primary #menu-item-658,
    .nav-primary #menu-item-747 {
       display: none;
    }
    .page-id-2 .nav-primary #menu-item-572,
    .page-id-2 .nav-primary #menu-item-658,
    .page-id-2 .nav-primary #menu-item-747 {
       display: inline-block;
    }
    .page-id-2 .nav-primary #menu-item-834 {
       display: none;
    }
    May 24, 2015 at 8:17 pm in reply to: Right location for file to insert CSS? #153516
    okieman
    Member

    From the codex:

    You can only use conditional query tags after the posts_selection action hook in WordPress (the wp action hook is the first one through which you can use these conditionals). For themes, this means the conditional tag will never work properly if you are using it in the body of functions.php, i.e. outside of a function.

    Not a happy camper.

    May 24, 2015 at 7:48 pm in reply to: Right location for file to insert CSS? #153514
    okieman
    Member

    Partial progress. The css file being loaded had to go in the Genesis directory instead of the Outreach Pro directory where everything else is going on.

    The last remaining problem is getting this PHP "if" statement to tell the difference between the default first page in the site and everything else. I tried it with both || and && between the two names for such a page.

    if ( ! is_front_page () && is_home() )

    Using these two ampersands nothing at all happens on either the splash page. Using two pipes does load the style but the not (!) is somehow non-functional. The css loads everywhere including the splash where it's not needed.

    May 9, 2015 at 9:02 pm in reply to: Centering featured pages in Outreach Pro? #151376
    okieman
    Member

    Wow; that's a corner of CSS I hadn't yet delved into. So I thank you for helping solve my immediate problem, but also for providing a new tool to work with! Or, toy to play with, depending on how Web-nerdy I'm feeling.

  • Author
    Posts
Viewing 13 posts - 21 through 33 (of 33 total)
← 1 2
« Previous Page

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