BrenFM
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Chrome and flash uploaderyup – had/having the same issue too – noted on this thread: this thread.
Anyone found any work around. P!$$3$ me off having to open another browser just to upload multiple media files.
Hi theMaab
I came to the forums with the same issue. I seem to have resolved it by setting my dateFormat correctly. Hard to say if your issue is related without seeing you template.
what I found was that the dateFormat has to be in lowercase (I use yyyy/mm/dd for mine for easy sorting without converting the output in a wp_query call). If I set this to YYYY/MM/DD it breaks.
Does this help you at all?
Forum: Fixing WordPress
In reply to: flash uploader is not workingFYI: Still experiencing this issue and it’s NOT WordPress. I’ve got it in other software on Chrome too – including adding attachments in Gmail. Is Google getting on the anti-flash bandwagon too (a la Apple?)
Forum: Plugins
In reply to: [Custom Field Template] PHP Code in Select boxHAH! Just downgraded to v1.8.3 on this install and it works sweet again. DEFINITELY an issue with this plugin. Please, please, please review this bug.
Forum: Fixing WordPress
In reply to: flash uploader is not workingNope – no joy, but it’s certainly not broken in Firefox 4
Forum: Fixing WordPress
In reply to: flash uploader is not workingHi fswd
What browser are you using? There’s a post over here (https://www.ads-software.com/support/topic/chrome-flash-uploader-this-file-is-empty-please-try-another) that suggests it’s an issue with Chrome. I’m just about to try reinstalling too.
Forum: Fixing WordPress
In reply to: Insert/Edit Link missing "class" dropdown in 3.1Ok, found my own workaround by adding code to the functions file in my theme:
function custom_options( $opt ) { $opt['theme_advanced_buttons2_add_before'] = "styleselect"; $opt['theme_advanced_styles'] = 'Doc Link=doclink'; return $opt; } add_filter('tiny_mce_before_init', 'custom_options');
This adds a new drop down to the left of the format drop down (the paragraph, h1, h2 one).
After adding the link you’ll need to select the link of the text and THEN use the drop down to set the style. Instead of adding a class to the A, it wraps the link in a P tag that is given the style (in this case doclink). This means you’ll need to adjust your style sheet. Instead of using a.doclink, you’d use p.doclink a
Does that help anyone?
Forum: Fixing WordPress
In reply to: Insert/Edit Link missing "class" dropdown in 3.1Arrrrrrrrgh! Seriously??? I’ve got one heavily custom theme that’s had all sorts of issues with WP3.1 upgrade. This one is SUCH a pain. Anybody found any sort of work around?
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listDone! Look forward to hearing from you
Forum: Fixing WordPress
In reply to: Custom Post types, 3.1 and sorting by custom meta_key in Adminoh true… sorry kinda rushed into that answer without reading too closely! Apologies!
Forum: Hacks
In reply to: filter by postmeta/meta_valueNevermind… found your post over here Mark: https://www.ads-software.com/support/topic/parse_query-filter-changed-in-31 – thanks!
Forum: Hacks
In reply to: parse_query filter changed in 3.1 ?Thanks (again) t31os! That was starting to seriously bake my bacon!
Forum: Fixing WordPress
In reply to: Custom Post types, 3.1 and sorting by custom meta_key in AdminHay take a lookie over here:
https://www.ads-software.com/support/topic/parse_query-filter-changed-in-31The solution t31os came up with works like a charm.
Forum: Hacks
In reply to: filter by postmeta/meta_valueHad a filter working nicely using meta_keys previously. Upgraded to 3.1 and it’s broken (using the above examples)
Anyone else having this issue?
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listYeah this plugin sadly is quite light on documentation, but we’ve just launched a HUUUGE project that uses Custom Field Templates quite extensively, so if you have any more issues, just sing out!