Potku
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [SEOPress] Change DateThat option sounds like a good idea. 🙂
Forum: Themes and Templates
In reply to: [SEOPress] Language edits?Manually with Poedit, it didn’t work again… And I tried to do everything just right… Nonetheless, I installed the plugin that was recommended in the first link you kindly provided. Everything’s all good now!
Thanks for your help, and especially thank you for an awesome theme. 🙂
Mika
Forum: Themes and Templates
In reply to: [SEOPress] Language edits?I actually tried to do that last night, but for some reason it didn’t work. I’ll take another look at it and will let you know. Thanks. 🙂
Forum: Themes and Templates
In reply to: [SEOPress] Language edits?And there are quite a few others; Name, Your Name, Email, Your Email, Comment, Your Comment, Website, Your Website, X [amount of] Comments on, Home… Those I could find just now by browsing at one blog post.
The search form didn’t speak Finnish, either, but I modified that file, so now it does.
I just want to know what I should to make everything look good. 🙂
Forum: Themes and Templates
In reply to: [SEOPress] Front page showing 2 images per postSo, it was that easy… 😀
Thanks! 🙂
Forum: Themes and Templates
In reply to: [SEOPress] Language edits?Hello,
and thanks for your reply. I am not sure what you mean, though. 🙂 What should I do now?
Forum: Themes and Templates
In reply to: [SEOPress] Language edits?That last one I found, so no need to worry about that. “Older entries” and “Newer entries” are still on the list. 🙂
Forum: Themes and Templates
In reply to: [SEOPress] Front page showing 2 images per postSorry, I forgot to provide I link in case anyone wants to see what I mean exactly: http://potku.net/page/2/#
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Subscribe widgetOf course this plugin has a widget. Awesome! This is one great plugin.
Forum: Fixing WordPress
In reply to: Translating and creating .pot file for wp-userlogin pluginWhen I use PoEdit, I have the option “Convert to .mo automatically every time you save your work” ticked. It doesn’t say exactly that in English, I am sure, because I use the Finnish version of PoEdit.
There are three factors in play here: PoEdit, uploading with FTP, and WordPress. And me… So, I do now know which one needs to be investigated here.
If someone figures this out, please let me know. I really would like to translate some things outside the theme.
Forum: Fixing WordPress
In reply to: Translating and creating .pot file for wp-userlogin pluginThanks, that’s a good link, but even in that they say it really should be as easy as 1-2-3 with PoEdit. But for some reason I am not seeing the changes after uploading the file.
I’ll add something I think is of value here.
Both the calendar widget and the archives widget on the sidebar link to http://www.potku.net/blogit/blog (+ date info)
But such an URL does not exist. No wonder I get a blank page. But why do these two point there for an archive?
Forum: Fixing WordPress
In reply to: Translating and creating .pot file for wp-userlogin pluginI’ll post this one here.
When I edit the .po file with PoEdit, it converts all saved versions into .mo. However, when I upload the .mo, I see no change. What might be the cause of that?
The language I am using is Finnish.
Thanks!
I’m having a similar problem. I am running MU, and the main blog’s archive gives a blank: http://www.potku.net/blogit
(just click at the calendar)If you look at the other bloggers’ blogs, their archives work just fine. For example: http://www.potku.net/blogit/bodyguard
What am I missing here?
Thanks!
Forum: Themes and Templates
In reply to: how to put my own background image in Gear theme?Sorry, I am a newb…
nnamazi, what you described there is not in my header.php but in my style.css. My header.php is just this:
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value[‘id’] ) === FALSE) { $$value[‘id’] = $value[‘std’]; } else { $$value[‘id’] = get_settings( $value[‘id’] ); } }
?>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /><link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” /><!– for translations –>
<?php if (strtoupper(get_locale()) == ‘HE_IL’ || strtoupper(get_locale()) == ‘FA_IR’) : ?>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’); ?>/rtl.css” type=”text/css” media=”screen” />
<?php endif; ?><title><?php if (is_home()) {
echo bloginfo(‘name’);
} elseif (is_category()) {
echo __(‘Category » ‘, ‘blank’); wp_title(‘« @ ‘, TRUE, ‘right’);
echo bloginfo(‘name’);
} elseif (is_tag()) {
echo __(‘Tag » ‘, ‘blank’); wp_title(‘« @ ‘, TRUE, ‘right’);
echo bloginfo(‘name’);
} elseif (is_search()) {
echo __(‘Search results » ‘, ‘blank’);
echo the_search_query();
echo ‘« @ ‘;
echo bloginfo(‘name’);
} elseif (is_404()) {
echo ‘404 ‘; wp_title(‘ @ ‘, TRUE, ‘right’);
echo bloginfo(‘name’);
} else {
echo wp_title(‘ @ ‘, TRUE, ‘right’);
echo bloginfo(‘name’);
} ?></title><!–
<title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> –><?php include(TEMPLATEPATH.”/custom.php”); ?>
<?php wp_head(); ?>
Where should I look to change the background image?