Shopkeeper child theme

We’ve made a child theme for Shopkeeper theme to perfectly fit our WooCommerce Wishlist plugin in the original theme design. Please note that some of the Wishlist style and button settings may not work with this child theme because they are overridden.

Click button below to download Shopkeeper-Wishlist child theme

Download

How to use child theme?

 

1. Simply copy child theme folder to wp-content/themes in your WordPress install.

2. Login in your admin dashboard and activate new child theme in Appearence > Themes.

Wishlist Counter

 

Header layouts were overridden in this child theme in order to add our wishlist counter with mini-wishlist in header.

If you need to update Shopkeeper theme and new version has some changes in header layouts then you will need to add our wishlist counter code to the new header layouts manually:

1. Copy new header layout to the child theme.
2. Open each layout and find div with “site-tools” class

<div class="site-tools"  ...  >
<ul>

3. Add following code just below the opening of the ul tag:

<?php
/*********************************************************************  
* 
* TI WOOCOMMECE WISHLIST PRODUCT COUNTER INTEGRATION 
* 
*********************************************************************/
// Check if WooCommerce Wishlist Plugin activated.
if (defined( 'TINVWL_LOAD_FREE' ) || defined( 'TINVWL_LOAD_PREMIUM' )) {                             
    if ( (isset($shopkeeper_theme_options['main_header_wishlist'])) && ($shopkeeper_theme_options['main_header_wishlist'] == "1") ) { ?>
        <li class="ti-wishlist-button">
            <?php echo do_shortcode( '[ti_wishlist_products_counter]' ); ?>
        </li>    
    <?php }
}
/*********************************************************************  
* 
* END OF TI WOOCOMMECE WISHLIST PRODUCT COUNTER
* 
*********************************************************************/
?>