icheyne
Forum Replies Created
-
Forum: Plugins
In reply to: Nofollow Plugin for WordPress 1.2That’s great. Thanks.
It is a pity you still have to edit wp-comments.php, by changing the text comment_author_link() to comment_author_link_nofollow(), but it’s still getting closer to perfection. 🙂
Forum: Plugins
In reply to: Nofollow Plugin for WordPress 1.2Please could you send your plugin to http://wp-plugins.net/ ? One-click installation and easy updates are great for lazy people like me.
There is another nofollow plugin already there, but this one works fine for me.
Forum: Fixing WordPress
In reply to: Calendar error related to permalink structureChange line 104, which is in the function get_day_link, of wp-includes/template-functions-links.php from
if (” != get_settings(‘permalink_structure’)) {
to
if (” != get_settings(‘permalink_structure’) && strpos(get_settings(‘permalink_structure’), ‘%day%’) !== false) {
Forum: Fixing WordPress
In reply to: Problem with permalinksChange line 104, which is in the function get_day_link, of wp-includes/template-functions-links.php from
if (” != get_settings(‘permalink_structure’)) {
to
if (” != get_settings(‘permalink_structure’) && strpos(get_settings(‘permalink_structure’), ‘%day%’) !== false) {
Forum: Fixing WordPress
In reply to: Permalink in calendar displays as /%yeaChange line 104, which is in the function get_day_link, of wp-includes/template-functions-links.php from
if (” != get_settings(‘permalink_structure’)) {
to
if (” != get_settings(‘permalink_structure’) && strpos(get_settings(‘permalink_structure’), ‘%day%’) !== false) {
Forum: Fixing WordPress
In reply to: Cruft-Free URI problemsThis fixed it for me. Change line 104, which is in the function get_day_link, of wp-includes/template-functions-links.php from
if (” != get_settings(‘permalink_structure’)) {
to
if (” != get_settings(‘permalink_structure’) && strpos(get_settings(‘permalink_structure’), ‘%day%’) !== false) {
Forum: Fixing WordPress
In reply to: Calendar Links to “%pos” — Returns 404 Err`
Forum: Fixing WordPress
In reply to: Comments too wideNo it doesn’t. It still does not work. How annoying!
Forum: Fixing WordPress
In reply to: Comments too wideI found changing it to 95% worked just as well.