Changeset 1369560
- Timestamp:
- 03/11/2016 11:19:05 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genesis-connect-for-woothemes-sensei/trunk/readme.txt
r1294614 r1369560 1 === Genesis Connect for Woothemes Sensei ===1 === Genesis Connect for Woothemes Sensei === 2 2 3 3 Contributors: christophherr … … 5 5 Tags: woothemes sensei, woothemes, genesis, genesis connect, studiopress 6 6 Requires at least: 4.1 7 Tested up to: 4. 48 Stable tag: 1. 0.37 Tested up to: 4.5 8 Stable tag: 1.1.0 9 9 License: GPL-2.0+ 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 14 14 == Description == 15 15 16 Th is plugin uses code taken from https://support.woothemes.com/hc/en-us/articles/204428855-StudioPress-Genesis.16 The base for this plugin is code taken from <a href="https://support.woothemes.com/hc/en-us/articles/204428855-StudioPress-Genesis>Woothemes support</a>. 17 17 18 You will need the Woothemes Sensei plugin (http://www.woothemes.com/products/sensei/) 19 and the Genesis Framework and/or one of its child themes (http://www.studiopress.com). 18 You will need the <a href="http://www.woothemes.com/products/sensei/">Woothemes Sensei</a> plugin and the <a href="http://www.studiopress.com>Genesis Framework</a> from Studiopress and/or one of its child themes. 20 19 21 In other words, if you are not trying to integrate the Woothemes Sensei plugin with the Genesis Framework 22 and/or one of its child themes, this plugin is pretty much useless for you... 20 In other words, if you are not trying to integrate the Woothemes Sensei plugin with the Genesis Framework and/or one of its child themes, this plugin is pretty much useless for you... 23 21 24 This plugin will only work (i.e. activate) with the Genesis Framework and its child themes. 22 This plugin will only work (i.e. activate) if the Genesis Framework and its child themes and Woothemes Sensei are activated. 23 24 Version 1.1.0 forces a content-sidebar layout on course, lesson and question posts to avoid the sidebar showing underneath the main content. 25 26 To change this new feature, you have to use a remove_action on the code the plugin is adding. 27 Add <code>remove_action( 'genesis_meta', 'gcfws_force_content_sidebar_layout' );</code> to your functions.php. 28 If you want to use a different layout, the <href="https://my.studiopress.com/snippets/admin-management/">Studiopress Snippets</a> should help to get you started. 25 29 26 30 == Installation == … … 31 35 Alternatively, you can 32 36 33 1. Click on 'Add new "in the 'Plugins' menu37 1. Click on 'Add new' in the 'Plugins' menu 34 38 2. Type (or copy and paste) the name of this plugin into the search box 35 39 3. Click on 'Install Now' … … 43 47 = Does this work with any Genesis child theme? = 44 48 45 Yes and no. Technically, it does, even older (XHTML) themes. However, depending on other factors such as the individual theme's styling and layout, the output may be unexpected, and require some tweaking. 49 Yes and no. Technically, it does. 50 However, depending on other factors such as the individual theme's styling and layout, the output may be unexpected, and require some tweaking. 51 Case in point, if the full-width layout is selected in the Genesis settings, lessons, course and question posts are showing a sidebar underneath the main content. 52 That´s why a content-sidebar layout is forced on single course, lesson and questions posts since version 1.1.0. 53 To remove this behaviour, add <code>remove_action( 'genesis_meta', 'gcfws_force_content_sidebar_layout' );</code> to your functions.php. 46 54 47 55 = Are there any settings? = … … 51 59 = How can I change how the plugin works? = 52 60 53 There are no settings and no settings screen. You would have to change the code directly in the source 61 There are no settings and no settings screen. You would have to change the code directly in the source. 54 62 55 63 == Changelog == 56 64 65 = 1.1.0 = 66 67 * Adds check to only activate if Woothemes Sensei is already active. 68 * Forces a content-sidebar layout on single course, lesson and question posts. 69 To change this behaviour add <code>remove_action( 'genesis_meta', 'gcfws_force_content_sidebar_layout' );</code> to your functions.php. 70 * After Woothemes Sensei changed their code base dramatically in the 1.9 update, 71 the previous method of removing the sensei wrappers started to throw error messages. 72 This update introduces a version check to use the appropriate array for removing the sensei wrappers. 73 74 57 75 = 1.0.3 = 58 76 59 * Corrected oversight in original code. First closing tag should be </main> instead of </div>60 see: http://cobaltapps.com/forum/forum/main-category/main-forum/81542-woo-sensei?p=82210#post8221077 * Corrected oversight in the original code. First closing tag should be `</main>` instead of `</div>` 78 see: <a href="http://cobaltapps.com/forum/forum/main-category/main-forum/81542-woo-sensei?p=82210#post82210">Cobalt Apps forum</a> 61 79 62 80 = 1.0.2 = … … 74 92 == Upgrade Notice == 75 93 94 = 1.1.0 = 95 This version adds a version check for Woothemes Sensei to use the appropriate array when removing the standard Sensei wrappers. 96 Version 1.1.0 also forces a content-sidebar layout on single course, lesston and question posts to avoid the sidebar showing underneath the main content. 97 Please refer to the readme.txt if you want to remove this feature. 98 Woothemes Sensei has to be already active before the plugin will activate. 99 76 100 = 1.0.3 = 77 101
Note: See TracChangeset
for help on using the changeset viewer.