Additions for the Prose Child Theme for Genesis Framework: Widgetized Homepage, layouts, menu positions, translation loading, plus various helpers.
FINALLY: Add a Widgetized Homepage to Your Prose Child Theme
Finally have a homepage template for Prose that’s widgetized! Plus, it works with Prose 1.5+ auto update system, that means, you don’t lose your home template/ widget stuff when performing these sweet auto updates!
In general, a great helper tool for the Prose Child Themes for Genesis!
In other words, THE add-on plugin you’ve waited for if you’re a die hard Prose fan π
Please note: This plugin requires the Genesis Theme Framework AND the “Prose” Child Theme – both are premium products by StudioPress/ Copyblogger Media LLC via studiopress.com.
original video linkby plugin developer David Decker
WPLANG
constant).Please note: This plugin requires the Genesis Theme Framework AND the “Prose” Child Theme – both are premium products by StudioPress/ Copyblogger Media LLC via studiopress.com.
genesis-prose-extras.pot
) for translators is also always included πA plugin from deckerweb.de and GenesisThemes
Enjoy using Genesis Prose Extras? Please consider making a small donation to support the project’s continued development.
/wp-content/languages/genesis-prose-extras/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like genesis-prose-extras-en_US.mo/.po
to achieve that.Easy plugin translation platform with GlotPress tool:Translate “Genesis Prose Extras”…
Note: All my plugins are internationalized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating I recommend the awesome “Codestyling Localization” plugin and for validating the “Poedit Editor”, which works fine on Windows, Mac and Linux.
“Prose” is an AWESOME child theme for Genesis with great design options. Period. With version 1.5, released in spring of 2012 it became even better, with adding the auto update feature, for example. Being a cool feature, it has also the effect of removing everything that’s within the Prose child theme folder when performing the update. So you would lost a homepage template file (home.php) if you customized & added one. To resolve this issue and to have “some workaround” plus adding some tiny additions to Prose I just made this plugin. It was born out of experiences of some of my client sites using the Prose child theme. I use Prose also on a Multisite install for different sub sites and needed special functions files features myself, so I thought this might help other users as well ;-).
WordPress trainer Bob Dunn of BobWP for his post plus video tutorial for setting up a widgetized home page and slider for Prose with this plugin! — Whoa, this is awesome stuff, THANKS, Bob!
British Genesis Community contributor Keith Davis of WM Web Design for his “Genesis people” feature about me, also mentioning this plugin — THANKS, Keith!
Australian Genesis Community contributor Brad Dalton of WPSites.net for his post about setting up a slider for Prose with my plugin — THANKS, Brad!
NOTE: Only works with “Genesis Framework” as the parent theme plus “Prose” as the Genesis child theme. (Both are paid premium products by StudioPress/ Copyblogger Media LLC, available via studiopress.com.)
genesis-prose-extras
folder to the /wp-content/plugins/
directory — or just upload the ZIP package via ‘Plugins > Add New > Upload’ in your WP Admin
original video linkby plugin developer David Decker
Post plus video tutorial for setting up a widgetized home page and slider for Prose with this plugin
by WordPress trainer Bob Dunn of BobWP
Note: The “Genesis Framework” plus the “Prose” child theme are required for this plugin in order to work. If you don’t own a copy of both yet, these premium parent & child theme combo has to be bought. More info about that you’ll find here: http://ddwb.me/getgenesis
Own translation/wording: For custom and update-secure language files please upload them to /wp-content/languages/genesis-prose-extras/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like genesis-prose-extras-en_US.mo/.po
to achieve that (for creating one see the tools on “Other Notes”).
Genesis Prose Extras: Overview of complete settings page. (Click here for larger version of screenshot)
Genesis Prose Extras: Settings help tab - top right corner. (Click here for larger version of screenshot)
Genesis Prose Extras: The 3 alternate layouts on Genesis Theme settings page :). (Click here for larger version of screenshot)
Genesis Prose Extras: The 3 alternate layouts on inpost edit screen. Click here for larger version of screenshot)
Genesis Prose Extras: Inpost Custom CSS screen - works for single Posts and Pages (post type support possible!). Click here for larger version of screenshot)
Genesis Prose Extras: Additional widget areas - fully optional. Click here for larger version of screenshot)
Genesis Prose Extras: Extra warning in Admin Theme Editor to not edit/ touch the original Prose Child Theme files! Click here for larger version of screenshot)
Genesis Prose Extras: Widgetized home page layout - possible with this plugin :-). See the Widget Areas, as well as the alternate layout option ("Sidebars below Content"). Cool, heh?! Click here for larger version of screenshot)
Genesis Prose Extras: Alternative menu positions - there are even more positions possible! Also, notice the enabled menu desciptions?! Awesome details, yeah :) Click here for larger version of screenshot)
Genesis Prose Extras: Sample post with inpost Custom CSS activated - higher Header section, custom background color (only for that post!). Also, notice the alternative layout option ("Sidebars below Content"). Click here for larger version of screenshot)
Genesis Prose Extras: Alternate layout option "Content / Sidebar-Alt." on frontend - fully responsive of course! Click here for larger version of screenshot)
Genesis Prose Extras: Alternate layout option "Sidebar-Alt. / Content" on frontend - fully responsive of course! Click here for larger version of screenshot)
Maybe the default ones are enough, maybe not. These 3 additional layout options are more like variations of existing layouts. So, in the end you have even more flexibility with no overhead! This could be great for content oriented blogs, marketeers websites and so much more…
Yes, they are! All is working like it should with minimal additions on CSS style rules (only what’s really needed).
One should be enough for a lot of use cases. However, having 3 widget areas enables you to use one top column and 2 columns below which makes up for a more suiteable homepage layout. How cool’s that? π
Yes, of course they are! If your child theme is already responsive and you use the top area plus the 2 columnized areas they just adapt to your viewport nicely. Any additional CSS rules/ media queries you could add via your “Custom Code” section under Genesis menu.
Note, if your version of Prose child theme isn’t responsive yet these CSS media queries won’t have any effect and also do no harm :-).
Of course, it’s possible! Just add the following constant to your child theme’s functions.php
file or to a functionality plugin:
/** Genesis Prose Extras: Remove Widgets Shortcode Support */ define( 'GPEX_NO_WIDGETS_SHORTCODE', true );
Some webmasters could need this for security reasons regarding their stuff members or for whatever other reasons… :).
That’s really easy, just add “post type support” via a plugin, code snippet plugin or your child theme’s functions.php
:
/** Genesis Prose Extras: Add post type support for (single) Custom CSS: */ add_post_type_support( 'download', 'gpex-inpost-css' ); add_post_type_support( 'product', 'gpex-inpost-css' );
–> This example code adds the meta box for post type download
(like in Easy Digital Downloads, EDD) and for post type product
(like in WooCommerce and/ or Jigoshop).
Yes, that’s possible! Just use this example code below and change the capability to your use case:
add_filter( 'gpex_filter_inpost_custom_css_cap', 'gpex_inpost_custom_css_cap' ) /** * Genesis Prose Extras: Custom Capability for Inpost Custom CSS */ function gpex_inpost_custom_css_cap() { return 'editor'; } // function
Yes, of course! With one line of code, like this:
/** Genesis Prose Extras - disable plugin feature: Better Custom PHP file */ add_filter( 'gpex_filter_better_custom_php', '__return_false' );
Yes, of course! With one line of code, like this:
/** Genesis Prose Extras: Remove Export/ Import Info meta box */ define( 'GPEX_NO_EXPORT_IMPORT_INFO', TRUE );
I’ve just included some filters for that – if ever needed (i.e. for clients, branding purposes etc.), you can use these filters:
gpex_filter_home_top_widget_title – default value: “Prose Home Top”
gwat_filter_home_top_widget_description – default value: “For a widgetized homepage in Prose.”
The same principles apply for ‘Home Left’ and ‘Home Right’ etc..
Here’s an example code for changing one of these filters:
add_filter( 'gpex_filter_home_top_widget_title', 'custom_home_top_widget_title' ); /** * Genesis Prose Extras: Custom Prose Home Top Widget Title */ function custom_home_top_widget_title() { return __( 'Custom Prose Home', 'your-child-theme-textdomain' ); }
Final note: I DON’T recommend to add customization code snippets to your child theme’s functions.php
file! Please use a functionality plugin or an MU-plugin instead! This way you are then more independent from child theme changes etc. If you don’t know how to create such a plugin yourself just use one of my recommended ‘Code Snippets’ plugins. Read & bookmark these Sites:
functions.php
file: Resource One – Resource Two(both by Thomas Griffin Media)All the custom & branding stuff code above can also be found as a Gist on GitHub: https://gist.github.com/deckerweb/5905929 (you can also add your questions/ feedback there π