Title: cinhu's Replies | WordPress.org

---

# cinhu

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Layout Customizer] More then 4 Layout](https://wordpress.org/support/topic/more-then-4-layout/)
 *  [cinhu](https://wordpress.org/support/users/cinhu/)
 * (@cinhu)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/more-then-4-layout/#post-5243420)
 * 1.**Open the file** site_root_address\wp-content\plugins\site-layout-customizer\
   sitelayoutcustomizer.php
 * 2.**Search for Line:**
    `$tabs = array( '1' => 'Layout 1', '2' => 'Layout 2','
   3' => 'Layout 3','4' => 'Layout 4','0' => 'Main Options');`
 * **CHANGE for the new line:**
    `$tabs = array( '1' => 'Layout 1', '2' => 'Layout
   2','3' => 'Layout 3','4' => 'Layout 4','5' => 'Layout 5','0' => 'Main Options');`
 * **This line is responsible to add more tabs/layouts, just add ‘5’ => ‘Layout 
   5’, as above, to add new tab.**
 * 3.**Search for the line:**
    `register_setting( 'slc_options_4', 'slc_options_4','
   slc_options_validate' );`
 * **Now INSERT the new line:**
 * `register_setting( 'slc_options_5', 'slc_options_5', 'slc_options_validate' );`
 * 4.**Search for the line:**
    `if ($tab <= 4 or $gvext == 1){`
 * **CHANGE for the new line:**
    `if ($tab <= 5 or $gvext == 1){`
 * **Your 5th layout is ready to use, if you need more tabs, repeat the process.
   Thanks for the developer of this plugin, it’s amazing!!**

Viewing 1 replies (of 1 total)