Dominik Schilling
Forum Replies Created
-
Forum: Plugins
In reply to: [Public Post Preview] [Plugin: Public Post Preview] Link expirationBy default the link is available for 24 hours. It based on the WordPress Nonces API and exists for security reasons.
If a link (the nonce code) has been expired you can copy the link again.
If you really want to extend the time to can use the filter in wp_nonce_tick().
For example:add_filter( 'nonce_life', 'ds_nonce_life' ); function ds_nonce_life( $seconds ) { return 60 * 60 * 24 * 50; // 50 days }This is not a problem.
Since the Toolbar is loading on each page the plugin script needs to be loaded on each page too – also on the plugin page of codestyling localisation.
Forum: Plugins
In reply to: [Spotify Embed] [Plugin: Spotify Embed] How do I embed an artist page?When I right click on the artist on Spotify, I can only copy the HTTL link or Spotify URL, not the embed code.
And that’s the point. Spotify doesn’t allow this yet. So since Spotify doesn’t provide this option, I can’t add this to the plugin, sorry.
Forum: Alpha/Beta/RC
In reply to: Header from Media Libary in Theme OptionsAh okay, you mean the Customizer. No, It’s not yet on the roadmap.
Forum: Alpha/Beta/RC
In reply to: Header from Media Libary in Theme OptionsWhich Theme Options menu do you mean?
Forum: Plugins
In reply to: [Spotify Embed] [Plugin: Spotify Embed] [embed] doesn't workI just tested all types again and all works for me.
Any other plugins active?
The plugin isn’t supported anymore.
Forum: Plugins
In reply to: [Spotify Embed] [Plugin: Spotify Embed] [embed] doesn't workWhat are your settings under Settings > Media > Embed?
Forum: Plugins
In reply to: [Admin Bar Backend Search] [Plugin: Admin Bar Backend Search] Works greatfunction ds_switch_post_page( $types ) { $tmp = $types['post']; $types['post'] = $types['page']; $types['page'] = $tmp; return $types; } add_filter( 'ab_backend_search_types', 'ds_switch_post_page' );See http://wpgrafie.de/wp-plugins/admin-bar-backend-search/en/#comment-1096
Forum: Alpha/Beta/RC
In reply to: Admin Sidebar is gone 3.2rc1http://domain.de/wp-admin/plugins.php or just rename your plugins folder.
Forum: Alpha/Beta/RC
In reply to: Admin Sidebar is gone 3.2rc1What was the previous version? Any plugins active? Do you have cleared your browser cache?
Forum: Fixing WordPress
In reply to: fopen() Cron ErrorForum: Installing WordPress
In reply to: Error upgrading WP 3.1Your upgrade failed. Try upgrading manually.
Forum: Installing WordPress
In reply to: Upgrade to 3.1 – wp_cache_get() issueIt’s a problem with the WP Hive plugin. Please contact the plugin author.
It seems like the plugin calls a function too early.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageWe need some more information to reproduce it, what are the exact steps?
Trac ticket: http://core.trac.wordpress.org/ticket/16256