fob
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack Lite] [Plugin: Jetpack Lite] Nice WorkGreat idea!
Fixed by the way many bugs which came up with nonused jetpack functions (WYSIWIG not showing, path errors, …) in subdirectory installations.
Forum: Plugins
In reply to: [PlugIn WP-Stats-Dashboard] Post Views showing (title unknown)Nice. Attachments seem to have been fixed, too. May be I just have a cache problem for elder stats left. Today and yesterday already look like normal. Great! π
Forum: Plugins
In reply to: [PlugIn WP-Stats-Dashboard] Post Views showing (title unknown)Problem seems to be nearly solved. Is it?
I currently see the loading title thing only for attachment pages.Forum: Plugins
In reply to: [PlugIn WP-Stats-Dashboard] Post Views showing (title unknown)now showing “#895 (loading title)”
Yep, but wrong domains seem to be properly filtered now. Looks much better than before… π
(@niska: May be I`m wrong but I do not think that importing posts has anything to do with it.)
Forum: Plugins
In reply to: [PlugIn WP-Stats-Dashboard] Post Views showing (title unknown)The funny thing: I think it`s broken only in 3.x versions.
Forum: Plugins
In reply to: [PlugIn WP-Stats-Dashboard] Post Views showing (title unknown)Unknown titles seem to be replaced by post numbers now, still linking to other peoples blogs. Stats are mixed up and broken in several blogs. ;-(
A bit strange.It works with a single picture but does not like to insert cbox element for gallery thumbnails anymore.
Deactivating cleaner gallery, tabs and social bookmarks did not help. So it`s hard to find the problem. π
Urgs… well, the tabs seem to work. But thanks a lot. Will have a look at it tomorrow.
P.S.: Beste GrΓΌΓe zurΓΌck. π
Forum: Fixing WordPress
In reply to: turn off comments on pages by defaultToo late?
Using Hybrid I would suggest to use a function within your functions.php.
First add an empty file your template folder (sub theme), nothing in. No code, nothing. Just give it a name like “no-comments-please.php” and upload it to your server.
After that you can add something like this to your functions.php in order to call the file when pages are called:
add_filter( 'comments_template', 'remove_comments_template_on_pages', 11 );function remove_comments_template_on_pages( $file ) {
if ( is_page() )
$file = STYLESHEETPATH . '/no-comments-please.php';
return $file;
}After that comments will be removed from all pages. If you like you can enhance the function to do whatever you want.
Best regards and happy christmas
OliverForum: Plugins
In reply to: Twitter Tools not updatingSeems to be a Twitter problem. Same issue with two client blogs and different plugin solutions. Updates stopped working a view days ago.
Update:
Interesting: http://www.google.de/webhp?hl=de#hl=de&q=twitter+tools+stopped+working
Forum: Alpha/Beta/RC
In reply to: Permalink wishes (2.7)I upgraded today. Issues must be fixed with a small plugin provided by FastAgent (necessary since WP Version 2.2). It furtunately works with WordPress 2.7, too:
<?php /* Plugin Name: Smart Trailing Slash Plugin URI: http://www.fastagent.de/ Description: Gives permalinks a trailing slash, but removes it in permalinks with a filename extension, e.g. .html Version: 1.0 Author: Peter Claus Lamprecht Author URI: http://www.fastagent.de/ */ add_filter('user_trailingslashit', 'pcl_smart_trailingslashit'); function pcl_smart_trailingslashit($string) { if ( '/' != substr($string, -1)) { $string .= '/'; } if (0 < preg_match("#\.[^/]{1,}/$#", $string)) { $string = rtrim($string, "/"); } return $string; } ?>Forum: Alpha/Beta/RC
In reply to: Permalink wishes (2.7)Sorry Ipstenu, may be this does not look very friendly. I also could have chosen another blog for my examples. Well – it is meant friendly. Thanks for your interest in this problem.
Forum: Alpha/Beta/RC
In reply to: Permalink wishes (2.7)Let`s see:
This is my home: http://www.fob-marketing.de/
This is my blog: http://www.fob-marketing.de/marketing-seo-blog/My categories are currently looking like that:
http://www.fob-marketing.de/marketing-seo-blog-kategorie/marketing/Tags are looking like this:
http://www.fob-marketing.de/marketing-seo-blog-tag/seo/Artcles (Permalinks) currently look like this:
http://www.fob-marketing.de/marketing-seo-blog/broken-links-checker.htmlI decided to use this kind of links because of permalink trouble with WP 2.6. Actually I ran into Google Trouble with it although I made use of mod_rewrite to rescue things where possible. May be too much…
Testing WP 2.7 there seems to be a need for an additional fix because of not being able to surf on elder blog pages again ( example: http://www.fob-marketing.de/marketing-seo-blog/page/2/ which will not work with WP 2.7 anymore), just in categories, as long as I do not add something – e.g. the date or the post number – to the permalink string of my urls (in admin settings) what I definitely do not want!
Forum: Alpha/Beta/RC
In reply to: Permalink wishes (2.7)It could be as easy as you said. But unfortunately it is not. If you do not touch your homepage settings things might be very easy. If you do so you may run into trouble sooner or later because permalinks (SEO URLs) and settings for categories and tags do not like each other anymore. The easiest way to find out if it works or not is to click on your blog and try to read elder posts. If you get an error 404 you know that it is time to update your permalinks again and write several mod_rewrite rules to redirect elder posts, archives, tags and categories to the new targets. Sometimes you redefine WordPress Rules or make use of a plugin to resque your permalinks. But the day will come where you give it up and accept the new rules…
I know that you will not have this problem if you use your blog itself as your homepage or if you do not try to make the best of URLs. Using a page instead seems to be a problem as well as German permalinks that never worked acceptable without a plugin to solve this problem.
Forum: Alpha/Beta/RC
In reply to: Permalink wishes (2.7)I already upgraded several times (my own blogs and customer blogs, too) and so I know what I`m talking about. I had to change the permalink structure more than one time to make the things work as they did before.
.html -> Slash variant
root variant -> sub directories
…and with 2.7 even the sub directories will not work anymore if I don`t change the structure again. Some things work other things do not. I can not live with those that would not work for me anymore…
Edit: It is much easier if you are working with a simple blog. If you separate blog and pages working with a template for your start page it is much more difficult since Filosofo Homepage Control (plugin) should not be used anymore.