moonkir
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Change content page posts to horizontaladd to child themes style.css
.post-meta { display: table; margin-bottom: -4px; } .post-thumbnail { width: 30%; float: left; margin-right: 20px; }
Forum: Themes and Templates
In reply to: [Hueman] Change content page posts to horizontalwow! how?
Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04Forum: Plugins
In reply to: [Comment Popularity] Custom comment template for Hueman themehttps://news.zip.ua/books/%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82-%D0%BC%D0%B8%D1%80/
I add to functions.php this
add_action( 'plugins_loaded', function() { remove_filter( 'comments_template', array( 'HMN_Comment_Popularity', 'custom_comments_template' ) ); }, 100 );
and replace in comments.php:
<ol class="commentlist"> <?php wp_list_comments( 'avatar_size=96&type=comment' ); ?> </ol><!--/.commentlist-->
by:
<ol class="commentlist"> <?php /* wp_list_comments( 'avatar_size=96&type=comment' ); */ if ( function_exists( 'hmn_cp_the_sorted_comments' ) ) { hmn_cp_the_sorted_comments( $args ); } else { wp_list_comments( 'avatar_size=96&type=comment' ); }?> </ol><!--/.commentlist-->
Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04I have the same problem
1,0,1 – work fineForum: Themes and Templates
In reply to: [Hueman] post view in home pageYou have found a solution?
Forum: Themes and Templates
In reply to: [Hueman] Site title on pagesCreat copy /wp-content/themes/hueman/page-templates/child-menu.php
str 10<?php get_template_part('inc/page-title'); ?>
replace to
<div class="page-title pad group"> <h1><?php _e('YOURE_PAGE_NAME','hueman'); ?> </h1> </div>
Forum: Plugins
In reply to: [ARK Related Posts] not view content before –more–Как раз до тега more отображается на главной странице, не отображается сам тег more (читать далее)…
Это не проблема – так и есть – в этом все верно.
Насколько я понимаю, по той ссылке, что Вы мне предоставили, тема без всяких сторонних кодов и изменений собственных css-стилей?
Верно, голый WP и тема Hueman
Forum: Themes and Templates
In reply to: [Hueman] post previewany help?
Forum: Themes and Templates
In reply to: [Hueman] Social icons in topbar?in style.css
.social-links { float: right; position: relative; padding-top: 2px; }
replace to
.social-links { float: right; position: relative; padding-top: 12px; padding-right: 70px; }
Forum: Themes and Templates
In reply to: [Hueman] Social icons in topbar?in header.php
25 str<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
replace to
<div class="nav-wrap container"><?php alx_social_links() ; ?><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
Forum: Plugins
In reply to: [ARK Related Posts] not view content before –more–WP – 4.0 – возможно проблема с конкретной темой?
https://news.zip.ua/books/Forum: Plugins
In reply to: [JivoSite] add user nameЯ понял Вас, Дмитрий, спасибо за ваш плагин!
I understood you, Dmitry, thank you for your plugin!
Forum: Plugins
In reply to: [JivoSite] add user nameУ меня на сайте принудительная авторизация, моим пользователям незачем писать каждый раз свое имя – что бы я понял с кем разговариваю. Неплохо если бы имя пользователя заполнялось автоматически – на nice_name или другое
My site forced authentication, my users do not need to write every time his name – what I understood to talk to anyone. Not bad if your user name filled in automatically – on nice_name or other.
Forum: Plugins
In reply to: [JivoSite] add user nameДмитрий, я имею в виду имя пользователя – которое у него на сайте.
Dmitry, I mean the user name – is on his website.