rdny
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with double comments, tags and category-sectionsYeah, I’m using a child theme. When I change to the original-theme the problem disappears.
As far as I know the problem came out of nowhere.
Forum: Fixing WordPress
In reply to: Problem with double comments, tags and category-sectionsI don’t know where in the world you are. But it doesn’t take 29,8 seconds for me to load.
Yes. I’ve tried disabling all the plugins. Didn’t work.
Forum: Fixing WordPress
In reply to: Problem with tablesOh well. I put…
<style>
table, th, td {
border:0px solid black;
}
</style>…in GP Hooks in wp_head and then it worked. But I don’t understand why it didn’t worked the other way.
Forum: Fixing WordPress
In reply to: Problem with tablesNope. It did not ??
Forum: Themes and Templates
In reply to: [Hueman] Change width in left sidebarPerfect!
I had to add background-position: -170px 0; otherwise I was getting some grey stuff in the white section.
Thanks a lot for your help!
Forum: Themes and Templates
In reply to: [Hueman] Change width in left sidebarYes. Thanks! That was exactly what I was looking for. But now when I see how it looks. It looks stupid ??
What if I wanna have a padding of 5px around the banner? I’ve tried, but it looks weird ??
Forum: Themes and Templates
In reply to: [Hueman] reduce the width of the primary sidebarHiya.
I have a skyscrape-add from Adsense in my left sidebar. It’s 160×600. I’ve tried the recent code you posted in here and I’ve tried changing the numbers. But I can’t get it correct.
I want the sidebar to be as close at 160 as possible and I want the entire ad to show ??
Can someone help me out?
It’s located at https://www.latenightapple.se.
Thanks in advance!
Forum: Themes and Templates
In reply to: [Hueman] Searchbox in the header-menuNope. Didn’t work ??
Forum: Themes and Templates
In reply to: [Hueman] MORE, FOLLOW and CATEGORY in NorwegianProbably the same mistake I did. What theme do you have activated? You need to activate the human-child theme.
Forum: Themes and Templates
In reply to: [Hueman] How to reduce space between the widgetsWorked perfectly. Thank you!
Forum: Themes and Templates
In reply to: [Hueman] Colors in HeaderAwesome. That worked out beautifully! Thank you!
Forum: Themes and Templates
In reply to: [Hueman] Changing the language to SwedishBecause now it’s in swedish ??
Forum: Themes and Templates
In reply to: [Hueman] Changing the language to SwedishOk. I’m so stupid.
The theme that should be activated is the child-theme, right? ??
Forum: Themes and Templates
In reply to: [Hueman] Changing the language to SwedishNope. Didn’t work.
Looks like this now.
function alx_load() {
// Load theme languages
load_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 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’ );
}Forum: Themes and Templates
In reply to: [Hueman] Changing the language to SwedishOk, sorry for being such a noob ??
So I reinstalled the theme. Downloaded it from your site instead :), redid the translation. Uploaded both the .po and the .mo to the chills-theme and under languages.
My .mo file is 2412 bytes big and my .po file is 3260 bytes big. Can that be correct? I can see that the the originals are 410 bytes respective 2650 bytes.
My functions.php file looks like this.
<?php
/* ————————————————————————- *
* Custom functions
/* ————————————————————————- */// Add your custom functions here, or overwrite existing ones. Read more how to use:
// https://codex.www.ads-software.com/Child_Themesfunction alx_load() {
// Load theme languages
load_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 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’ );
}}
What have I done wrong?