tin68
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy External Links] Own CSS attribute to links are killedSeems not to be resolved
https://ww.wp.xz.cn/support/topic/class-conflict?replies=1Forum: Fixing WordPress
In reply to: Is there a HTML output filter?Found the problem:
Plugin “Easy External Links” uses “class” element in the link reference and overwrites the information there already given in editor.
Wrote a note to the developer.
Forum: Fixing WordPress
In reply to: Remove Google javascript librariesResult: If you want to have a “clean” blog without a lot of external links and external calls to libraries you have to check every plugin before installing it if you find something in the code.
Btw. Should be a “nice” feature in the detailed description of a plugin which external calls are implemented.
Forum: Fixing WordPress
In reply to: Remove Google javascript librariesOk – found the plugin which calls Google libraries – Lightbox 2. After disabling it the calls are gone. So I have to check all other plugins if they call external links / libraries.
Forum: Fixing WordPress
In reply to: Remove Google javascript librariesSo there is no “general switch” to turn off all these external calls? I found several plugins which are switching off Gooogle Fonts or which are storing the fonts locally on the same server as the blog. But I didn’t find a plugin wich turns off the javascript calls. Here there a lot of scripts which enable the Google libraries. But this is the opposite 🙂
And to check all themes if they call external libraries before installing them is a “little bit” complicated.
The recent theme is “Kirumo”.
Forum: Fixing WordPress
In reply to: Remove Google javascript librariesBoth. I would like to have a blog (dashboard and public pages) without all these numorous external calls to Google and other sites.
Forum: Fixing WordPress
In reply to: Remove Google javascript librariesHmm – so with other words: Calls to builder.js, dragdrop.js, controls,js, slider.js, sound.js, effects.js and so on is related to the theme? There is no general use of Google javascripts in the WordPress core?
So the next thing would be to find a theme without Google fonts and without Google javascript libraries.
Forum: Fixing WordPress
In reply to: Install / delete plugins and themes doen't workFinally found the problem:
In wp-config.php one line disabled install and delete plugins and themes – seems that I forgot to delete this line some months ago 😉
define( ‘DISALLOW_FILE_MODS’, TRUE );
After commenting out this line everything is ok.
Tin
Forum: Fixing WordPress
In reply to: updating to 3.0.4 made easy???Seems a problem in update-core.php of the German version from http://wordpress-deutschland.org/download/
With update-core.php from http://de.ww.wp.xz.cn/ the message has gone. Thanks.
Forum: Fixing WordPress
In reply to: updating to 3.0.4 made easy???I started upgrade.php – nothing changed, message still there.
But, what is a “hard refresh on the page”?
BTW. I restarted the browser with deleted cookies, contend and stored data.
Forum: Fixing WordPress
In reply to: updating to 3.0.4 made easy???Strange thing over here: I replaced the 5 files with FTP.
In the dashboard it is noted that I am using version 3.0.4 – but on the top of the dashboard the message which tells me that I should upgrade is still there.
Forum: Plugins
In reply to: Aksimet plugin has XHMTL bug – does not validateBug still in Akismet plugin version 2.2.8.
Forum: Plugins
In reply to: [Plugin: WP-UserOnline] Translation not workingBut in the setup description it should be mentioned that the plural from in the pot file must be entered:
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"should be for German eg.
"Plural-Forms: nplurals=2; plural=n != 1;\n"Besides that in the recent pot file there are some errors:
#: admin.php:24 #, php-format msgid "There is <strong><a href='%s'>%s user</a></strong> online now." msgid_plural "" "There are a total of <strong><a href='%s'>%s users</a></strong> online now." msgstr[0] "" msgstr[1] ""should read as
#: admin.php:24 #, php-format msgid "There is <strong><a href='%s'>%s user</a></strong> online now." msgid_plural "There are a total of <strong><a href='%s'>%s users</a></strong> online now." msgstr[0] "" msgstr[1] ""Or
#: template-tags.php:79 #, php-format msgid "" "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</" "strong> and <strong>%s</strong>." msgid_plural "" "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, " "<strong>%s</strong> and <strong>%s</strong>." msgstr[0] "" msgstr[1] ""should read as
#: template-tags.php:79 #, php-format msgid "" "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</" "strong> and <strong>%s</strong>." msgid_plural "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, " "<strong>%s</strong> and <strong>%s</strong>." msgstr[0] "" msgstr[1] ""Forum: Fixing WordPress
In reply to: Tag cloud – font-sizeThere is no value to set the font-size to an integer value.
But I did it now in an other way – I patched category-template.php and set line 684 to:
( round( $smallest + ( ( $count - $min_count ) * $font_step ) ) )Works great.
Forum: Fixing WordPress
In reply to: Tag cloud – font-sizeAs far as I see tag cloud widget has no configuration setup.