Milan Dini?
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Forum needs email alertsAs jeffr0 said, in bbPress’ trunk (forum software that powers this forum) option for e-mail introduction is introduced (you can see it in action at https://www.bbpress.org/forums ) so if bbPress here will be updated to that new version when it is released, there will be e-mail notification here too.
Where he is not right is how this notification works. User needs to subscribe to topic by clicking on link on topic’s page. After that, he will receive e-mail for every new post in that topic, so there is no option for digests.
I made a patch that would enable checkbox below post form for subscribing, but I’m not sure if it will get in new version.
I have to actively subscribe to RSS of every topic I would like to be informed about…… and then I have to actively check RSS feeds….
You don’t have to subscribe to RSS of every topic. Just add topic in your favorites (section “About this Topic” at right sidebar) and then subscribe to your favorites’ RSS feed (find it at your favorites’ page)
Forum: Fixing WordPress
In reply to: using different language in Dashboard and in the blog (Theme)Check out Admin in English or WP Native Dashboard, among others.
Forum: Plugins
In reply to: [Gravatar Signup Encouragement] Awesome idea!I believe that problem is because you are using Gravatar Box too, and those too plugins are not complaint.
Forum: Plugins
In reply to: [Plugin: Google Analytics for WordPress Yoast] Problems with custom_se.jsIt seems that this is related to WP 2.7.x. More info and fix here.
Forum: Plugins
In reply to: [Plugin: Google Analytics for WordPress] GA Plugin min version needs updatingAnyone using version 2.7.x can fix this by editing line 16 of plugin. Instead of
return plugins_url('', __FILE__).'/';
it should be
return plugins_url('google-analytics-for-wordpress', __FILE__).'/';
Forum: Plugins
In reply to: [Plugin: Gravatar Signup Encouragement] Danish – danskThank you for your effort! I added your translation to plugin.
Note that you didn’t need to create pot file since there is one already provided with plugin. Because of that you missed one string for localization of URL to Gravatar’s site because it uses _x which is introduced in 2.8.
Though you wouldn’t get anything with that URL because I don’t see that gravatar.com is translated to Danish. Since I see that you translate WordPress related stuff, check out about translation of gravatar.com. If you localize Gravatar, send me updated files with locale URL.
Forum: Plugins
In reply to: [Gravatar Signup Encouragement] Awesome idea!Thank you! If you have any idea about how to improve plugin please write it.
Forum: Plugins
In reply to: [Plugin: AdSense Integrator] Translations in other languages?You should provide .pot file in archive so that translators could translate it.
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Its not my plugin, though author implemented some of mine ideas ??
I think that there is no such option in Minify, on which WP Minify is based.
And here is code I promised above:
<IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/x-javascript application/x-httpd-php application/rss+xml application/atom_xml </IfModule>
Btw, you didn’t tell me about cascading thing.
Forum: Fixing WordPress
In reply to: images don’t appear when using internet exploreIn what version of IE? If it is only in IE 6 then don’t care about that.
Forum: Fixing WordPress
In reply to: How do I append info to the end of all URLs on my RSS feeds?thomass68, you didn’t understand question, it’s not that what you are saying.
WordPressChina, edit this plugin to enable this (you can copy code from it to functions.php file if you want).
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?For some reason my code can’t be sent here, I belive it is because of company’s proxy server, will send you when I’m at home.
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?You don’t need plugin for this. What you need is to simply edit .htaccess file in root of your installation and place this three lines:
Note that everything between ifmodule tags need to be in one line (simply copy it from here).
This will compress all your textual content (html, css, javascript, xml,…). If you don’t want some type to be compressed, simply remove it from line. You can use this for any site, not just ones powered by WordPress.
Though I don’t understand that thing about cascading in second item, could you explain it better?
Forum: Fixing WordPress
In reply to: Auto-Posts?And what about plugins? Did you install some plugin that automatically publish post or if not, do you see some plugin that you didn’t install?
Forum: Fixing WordPress
In reply to: How do I change the date-box to “event date” in postsIt is too complicated to be explained here, search the web for editing of WordPress theme.