Dominik Schilling
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: WordPress 3.5 > where the option settings->media->upload_path gone !?Excuse me, but I really don’t understand this choice.
Why hard-coding options is better than leaving people free to decide ?
It seems like a step behind to me.There is nothing hard-coded. It’s the same as before, just the UI is gone. The reason was mentioned in the commit:
“WordPress should aim to avoid UI options that require filesystem changes as well, not to mention requiring the user to convert between paths and URLs.”Plus, why you removed this option from the admin whithout adding a “define” in wp-config like:
If we would to this for each constant the config would be to confusing for new users.
I don’t understand the explanations of the link you gave me, maybe I am wrong and a way to change the UPLOADS costant do exist ?
See http://codex.wordpress.org/Function_Reference/wp_upload_dir
“If the ‘UPLOADS’ constant is defined, then it will override the ‘upload_path’ option and ‘WP_CONTENT_DIR/uploads’ path.”
So your
define('WP_UPLOAD_PATH', '***');isdefine('UPLOADS', '***');Forum: Alpha/Beta/RC
In reply to: Editing Images in 3.5No, you aren’t missing something. The image editor is not implemented in the new media workflow. That will be something for 3.6 (or a plugin in 3.5).
As mmcginnis has mentioned, you can do this now via the new singe attachment editing screen. (-> Media Library and click the edit link).
Forum: Alpha/Beta/RC
In reply to: Tabbing between Title/Caption on Add Media screen not workingConfirmed and reported on trac: https://core.trac.wordpress.org/ticket/22659
think the default text for the Caption should disappear on focus, rather than when the user starts typing… just me?)
That’s how HTML5’s placeholder attribute works.
Forum: Alpha/Beta/RC
In reply to: title attribute in inserted imagesForum: Alpha/Beta/RC
In reply to: Add Media and Featured Image buttons not workingCache cleared? Any errors in the browser error log? Which browser/OS?
Forum: Alpha/Beta/RC
In reply to: WordPress 3.5 > where the option settings->media->upload_path gone !?It has been removed.
These can be set on options.php, or the UPLOADS constant or the filters in wp_upload_dir() should be used.
Forum: Alpha/Beta/RC
In reply to: Twenty Twelve Fly-out menu bugCould you please do the same as nacin asked in http://wordpress.org/support/topic/flyout-menus-35-rc12?replies=8
Forum: Alpha/Beta/RC
In reply to: Warning in WP 3.5 RC2You should report this to the plugin author.
Background: https://core.trac.wordpress.org/changeset/22429
Forum: Alpha/Beta/RC
In reply to: media-frame gallery doesnt just save the fieldsConfirmed. Thanks for the report.
Forum: Alpha/Beta/RC
In reply to: 3.5 RC1 Multisite Image Uploader (Browser Uploader) ErrorYes, that’s a known bug, see https://core.trac.wordpress.org/ticket/22572.
Forum: Alpha/Beta/RC
In reply to: Doesnt save custom field data in media-frameShould be fixed in the next nightly, see https://core.trac.wordpress.org/ticket/22577
Forum: Alpha/Beta/RC
In reply to: Can't update attachment fieldsForum: Alpha/Beta/RC
In reply to: Media Insert ID's and Removal of Imagealso if you want to remove an image from the gallery you have to recreate the gallery with the image you dont want.
In the visual editor should be an edit icon. It opens the media modal and you can deselect the image.
Forum: Alpha/Beta/RC
In reply to: 3.5RC1, Media: inconsistent, uploading with old skool browser uploaderThat’s more or less by design. The browser uploader is only a fallback without the full functionality, which the normal uploader offers.
Forum: Alpha/Beta/RC
In reply to: WP 3.5-RC1 – Embed options missing on media settings pageThe settings have been removed.
The width can be customized by the global variable
$content_width. The height is now calculated as 1.5x the content width, or 1000px, whichever is smaller.And you can still use the
[embed]shortcode to define the height and width.Background:
https://core.trac.wordpress.org/ticket/21719
https://core.trac.wordpress.org/changeset/21998