Title: Updated to version 1.1.2
Last modified: August 30, 2016

---

# Updated to version 1.1.2

 *  ResolvedTheme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/)
 * Remove: posts formats theme widgets
    Fixed bugs. Added option to disable lightbox
   Changed the structure of templates. Improved integration of WooCommerce and Projects
   by WooThemes. Added a Welcome screen with tips of the first steps of the installation.
   Added translation files for German language which made Stefan Widua (Thanks to
   him!)
 * Successfully tested on WordPress version 4.3.x
 * More features and support 24/7 personally by e-mail with the premium Corpobox
   theme.
 * Thank you!

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

 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637074)
 * Oops 🙁
    Found a bug. Fixed. Wait for updates.
 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637089)
 * Sent to review. Download without waiting for the completion of the review [https://wordpress.org/themes/download/corpobox-lite.1.1.3.zip?nostats=1](https://wordpress.org/themes/download/corpobox-lite.1.1.3.zip?nostats=1)
 *  [LucieWatson](https://wordpress.org/support/users/luciewatson/)
 * (@luciewatson)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637132)
 * None of my posts and pages can be seen after updating this theme. and I don’t
   know how to upload version 1.1.3 either. When will this be fixed?
 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637133)
 * When the theme review of team complete the review and then an update is released.
 * Now can do so:
 * Download the theme archive at the link above. Next:
 * **Installing a Theme via Theme Uploader**
    1. Download and unzip the theme package
    2. Log in to your WordPress Dashboard (i.e.: examplesite.com/wp-admin)
    3. Click on Appearance > Themes
    4. On the Themes page, click the Add New button on the top of the page
    5. Click the Upload Theme button
    6. Choose the [themename].zip from your theme package download.
    7. Press the Install Now button
    8. Back on the Themes page, click on Activate
 * **Installing a Theme via FTP**
    1. Download and unzip the theme package
    2. Locate the [Theme Name] folder inside the the theme package folder
    3. Connect to your server using a FTP client and open the wp-content folder
        Open
       the themes folder
    4. Upload the [Theme Name] folder from the theme package folder and place
        inside
       the wp-content/themes folder on your server
    5. Log in to your WordPress Dashboard
    6. Click on Appearance > Themes
    7. Back on the Themes page, click on Activate
 *  [LucieWatson](https://wordpress.org/support/users/luciewatson/)
 * (@luciewatson)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637136)
 * Installation of the theme via theme Uploader failed, I’ve tried twice now.
 * I don’t have the possibility to check if it workes via FTP as I cannot access
   it while at work.
 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637138)
 * 1. go to Appearance > Editor: Select theme to edit: Corpobox Lite. Click on the
   selected template (right column Templates) – Header (template-parts/header.php)
   
   2. Find the line
 *     ```
       <?php
       /**
        * @package Corpobox
        */
       ?>
       ```
   
 * 3. Delete everything below
 * 4. Insert this:
 *     ```
       <header class="page-header wrap">
   
       <?php
       	/**
       	 * Page
       	 */
       	if ( is_page() ) { ?>
   
       		<?php corpobox_breadcrumb(); ?>
       <?php
       	} ?>
   
       <?php
       	/**
       	 * Post
       	 */
       	if ( is_single() ) { ?>
   
       	<nav id="single-nav">
       		<?php previous_post_link('<div id="single-nav-right">%link</div>', '<i class="fa fa-chevron-left"></i>', false); ?>
       		<?php next_post_link('<div id="single-nav-left">%link</div>', '<i class="fa fa-chevron-right"></i>', false); ?>
       	</nav><!-- /single-nav -->
   
       		<?php corpobox_breadcrumb(); ?>
       <?php
       	} ?>
   
       <?php
       	/**
       	 * Template Projects
       	 */
       if ( class_exists( 'Projects' ) ) {
       	if ( is_projects() && !is_single() ) { ?>
       			<h1 class="page-title"><?php projects_page_title(); ?></h1>
       			<div class="taxonomy-description"><?php do_action( 'projects_archive_description' ); ?></div>
       <?php
       	}
       } ?>
   
       <?php
       	/**
       	 * Template WooCommerce
       	 */
       if ( is_woocommerce_activated() ) {
       	if ( is_woocommerce() && !is_product() ) { ?>
       			<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
       			<ul class="header-cart"><?php corpobox_cart_link(); ?></ul>
       <?php
       	}
       } ?>
   
       <?php
       	/**
       	 * Search
       	 */
       	if ( is_search() ) { ?>
       		<h1 class="page-title">
       		<?php printf( __( 'Search Results for: %s', 'corpobox' ), '<span>' . get_search_query() . '</span>' ); ?>
       		</h1>
       <?php
       	} ?>
   
       <?php
       	/**
       	 * Archives
       	 */
       	if ( is_archive() && !is_post_type_archive( array( 'product', 'project' ) ) || is_home() && !is_front_page() ) { ?>
   
       		<h1 class="page-title">
   
       		<?php
       			if ( is_category() ) :
       				single_cat_title();
   
       			elseif ( is_tag() ) :
       				_e( 'Tag: ', 'corpobox' );
       				single_tag_title();
   
       			elseif ( is_author() ) :
       				the_post();
       				printf( __( 'Author: %s', 'corpobox' ), '<span class="vcard">' . get_the_author() . '</span>' );
       				rewind_posts();
   
       			elseif ( is_day() ) :
       				printf( __( 'Day: %s', 'corpobox' ), '<span>' . get_the_date() . '</span>' );
   
       			elseif ( is_month() ) :
       				printf( __( 'Month: %s', 'corpobox' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
   
       			elseif ( is_year() ) :
       				printf( __( 'Year: %s', 'corpobox' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
   
       			elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
       				_e( 'Asides', 'corpobox' );
   
       			elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
       				_e( 'Images', 'corpobox');
   
       			elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
       				_e( 'Videos', 'corpobox' );
   
       			elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
       				_e( 'Quotes', 'corpobox' );
   
       			elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
       				_e( 'Links', 'corpobox' );
   
       			elseif ( is_home() && !is_front_page() ) :
       				_e( 'Blog', 'corpobox' );
   
       			else :
       				_e( 'Archives', 'corpobox' );
   
       			endif;
       		?>
   
       		</h1>
       		<?php
       			// Show an optional term description.
       			$term_description = term_description();
   
       				if ( ! empty( $term_description ) ) :
       					printf( '<div class="taxonomy-description">%s</div>', $term_description );
       				endif;
       		?>
       <?php
       	}
       ?>
   
       <?php
       	/**
       	 * Not found
       	 */
       	if ( is_404() ) { ?>
       		<h1 class="page-title">Error 404: Not Found</h1>
       <?php
       	} ?>
   
       </header>
       ```
   
 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637224)
 * Final fixes. Approved but not yet live – [https://wordpress.org/themes/download/corpobox-lite.1.1.6.zip?nostats=1](https://wordpress.org/themes/download/corpobox-lite.1.1.6.zip?nostats=1)
 *  Theme Author [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * (@dimadinev)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637240)
 * All is well now. New version 1.1.6 is now available. There the bug is fixed and
   everything works well.

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

The topic ‘Updated to version 1.1.2’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/corpobox-lite/1.1.9/screenshot.
   png)
 * Corpobox Lite
 * [Support Threads](https://wordpress.org/support/theme/corpobox-lite/)
 * [Active Topics](https://wordpress.org/support/theme/corpobox-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/corpobox-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/corpobox-lite/reviews/)

 * 8 replies
 * 2 participants
 * Last reply from: [Dinev Dmitry](https://wordpress.org/support/users/dimadinev/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/updated-to-version-112/#post-6637240)
 * Status: resolved