Title: simpleux's Replies | WordPress.org

---

# simpleux

  [  ](https://wordpress.org/support/users/simpleux/)

 *   [Profile](https://wordpress.org/support/users/simpleux/)
 *   [Topics Started](https://wordpress.org/support/users/simpleux/topics/)
 *   [Replies Created](https://wordpress.org/support/users/simpleux/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/simpleux/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/simpleux/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/simpleux/engagements/)
 *   [Favorites](https://wordpress.org/support/users/simpleux/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Linia Magazine] Sidebar](https://wordpress.org/support/topic/sidebar-87/)
 *  Theme Author [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/sidebar-87/#post-4797433)
 * Hi
 * This theme is hard coded to be two columns, however you can easily make it single
   column by adding following lines in your functions.php
 * You can do it either by using your ftp programme or if your installation permits
   you can do it through Admin -> Appearance -> Editor, select functions.php from
   right hand sidebar, paste two following code and hit update button, that’s it!
 *     ```
       function linia_magazine_quickfix_blog_fullwidth($classes) {
           $classes[] = 'page-template-page-templatesfull-width-php';
           return $classes;
       }
   
       add_filter('body_class', 'linia_magazine_quickfix_blog_fullwidth');
   
       function linia_magazine_disable_sidebar($sidebars_widgets) {
           if (!is_admin() && is_array($sidebars_widgets) && array_key_exists('sidebar-1', $sidebars_widgets))
               $sidebars_widgets['sidebar-1'] = array();
   
           return $sidebars_widgets;
       }
   
       add_filter('sidebars_widgets', 'linia_magazine_disable_sidebar');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Layout Engine] Documentation](https://wordpress.org/support/topic/documentation-6/)
 *  Plugin Author [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/documentation-6/#post-3140879)
 * Hi EkAndreas
 * I have uploaded getting started example in Github to demonstrate how we can use
   all features of Layout Engine. available below
    [https://github.com/simpleux/Layout-Engine-base-theme](https://github.com/simpleux/Layout-Engine-base-theme)
 * I am busy for last few weeks but would try to write “Getting started” style documentation
   as well, but meanwhile I would like to suggest you to use above repository.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BugHerd] BugHerd Sidebar](https://wordpress.org/support/topic/bugherd-sidebar/)
 *  [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/bugherd-sidebar/#post-3003053)
 * Please tweet at [@simple_ux](https://twitter.com/intent/tweet?text=type+your+question+here...&hashtags=bugherd&via=simple_ux)
   or
    upload it into any [image sharing website](http://en.wikipedia.org/wiki/List_of_photo_sharing_websites)
   and share the link here [http://www.imgbox.com/](http://imgbox.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BugHerd] BugHerd Sidebar](https://wordpress.org/support/topic/bugherd-sidebar/)
 *  [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/bugherd-sidebar/#post-3002942)
 * Hi
 * Settings are one time process and you do not need to specify settings every time
   you logged in.
 * Is it possible for you to send us the screenshot of your BugHerd settings page?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BugHerd] [Plugin: BugHerd] You need to globalise $wp_version](https://wordpress.org/support/topic/plugin-bugherd-you-need-to-globalise-wp_version/)
 *  [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-bugherd-you-need-to-globalise-wp_version/#post-2990022)
 * Hi iamfriendly
 * Thanks for reporting it, we have globalized $wp_version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Layout Engine] Layout Engine integration](https://wordpress.org/support/topic/layout-engine-integration/)
 *  Plugin Author [simpleux](https://wordpress.org/support/users/simpleux/)
 * (@simpleux)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/layout-engine-integration/#post-2977134)
 * No, twenty_eleven.php is demonstration to inherit functionality offered by Twenty
   Eleven to compose date, author link etc. The theme you downloaded is not a child
   theme therefore I have to copy the functions into a separate file. It might be
   completely irrelevant to your theme. So you can simply ignore it.
 * The idea of WordPress Layout Engine is simple, convert every block of html through
   dynamic_block(), as demonstrated in header/index/footer.php in [getting started theme](http://simpleux.co.uk/plugins/wordpress/layout-engine/download/le-twentyeleven.zip).
   The dynamic_block will use .row, .span4, .span8, .span12 css classes to create
   a div row and columns in a layout, so your theme must have these classes or you
   can just copy the [grid.css](https://raw.github.com/simpleux/le-twentyeleven/master/grid.css)
   into your theme or import into your style.css or style.less
    The third important
   point during integration is to override any layout define in parent theme as 
   demonstrated in following simple child theme. (have a look on category.php, page.
   php) [http://wordpress.org/extend/themes/download/layout-engine-base.1.1.zip?nostats=1](http://wordpress.org/extend/themes/download/layout-engine-base.1.1.zip?nostats=1)
 * The LessCSS support is to simplify the process of theme’s branding using css.
 * Hopefully it helps.

Viewing 6 replies - 1 through 6 (of 6 total)