Sami Keijonen
Forum Replies Created
-
Forum: Plugins
In reply to: [Display Authors Widget] [Plugin: Display Authors Widget] Not work on 3.4.2Do you mean it doesn’t work in 3.4.2? I have tested this in 3.5 also and it works.
Forum: Themes and Templates
In reply to: [Path] Google fonts?replace Oswald?
You can do the same in your child theme
functions.php
as in Path themefunctions.php
. Look forwp_enqueue_script
-hook. Here is premade child theme if needed.Most post formats use
the_excerpt()
so<!--more-->
tag doesn’t have any effect. But there is still automatically Read more link, if post is long enough.If you want the change this behaviour, you need to copy
content.php
and perhaps some othercontent-*.php
to your child theme and make modifications in there.Forum: Themes and Templates
In reply to: [Path] Google fonts?Put this in your child theme
style.css
.h1, h2, h3, h4, h5, h6 { font-family: Georgia,sans-serif; }
You can set font-family like that.
P.S. What is the language, which Oswald doesn’t support?
Forum: Themes and Templates
In reply to: [Path] Path them supported at themehybrid.comBy the way, what’s the sense of having a free option for registration on the themehybrid site, I wonder?
I don’t know why there is that option, you’ll have to ask Justin about it.
But if you want to learn about WordPress and have great support, I encourage you to join themehybrid.com.
Forum: Themes and Templates
In reply to: [Path] Shortcodes?Nope. Those are better be in a plugin, so you won’t get locked using my theme forever.
Forum: Themes and Templates
In reply to: [Path] Google fonts?In the same way as in parent theme. Look theme
functions.php
for example.Use
wp_enqueue_scripts
in setup function andwp_enqueue_style
-function.Forum: Themes and Templates
In reply to: [Path] [Theme: Path] How to change picture size in the headerYes, there is
style.dev.css
which is not compressed.Note: WordPress is moving to direction where they name files like
style.min.css
.Forum: Themes and Templates
In reply to: [Path] [Theme: Path] How to change picture size in the headerAlso I am wonder why the style.css file has text without indenting or formatting. Its hard to make sense of the code.
That’s why there is style.dev.css.
Forum: Themes and Templates
In reply to: New Theme – Need help with PathChild theme style.css have @import rule. It means that all Path theme styles are imported to child theme.
/* Importing the parent theme stylesheet. */ @import url( '../path/style.css' );
Add your styles after that.
Forum: Fixing WordPress
In reply to: Blockquote ProblemTo be clear:
height: 100%
was for IE7 and I can take it off, because I’m not supporting that browser anymore.Forum: Fixing WordPress
In reply to: Blockquote ProblemIf you remove
height: 100%
in your style.css and I don’t remove it in theme style.css, next time you update the theme, it will be there again. And that’s not good:)@technguide: could you point out which browser that happened? And url where this happens. I can’t replicate that issue in any of browsers that I’m testing.
You have this weird script before DOCTYPE. It doesn’t come from the theme. I guess it’s coming from a plugin.
<script> //location = "/construction/"; </script>
What comes to Validators, use HTML5 DOCTYPE. And even after that Validators pick up a few ‘errors’. Link is more like this. I don’t think there are any bugs in theme template files, but please let me know if there are.
And I encourage you to install and activate child theme just in case you make even one modification.
Forum: Themes and Templates
In reply to: [Path] [Theme: Path] Missing Some Gravity Forms StylesI check these out, thanks.
Forum: Themes and Templates
In reply to: Theme Path menu and font-familyShould i replace the path theme by this child theme?
Install and activate Child theme. You need the Parent Theme Path also installed. After that make your modification to child theme
style.css
file. This is how WordPress works.Forum: Themes and Templates
In reply to: [Path] Path them supported at themehybrid.comYou can contact Justin Tadlock here. He’s the one that runs that site. I hope it works out for you.