My tabs are gone after updating to the latest version of Listgo

In Listgo 1.6.5.5, we added a new feature called Nice tab on the single page: http://nimb.ws/JsOyBU

However, If you are using Listgo Child theme, this feature causes your tabs to disappear. To solve this issue, please follow these steps:

  1. Log into your site
  2. Click on Appearance -> Editor -> On the Theme Files area, click on functions.php
  3. Put the following code to the top of this file and hits Update button

 

<?php
add_action('wp_enqueue_scripts', 'listgoChildAddParentStyle');
function listgoChildAddParentStyle(){
    wp_enqueue_style('listgo-parent', get_template_directory_uri() . '/style.css', array(), WILOKE_THEMEVERSION);
}

Note that some hosting does not allow editing directly, in which case, you have to log into your hosting -> Your WordPress folder -> wp-content -> themes -> listgo-child -> Opening functions.php and put the above code to this file.

Leave A Comment?