• 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

David Decker

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 - 61 through 80 (of 95 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • January 14, 2013 at 6:07 am in reply to: Forum redirects to wrong URL after posting reply #11790
    David Decker
    Member

    Same with me, every time I post replies or such: the reply gets posted but I land on a 404 page or on a different forum index or such... it differs from time to time.

    Just to report. Yes, it's very annoying. However, I know you the StudioPress team is on it -- THANK YOU!


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 14, 2013 at 6:05 am in reply to: URGENT – Fatal Error With News Thme #11789
    David Decker
    Member

    @ponics:
    Did you have one of the following plugins active in your install?
    - Sidebar Manager Light
    - Widget Manager Light
    - Widgetize Pages Light

    These plugins were manipulating the core (!) function "is_active_sidebar".

    If that's the case with your install then this is the cause of your issues. You then should go to the plugin pages on WordPress.org to see their update/install instructions (important!).


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 14, 2013 at 5:16 am in reply to: Removing Header title and tagline from specific pages #11787
    David Decker
    Member

    ...and the Body Class you could get easily with browser inspect tools like "Firebug" for Chrome & Firefox, just look for the classes applied to the tag.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 14, 2013 at 5:14 am in reply to: Removing Header title and tagline from specific pages #11786
    David Decker
    Member

    You could easily do that via CSS rules, applied to your child theme's style.css file.

    Genesis & WordPress apply lots of Body Classes to every page, post, category and so on. You could easily use them for specific styling!

    For your example category you mentioned it would be this:
    .category-humancondition #title-area { display: none; }

    For a special page this would be something like that:
    .page-id-IDnumber #title-area { display: none; }
    --> where "IDnumber" is the actual page ID, for example "21" -- .page-id-21


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 14, 2013 at 5:07 am in reply to: Genesis Slider #11785
    David Decker
    Member

    Just go in WP-Admin to "Edit Pages", open the page in question and have look in your browser's URL bar. You should see something like this:

    yourdomain.com/wp-admin/post.php?post=71&action=edit

    ---> where this number ("71" in this case) is your page ID you need! Just do it for every page you need 🙂


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 13, 2013 at 5:09 pm in reply to: URGENT – Fatal Error With News Thme #11684
    David Decker
    Member

    @GaryJ
    Thanks for pointing out!


    @ponics

    I am the author of the "Genesis Widgetized Footer" plugin. I just wanted to reproduce your error(s) but was not able to do so, also not with WP_DEBUG on.

    Since the function in the error message regarding my plugin is a native WP function I currently couldn't do much to help you as I am maybe not knowing all specifics of your install. Since the same function is in the message with Genesis itself I assume it must be another issue.

    Also if it may sound crazy to you, maybe re-uploading a fresh WordPress package could help. Do it via FTP, existing files could be overriden then. Also, deleting the plugin folders of wp-filebase and that dropbox plugin could help. After deleting try to access the Plugins backend page at yourdomain.com/wp-admin/plugins.php

    I hope this helps a tiny bit for now.
    -Dave.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 12:26 pm in reply to: Sidebar missing on custom archive page #11288
    David Decker
    Member

    I just did a code comparison between 1.8.2 and 1.9.x and could not find any change that would have lead to your issue with the custom sidebar. To be honest, there aren't any changes at all regarding the sidebars between those versions 🙂

    I assume there must be any other modification maybe that was blocking it. Anyways if it's working now, that's what matters 🙂 And from my point of view we've found Genesis/WP compliant way of doing it so it should be future-proof.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 12:19 pm in reply to: Sidebar missing on custom archive page #11286
    David Decker
    Member

    Mmh, really don't know why it worked before v1.9.x --- the code we both used now should also work before v1.9. I have to do some deeper look into code changes between 1.8.x and 1.9.x before I might understand why...

    For the text widget on your test site: I see it but it is definitely wrapped into THAT sidebar, so it must be an active widget in this sidebar otherwise I cannot explain it. On my test site I don't have it there.

    Are you sure it isn't setup in this widget area?

    So maybe this could also be some strange WP behavior where widget settings get mixed up internally... especially when changing themes or plugins (which register sidebars/widgets).

    You could test with another sidebar id in the above code if it's still there.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 11:58 am in reply to: Sidebar missing on custom archive page #11276
    David Decker
    Member

    Ah, I've got it to work now and finally tested it before posting here... 🙂

    Forked to this: https://gist.github.com/4512672

    ---> removed dynamic_sidebar... at the bottom --- changed/added stuff on top of file. For me this worked, I hope for you too 🙂


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 11:12 am in reply to: Sidebar missing on custom archive page #11260
    David Decker
    Member

    Great 🙂

    I understand what you mean! Please try to add this line of code before the first code line where it says "get_header":
    remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );

    Does that work?


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:58 am in reply to: Customize Genesis Search Resutls #11241
    David Decker
    Member

    Ok, I have commented out the add_action within if statement --- just uncomment for real usage of course 🙂


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:57 am in reply to: Customize Genesis Search Resutls #11240
    David Decker
    Member

    Go and add some code to your child theme's functions.php file, a functionality plugin or even via the "Genesis Simple Hooks" plugin.
    Tools you'll probably need: Genesis Hook Reference: http://my.studiopress.com/docs/hook-reference/ and Genesis Visual Hook Guide: http://genesistutorials.com/visual-hook-guide

    With that in mind you could do something like that:

    add_action( 'genesis_meta', 'your_custom_wrapper_function_name' );
    function your_custom_wrapper_function_name() {
    if ( is_search() ) {
    // add_action( 'genesis_before_content', 'custom_function_for_search_display' );
    } // end if
    } // end function

    Choose the best hook for your site within the if statement.

    It's untested but I use similar stuff on a lot of projects. I hope this helps you go your way 🙂


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:51 am in reply to: Editing the 404 page on Genesis themes #11237
    David Decker
    Member

    Per default you have no chance of editing --- but you always could do add a custom "404.php" file to your child theme's root folder. You could copy the file from the "/genesis/" folder and customize.

    But wait, there's a better way to do that: I've made a plugin just for this where you could place in Widgets of your liking for the 404 error page. Just install this plugin: http://wordpress.org/extend/plugins/genesis-widgetized-notfound/ --- activate it and place in some widgets and you're done.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:49 am in reply to: Sidebar missing on custom archive page #11234
    David Decker
    Member

    In the Gist code snippet I can see no reference of a sidebar for displaying. There's currently no "get_sidebar( 'id-of-sidebar' );" function or for just a widget area, no "dynamic_sidebar( 'id-of-sidebar' );" function.

    You need to add on or the other to your template to get an registered sidebar or widget area displayed.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:37 am in reply to: favicon plugin #11227
    David Decker
    Member

    There's the community plugin "Gensesis Favicon Uploader" http://wordpress.org/extend/plugins/genesis-favicon-uploader/ --- works for the frontend. I do not know of another lightweight plugin for frontend & backend at the moment.

    But you still can manage all locations via code snippets into your child theme's functions.php file or a functionality plugin:

    Copy code from here: https://gist.github.com/4511610

    What this does:
    The first block works for the frontend only, and only for Genesis: place a favicon image named "favicon.ico" in your child theme's "/images/" folder.

    The second block works for WordPress in general, for backend and WP login page: place a favicon image named "favicon_backend.ico" in your child theme's "/images/" folder.

    Hope that helps 🙂


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:19 am in reply to: How to Maintain Responsive Design? #11215
    David Decker
    Member

    In the end you decide which breakpoints you implement for several viewports or devices. However, it's recommended to implement the most common widths of popular devices, see the below tool for a great example of that:

    There are some helpful tools out there, one is from StudioPress itself, a responsive tester: http://www.studiopress.com/responsive/

    Another one: http://bueltge.de/test/media-query-tester.php

    Also, when using the latest Firefox browser there are some web deloper tools integrated, such as an viewport testing tool, located in the menu under Extras > Web Developer Tools.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:13 am in reply to: Lost translation on search-button #11211
    David Decker
    Member

    @rammen:

    The Translation plugin from Remkus is powered by the community, therefore not an official release. Remkus collects updated translation files for Genesis 1.9.x at the moment. So shortly there should be an update out.

    Please do consider contributing missing strings for your language: see @Remkus reply above for more info or have look at this post: http://www.studiopress.community/topic/genesis-translations/

    THANKS!


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 9:10 am in reply to: Lost translation on search-button #11210
    David Decker
    Member

    @GaryJ:

    That's not true, maybe in the .pot file you has, but it's in the actual PHP files!

    For 1.9.x:
    #@ genesis
    #: lib/structure/search.php:23
    msgid "Search this website"

    I rely not on .pot files but rather on scanning the actual framework files with each version -- as these matter in the end what gets displayed and what not.


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 4:08 am in reply to: SurStudio Ajax Translator Revolution WP Plugins #11172
    David Decker
    Member

    I don't own these plugins and therefore have no experience with them on Genesis powered sites. From the demo and description I would not recommend them for the multilingual setup because all works with Javascript on the frontend and you don't seem to have URLs for different languages. It also seems to work more automatically as it pulls translations from external services like "Google Translate" or Bing. In the end this could be useful for single sites to offer a translation alternative but for REAL multilingual sites I would only use a Multisite setup which is the currently best option overall. WPML might be a great option for small sites and less languages, mostly 2-3, but it adds overhead and seems to lock user in regarding your site experience in the long end.

    Also have look at this thread here for more discussion on this topic: http://www.studiopress.community/topic/multi-lingual-translation-plugins/


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

    January 11, 2013 at 4:02 am in reply to: Multi Lingual Translation Plugins #11170
    David Decker
    Member

    Sorry for the late reply!

    Yes the first mentioned plugin by you works like an "more comfort for the admin/ editor & user" plugin. It doesn't add overhead that locks you in later but rather adds some additions to the admin workflow. And for the frontend it mostly adds the language switcher - similar to that from WPML.

    A similar plugin compared to "Multilingual Press" is this one, "Multisite Language Switcher" which is a little more basic/simple but has a solid switch as well as some other basic settings on a per site basis: http://wordpress.org/extend/plugins/multisite-language-switcher/

    WPML itself is a great concept and it works -- but it adds lots of overhead and needs lots of additional plugins if you're working with WooCommerce, EDD, BuddyPress and so. The internal workflow can also be complicated for editors because of the many additions on the edit screens. Also for more than 2 languages and lots of pages and/or posts it may lead out of order sometimes...

    At first sight, Multisite may look like it's "too much" for that task but if you already worked with multilingual sites then it's the currently best option overall, especially when you just keep all with WordPress default stuff 🙂

     


    Twitter @deckerweb // Google+ // My Genesis & WordPress Plugins // German Translations for Genesis

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 95 total)
← 1 2 3 4 5 →
« 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