jurasjo
Forum Replies Created
-
sorry but where is that plugin ? I have similar problem.
Forum: Plugins
In reply to: [Facebook Page Publish 2] Is this plugin still developed ?maybe You could paste here https://pastebin.com/
I think there is no need for having a valid account.
Forum: Plugins
In reply to: [Facebook Page Publish 2] Is this plugin still developed ?Could You paste whole content of the .php file here ?
I’m not very familiar with php code and I have a trouble with replacing proper lines.Forum: Themes and Templates
In reply to: [Hueman] Suggestion: 2nd option of the Share styleForum: Themes and Templates
In reply to: [Hueman] Remove space between title and postsIt looks normal.
Forum: Themes and Templates
In reply to: [Hueman] Child theme – CZ language does not work FOLLOW and MORECheck this language
Add :
load_child_theme_textdomain('hueman', get_stylesheet_directory().'/languages');
after that line:
load_theme_textdomain( 'hueman', get_template_directory().'/languages' );
in Your child-theme/functions.php file
It works for me.
Forum: Themes and Templates
In reply to: [Hueman] Codestyling LocalizationOk i have added that code to custom functions.php
if ( ! function_exists( 'alx_load' ) ) { function alx_load() { // Load theme languages load_theme_textdomain( 'hueman', get_template_directory().'/languages' ); load_child_theme_textdomain('hueman', get_stylesheet_directory().'/languages'); // Load theme options and meta boxes load_template( get_template_directory() . '/functions/theme-options.php' ); load_template( get_template_directory() . '/functions/meta-boxes.php' ); // Load custom widgets load_template( get_template_directory() . '/functions/widgets/alx-tabs.php' ); load_template( get_template_directory() . '/functions/widgets/alx-video.php' ); load_template( get_template_directory() . '/functions/widgets/alx-posts.php' ); // Load custom shortcodes load_template( get_template_directory() . '/functions/shortcodes.php' ); // Load dynamic styles load_template( get_template_directory() . '/functions/dynamic-styles.php' ); // Load TGM plugin activation load_template( get_template_directory() . '/functions/class-tgm-plugin-activation.php' ); } }
Is there a solution for excluding buttons for posts from selected category ?
Forum: Themes and Templates
In reply to: [Hueman] Make Hueman Theme Full widthTheme Options > Styling > Use a boxed layout
Forum: Themes and Templates
In reply to: [Hueman] Share ButtonsAfter update to 2.1.1 there is a need to change code to :
<div class="entry themeform" <?php if ( !ot_get_option('sharrre') != 'off' ) { echo 'share'; }; ?>"> <div class="entry-inner"> <?php the_content(); ?> </div> <?php if ( !ot_get_option('sharrre') != 'off' ) { get_template_part('inc/sharrre'); } ?> <div class="clear"></div> </div><!--/.entry-->
Forum: Themes and Templates
In reply to: [Hueman] ThumbnailsOk. I have found solution for pkt 1:
I have removed
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
from inc/related-post.php
Forum: Themes and Templates
In reply to: [Hueman] Release info 1.3.6Forum: Themes and Templates
In reply to: [Hueman] Menu Buttons icon/imagesWOW. It looks nice !
Forum: Themes and Templates
In reply to: [Hueman] how to make sidebars white colour/img/sidebar/s-left.png
/img/sidebar/s-right-s2.pngYou have to use image editor(like Gimp, Paint) to change colors and not a code.
Forum: Themes and Templates
In reply to: [Hueman] Share ButtonsIf You use a child-menu and Child theme You have to put child-menu.php into page-tempates directory in Your Child theme directory. Then You have to paste that piece of code to that file for proper working with that feature.