Marcel Brinkkemper
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Lazyest Gallery] Apostrophe in folder name breaks the galleryLazyest Gallery 1.1 will get an extra plugin to read date from image file.
please post new items for other questions as this item is resolved.`Forum: Alpha/Beta/RC
In reply to: get_users_of_blog() changed in 3.1Thanks for clarifying. I’ll better use WP_User_Query.
try to uncheck
Create cached thumbnails after page has loaded in the browserin lazyest gallery settings, and increase the memory setting in php.iniForum: Plugins
In reply to: [Plugin: Lazyest Gallery] Apostrophe in folder name breaks the gallery@rlance: You are absolutely right. I’ll fix it immediately.
Update: It even coverts html entities if I only use the HTML editor.
Forum: Fixing WordPress
In reply to: Malware On Site?Hi Andrea,
You have some text widgets containing javascripts from other sites. It could be a problem there.
Also, please try WordPress Exploit Scanner by Donncha O Caoimh
And check your Host for any DNS errors.Forum: Fixing WordPress
In reply to: Help, word's are going through post and text box on siteA long string of characters doesn’t get broken automatically to fit in the element.
You could try to add
.format_text { word-wrap: break-word; }to your style sheet. Word-wrap is supported in IE 5.5+, Firefox 3.5+, and WebKit browsers such as Chrome and Safari.
BTW don’t use hyphens or underscores to make a divider. Use borders.Forum: Fixing WordPress
In reply to: Malware On Site?is your site: http://www.savingeveryday.net/ ?
It works for me in IE, Firefox, Chrome, Safari and Opera.If we have to “guess” why “Flagged by Akismet” is needed, it doesn’t really make it any clearer does it?
I doesn’t get any clearer by making author names 14px in all comments screens.
Hi Joost,
I have checked a lot of themes, and most of them have something like
<?php bloginfo('name'); ?> <?php wp_title(); ?>in the header.That means that having the blog name in the SEO template, It will show twice. May be something to consider. Not everybody knows how the hack the header.php file.
Suggestion for a future release: filter for the seo title.
$title = apply_filters( 'wordpress_seo_title', $title, $sep, $seplocation, $postid ); return esc_html( stripslashes( $title ) );I have added this to make your plugin work with Twentyten and Lazyest Gallery and I don’t have to hack plugins or themes after upgrading.
That’s what I’ll do…
Er zit niet anders op…(fun) In TwentyTen’s header.php
bloginfo( 'name' );is hardcoded afterwp_title( '|', true, 'right' );
Force title rewrite works, but then I can’t use the title rewrites of my lazyest-gallery plugin.