Plugin Directory

Changeset 1369560


Ignore:
Timestamp:
03/11/2016 11:19:05 PM (10 years ago)
Author:
christophherr
Message:

Updates readme.txt with new features and instructions to remove content-sidebar layout

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 ===
    22
    33Contributors: christophherr
     
    55Tags: woothemes sensei, woothemes, genesis, genesis connect, studiopress
    66Requires at least: 4.1
    7 Tested up to: 4.4
    8 Stable tag: 1.0.3
     7Tested up to: 4.5
     8Stable tag: 1.1.0
    99License: GPL-2.0+
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    1414== Description ==
    1515
    16 This plugin uses code taken from https://support.woothemes.com/hc/en-us/articles/204428855-StudioPress-Genesis.
     16The base for this plugin is code taken from <a href="https://support.woothemes.com/hc/en-us/articles/204428855-StudioPress-Genesis>Woothemes support</a>.
    1717
    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).
     18You 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.
    2019
    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...
     20In 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...
    2321
    24 This plugin will only work (i.e. activate) with the Genesis Framework and its child themes.
     22This plugin will only work (i.e. activate) if the Genesis Framework and its child themes and Woothemes Sensei are activated.
     23
     24Version 1.1.0 forces a content-sidebar layout on course, lesson and question posts to avoid the sidebar showing underneath the main content.
     25
     26To change this new feature, you have to use a remove_action on the code the plugin is adding.
     27Add <code>remove_action( 'genesis_meta', 'gcfws_force_content_sidebar_layout' );</code> to your functions.php.
     28If 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. 
    2529
    2630== Installation ==
     
    3135Alternatively, you can
    3236
    33 1. Click on 'Add new" in the 'Plugins' menu
     371. Click on 'Add new' in the 'Plugins' menu
    34382. Type (or copy and paste) the name of this plugin into the search box
    35393. Click on 'Install Now'
     
    4347= Does this work with any Genesis child theme? =
    4448
    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.
     49Yes and no. Technically, it does.
     50However, depending on other factors such as the individual theme's styling and layout, the output may be unexpected, and require some tweaking.
     51Case 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.
     52That´s why a content-sidebar layout is forced on single course, lesson and questions posts since version 1.1.0.
     53To remove this behaviour, add <code>remove_action( 'genesis_meta', 'gcfws_force_content_sidebar_layout' );</code> to your functions.php.
    4654
    4755= Are there any settings? =
     
    5159= How can I change how the plugin works? =
    5260
    53 There are no settings and no settings screen. You would have to change the code directly in the source 
     61There are no settings and no settings screen. You would have to change the code directly in the source.
    5462
    5563== Changelog ==
    5664
     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
    5775= 1.0.3 =
    5876
    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#post82210
     77* Corrected oversight in the original code. First closing tag should be `</main>` instead of `</div>`
     78see: <a href="http://cobaltapps.com/forum/forum/main-category/main-forum/81542-woo-sensei?p=82210#post82210">Cobalt Apps forum</a>
    6179
    6280= 1.0.2 =
     
    7492== Upgrade Notice ==
    7593
     94= 1.1.0 =
     95This version adds a version check for Woothemes Sensei to use the appropriate array when removing the standard Sensei wrappers.
     96Version 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.
     97Please refer to the readme.txt if you want to remove this feature.
     98Woothemes Sensei has to be already active before the plugin will activate.
     99
    76100= 1.0.3 =
    77101
Note: See TracChangeset for help on using the changeset viewer.