lkraav
Forum Replies Created
-
Right, symlinking is indeed x-platform problematic and would require respective handling. OTOH it would be nice to be able to provide effective multi-language file names as well..
Re Media Translator, I also didn’t pay attention to it at first sight until customer asked about translatable image meta.
$sitepress is the gateway variable to the WPML instance. WPML’s real name is actually “SitePress Multi-Lingual CMS Thingamathingiemegasuper Something”.
Heh funny, I also finally got annoyed enough with it *today* that I wanted to come here and create a forum thread. Apparently someone just beat me to it.
Anyway, I patched 1.3.4.9 for the meanwhile:
351 if ( array_key_exists(‘id’, $_value) && $_value[‘id’]) register_setting( ‘media’, $_value[‘id’] );I guess 1.3.5.0 will have a fix and I won’t have to maintain this, which is great.
Forum: Plugins
In reply to: [Admin Bar Theme Switcher] [Plugin: Admin Bar Theme Switcher] 3.3 ErrorConfirmed in 3.3.1
Chrome behaves funny with the dropdown. As soon as you click on it, dialog disappears, so you can’t actually select another theme.
Same here. Nothing I have tried fixes this.
Forum: Fixing WordPress
In reply to: Duplicate sub-category slugs in WordPressNeeding the same thing with MarketPress shopping cart, so bumping.
Forum: Plugins
In reply to: [LogStore] [Plugin: LogStore] Fix for compact() call making log entries emptyHere some better CSS for the admin:
https://stackoverflow.com/questions/1713048/how-to-style-dt-and-dd-so-they-are-on-the-same-line
dl.logdata { -moz-border-radius: 4px 4px 4px 4px; margin: 1px; padding: 3px 3px 1px 3px; background-color: #FFFFFF; border: 1px solid #DFDFDF; overflow: hidden; width: 100%; } dl.logdata * { border: none; padding: 0; margin: 0; } dl.logdata dt { clear: left; float: left; font-weight: bold; width: 30%; } dl.logdata dd { padding-left: 30%; width: 70%; }
Forum: Plugins
In reply to: [LogStore] [Plugin: LogStore] Fix for compact() call making log entries emptyFor 3.3.1 you also need to have:
admin/includes/class-logstore-list-table.php:
19 parent::__construct( array(Forum: Plugins
In reply to: [Admin Columns] [Plugin: Codepress Admin Columns] make columns sortable ?good stuff, this seems to work just fine in combination with the plugin:
function my_admin_users_registered_column_sortable( $columns ) { $custom = array( "column-user_registered" => "user_registered", ); return wp_parse_args( $custom, $columns ); } add_filter( "manage_users_sortable_columns", "my_admin_users_registered_column_sortable" );
Forum: Plugins
In reply to: [Admin Columns] [Plugin: Codepress Admin Columns] make columns sortable ?Whatsup Tobias. How’s the new release coming along? I’m looking to sort users by registered date and I guess I will be using a custom filter next to your plugin right now.
https://wordpress.stackexchange.com/questions/35680/sortable-custom-column-in-media-library
Other than that, I could also use a feature that would save the order you last used as the default. I guess a plugin would have to save this to your user meta. Thoughts?
Forum: Fixing WordPress
In reply to: Admin panel login/logout loopi just ran into something similar where wp-admin itself simply would not let me log in, redirecting with reauth=1 with no error message.
i eventually noticed the redirect URL looked like:
https://myserver/wordpress//wp-login.php?redirect_to=...blah...
took a look at wp-config.php which had:
define WP_SITEURL https://myserver/wordpress/ (ignore syntax)
removed the trailing slash – problem solved instantly. no idea if this will have any side effects.
Forum: Fixing WordPress
In reply to: Broken after upgrade add_rewrite_tag / taxonomywp-e-commerce was the culprit for me, going from 2.9.2 -> 3.0.2.
Forum: Plugins
In reply to: RSS Widget Feed Problemsjoining in on those one. thought it could be the widget cannot handle https, but perhaps not?
Forum: Plugins
In reply to: RSS Widget Feed Problemsjoining in on those one. thought it could be the widget cannot handle https, but perhaps not?
Forum: Your WordPress
In reply to: RSS to blog entryi am also interested in this feature
Forum: Plugins
In reply to: File Attachment for Entrieshas anything been created for this request?