moonkir
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] How to change Sidebar-Top background for each page?in style.css – youre chield theme
add
for sidebar.php:
body.page-id-108 .s1 .sidebar-top, .s1 .sidebar-toggle { background: #33363B; }
108 – ID – youre page
#33363B – color sidebar for youre page ID
for sidebar1.php:
body.page-id-108 .s2 .sidebar-top, .s2 .sidebar-toggle { background: #82b965;}
Forum: Themes and Templates
In reply to: [Hueman] Unique sidebar title for each pageor
<?php $pgslg = basename(get_permalink()); if ( $pgslg == 'aboutt') { $namesdb = 'NO_FOLLOW:'; } else { $namesdb = 'FOLLOW:'; } ?> <p><?php _e($namesdb ,'hueman'); ?></p>
Forum: Themes and Templates
In reply to: [Hueman] how to remove WordPress logo from top baradd to functions.php
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 ); function remove_wp_logo( $wp_admin_bar ) { $wp_admin_bar->remove_node('wp-logo'); }
Forum: Themes and Templates
In reply to: [Hueman] how to put fa-icon in the top menuMark topic to resolve
Forum: Themes and Templates
In reply to: [Hueman] Problem with article list on category archivesI see
In responsive.css
string 218:
.post-list .post-inner { margin-right: 0px;}
need:
.post-list .post-inner { margin-right: 30px; }
Forum: Themes and Templates
In reply to: [Hueman] Problem with article list on category archivesWhen you change the resolution – displays correctly (by chrome & firefox)
Try another browserForum: Themes and Templates
In reply to: [Hueman] post previewI since all of the image
Forum: Themes and Templates
In reply to: [Hueman] post previewForum: Plugins
In reply to: [Comment Popularity] Custom comment template for Hueman themeWOW! it`s work – thx!
Forum: Themes and Templates
In reply to: [Hueman] Hueman Child Theme for Version: 2.1.5 ??If you update the files that you have in the child theme
You will be re-alter the files from the new themeForum: Themes and Templates
In reply to: [Hueman] how to put fa-icon in the top menuForum: Themes and Templates
In reply to: [Hueman] Code for Stopping Slider on Blog Post PageForum: Themes and Templates
In reply to: [Hueman] Unique sidebar title for each pagefor example sidebar.php
better to use a chield-theme
in the file sidebar.php
<p> <? php _e ('Follow:', 'hueman'); ?> </ p>
replaced by:<?php $pgslg = the_slug(); if ( $pgslg == 'aboutt') { $namesdb = 'NO_FOLLOW:'; } else { $namesdb = 'FOLLOW:'; } ?> <p><?php _e($namesdb ,'hueman'); ?></p>
where:
aboutt – slug of your page
NO_FOLLOW: – the name of the sidebar at the coincidence of slug
FOLLOW: – the name of the sidebar when no coincidence slugForum: Themes and Templates
In reply to: [Hueman] Featured Pages in SliderYou must create a copy of the template pages from Hueman
Such as child-menu.php
after:
<div class = "pad group">
add:
<? php get_template_part ('inc/featured'); ?>
In the child theme, create a folder inc
and copy the file from the original theme folder inc – featured.php
in the copied file
on lines 15 and 23
remove:
is_home () &&
On the selected page – apply your template
use