Dominik Schilling
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: 3.9 RC1 – Admin bar admin/front color mismatchForum: Alpha/Beta/RC
In reply to: Editor is not workingslampty, which theme/plugins are you using? Does the same happens with no plugins and the default theme?
Forum: Alpha/Beta/RC
In reply to: WP Color Picker change eventHello renak,
the issue is, that the colorpicker doesn’t trigger the change event. You have to do this by yourself.
jQuery(document).ready(function( $ ) { $(document).on( 'ready widget-updated widget-added', function() { $('.control-section .color-field').each( function() { if ( ! $(this).data('wpWpColorPicker') ) { $(this).wpColorPicker( { change: _.throttle(function() { $(this).trigger( 'change' ); }, 3000) }); } }); }); });You should use
_.throttle[?] here, because every control change will fire an event immediately which ends in a previewer refresh. I used 3000 here, means the previewer will only refresh once in 3 seconds.Forum: Alpha/Beta/RC
In reply to: Add similar to attachment_fields_to_edit to Edit Image modal in TinyMCEThere is now a ticket: https://core.trac.wordpress.org/ticket/27698
Forum: Alpha/Beta/RC
In reply to: 3.9 beta 3 – tinymce not take style colors in the editor barCan explain the issue a bit more please? What is missing?
Forum: Alpha/Beta/RC
In reply to: 3.9 Beta 3 – Missing plugin modal styling congruenceHello Laurens,
thanks for the hint. I will handle this in #26952.
Forum: Alpha/Beta/RC
In reply to: Long Delays to Update Widget Preview with CustomizerHello mrwweb,
thanks for the report. Is it possible that you record a screencast which you can share with us?
If not, can you give use some more details about your setup? Which other widgets are you using? Any plugins active?
Thanks
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Use WP_DEBUG before update your pluginNote: With WordPress 3.9 and PHP 5.5 WordPress will use mysqli. You shouldn’t use any mysql_* functions directly. Use the wpdb API instead.
Forum: Alpha/Beta/RC
In reply to: prepend_attachment() does not handle all MIME types, e.g., "text"Hello David,
thanks for the report. I have created a ticket for that: https://core.trac.wordpress.org/ticket/27634
Are you using wp-cli?
If yes, see https://core.trac.wordpress.org/ticket/16953#comment:105.
That’s an expected behavior.
When you add a value to an input element you should always trigger a change event.Which theme/plugin/widget are you using?
Forum: Alpha/Beta/RC
In reply to: Widgets Customizer Not Loading Widget Styles and ScriptsCreated a ticket: https://core.trac.wordpress.org/ticket/27619
Forum: Alpha/Beta/RC
In reply to: Widgets Customizer Not Loading Widget Styles and ScriptsThanks for the report, DaveE. I’m looking into this.
Forum: Alpha/Beta/RC
In reply to: editor not visiblePlease use your browser to diagnose JavaScript errors and report them here.