Hueman v3.3.5 and v3.3.6 release note

Last update : v3.3.6 fixes the comments font size bug reported on the forum.

 

Dear Hueman theme user,

This new release fixes some customizer problems reported in the forum. If you are still experiencing any troubles, please report the issue in the forum, the dev team and myself will do its best to help and fix it !

The Hueman Addons plugin has been updated to version v2.0.8 at the same time. It is important that you update the plugin as well.

This update is safe for child theme users. 

This Hueman theme v3.3.5 introduces typography improvements and a better support for WooCommerce. The theme screenshot has been updated with a new set of colors and images.

 

Developers : toward more modularity

The template structure has been modified to allow more modularity when printing content.

Each of the main templates has been split in smaller pieces as follow :

  • archive.php => tmpl/archive-tmpl.php => parts/post-list-articles.php
  • index.php => tmpl/index-tmpl.php => parts/post-list-articles.php
  • search.php => tmpl/search-tmpl.php => parts/post-list-articles.php
  • single.php => tmpl/single-tmpl.php
  • page.php => tmpl/page-tmpl.php
  • 404.php => tmpl/404-tmpl.php

Now any content is rendered as a section with a new utility name hu_get_content() , with before and after hooks allowing developers to easily inject custom html markup anywhere.

In the near future, this simple structure will allow us to create flexible page and post content. In other words, this is the first stone of a page builder for the Hueman theme :).

 

      <?php do_action( '__before_content_section', $tmpl ); ?>
        <section class="content">
          <?php hu_get_template_part('parts/page-title'); ?>
          <div class="pad group">
            <?php
              foreach ( $seks as $_id ) {
                  if ( 'wp' == $_id )
                    hu_get_template_part("tmpl/{$tmpl}");
                  else
                    hu_print_sek( $_id );
              }
            ?>
          </div><!--/.pad-->
        </section><!--/.content-->
      <?php do_action( '__after_content_section', $tmpl ); ?>

 

New screenshot

The theme screenshot has been refreshed with a new color palette and new images. You can see it live in the Hueman theme demo.

If you want to reproduce this design, here are the colors used :

  • topbar background : #121d30
  • header Background color is : #454e5c
  • primary color 1 ( left sidebar + links ) : #16cfc1
  • primary color 2 ( right sidebar + comment bubbles ) : #efb93f

Note : on the demo, the topbar uses a transparent color set in the additional css from the customizer > Advanced Options > Additional CSS , with the following css code :
body .search-expand, #nav-topbar.nav-container {
background-color: rgba(18, 29, 48, 0.7);
}

 

 

Changelog

  • Fixed : array to string error with hu_is_checked()
  • Fixed : selective refresh disabled when link widget enabled. cf WP core ticket #39451
  • Fixed : correctly handle sizes attribute when smartloading resp imgs ( fixes #316 )
  • Improved : img to smartload must have an src which matches an allowed ext. Fixes issues with Ultimate Membership Pro
  • Improved : add hueman specific widgets panel icon as inline customizer js
  • Improved : front end jQuery plugins, rightly handle sizes/data-sizes attribute replacement in php
  • Improved: customizer social links module user interface
  • Improved : introduced hu_get_content( $tmpl ) which takes care of all content rendering inside section > .pad accross the theme
  • Improved : post messaging for the social links customization
  • Improved : customizer font option set to postMessage
  • Improved : body font size set to 1rem == 16px in all browsers
  • Improved : font sizes set in relative em instead of px unit
  • Improved : the font list is now defined in one place in init-core.php
  • Added : utility hu_is_real_home() => handles the case when the user want to display a page on home but did not pick a page yet
  • Added : Gitlab icon to social links
  • Added : wp_add_inline_style() on front allowing to add user option based css
  • Added : a new template for the WordPress loop named post-list-articles.php for index.php, search.php and archive.php
  • Added : 6 content templates in tmpl/ use to render the various contextual content : single, page, archive, search, 404, index
  • Added : website font-size option in the customizer
  • Added : icon size option for the social links
  • Added : better support for WooCommerce
  • Added : user font family to the wordpress editor
  • Removed ru_RU translation files because it is not completed online

55 thoughts on “Hueman v3.3.5 and v3.3.6 release note”

Comments are closed.