David Frank
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Forms] [Plugin: WordPress Google Form] Checkbox handling is incorrectactually, i think you forget to re-populate the checkbox (for incomplete submission)?
Forum: Plugins
In reply to: [Google Forms] [Plugin: WordPress Google Form] Checkbox handling is incorrectnice fix on passing argument, on my side I end up working around it by modifying how wp_remote_post works (change core, which is a bad idea).
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Conflict with Faster Imager Insert PluginHi All,
I have been looking into the conflict between CPT and FII that cause multiple insert to fail, currently a resolution looks difficult (not possible without plugin author’s collaboration), here is why:
FII use a little trick to allow it to send newline into the editing panel, this requires a filter to overcome the current media manager insert limit:
//used for passing content to edit panel. function fast_insert_to_editor($html) { ?> <script type="text/javascript"> /* <![CDATA[ */ var win = window.dialogArguments || opener || parent || top; win.send_to_editor('<?php echo str_replace('\\\n','\\n',addslashes($html)); ?>'); /* ]]> */ </script> <?php exit; }
on the other hand, CPT utilize their own trick as well:
function media_send_to_custom_field($html) { $out = '<script type="text/javascript">' . "\n" . ' /* <![CDATA[ */' . "\n" . ' var win = window.dialogArguments || opener || parent || top;' . "\n" . ' if ( typeof win.send_to_custom_field == "function" ) ' . "\n" . ' win.send_to_custom_field("' . addslashes($html) . '");' . "\n" . ' else ' . "\n" . ' win.send_to_editor("' . addslashes($html) . '");' . "\n" . '/* ]]> */' . "\n" . '</script>' . "\n"; echo $out;
What this means is that only one of the plugin can be in charge of sending the data to editing panel. Unless there is a compatible way of doing so, user has to pick one plugin’s functionality over the other.
flick’s workaround comes at a price, but if you are not using CPT’s insert function that extensively, it’s an acceptable price.
I really hope WP3.3 improve its media manager in the “editing” direction, but as far as I can tell with 3.3 beta2, their focus has been the uploader.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Conflict with Faster Imager Insert PluginI think this issue has been visible enough to worth an investigation.
Will work on it when I have time, let us know how did you insert the image with CPT? Is it still through the same editing panel like normal?
We had a workaround in FII 1.x series but apparent it breaks somewhere along the line…
hi metoo55, look at the screenshot closer again, you will see the “show all tabs” link above the list of images.
using wordpress 3.0+?
https://s.www.ads-software.com/extend/plugins/faster-image-insert/screenshot-1.png?r=348006
take a look at the screenshot, it’s built-in at gallery tab, at the top (“all tabs: show”).
Forum: Plugins
In reply to: [Plugin: Faster Image Insert] Feature requestthis will be implemented in next release, stay tuned.
Forum: Plugins
In reply to: [Plugin: Faster Image Insert] feature requestgiven the bulit-in gallery is displayed using shortcode, ie. [gallery], I don’t think faster image insert can do much about that. (we avoid messing with shortcode to keep the plugin completely backend)
you should look into custom shortcode to achieve that.
Forum: Plugins
In reply to: [Plugin: Faster Image Insert] Insert Multiple Images button missing in 2.8.4I sure hope it’s a bug in safari, I used safari 4.0.2 (on windows) to check, and it’s all good.
Forum: Plugins
In reply to: [Plugin: Faster Image Insert] Size of FII boxtry to answer all of your questions within one reply:
1. no, I don’t think the size of metabox is adjustable, at least not horizontally.
2. the unique link feature should be doable, wait till I find the time.
3. no, image inserts at the cursor position, what plugin are you using ?
4. you should look into wordpress shortcode if you want a gallery with different behaviour.please put all your requests in one thread next time, cheers.
Forum: Fixing WordPress
In reply to: New Post and New Page missing after updating to 2.8.1please consult the faq.
https://www.ads-software.com/extend/plugins/faster-image-insert/faq/
it’s also in the readme.txt
Forum: Fixing WordPress
In reply to: New Post and New Page missing after updating to 2.8.1thanks sdprogress, i checked ozh’ plugin, its a conflict within wordpress core JS libraries, between “schedule” and “farbtastic”. A resolution will be to deregister “farbtastic” appropriately, as wp_enqueue_script registers known libraries globally.
Forum: Plugins
In reply to: [Plugin: Faster Image Insert] Uploads don’t go to the galleryI suggest the following checks:
1. check your chrome’s javascript console, it’s within the developer tab. see if it reports any significant warnings.
2. uninstall the plugin’s options via its settings page.
3. check you have correctly uploaded the images, ie. thumbnails should be generated.
4. if you are using chrome v3.0, try a stable version or firefox, as alpha software can be problematic (I use v2.0, but can’t reproduce the problem)Forum: Plugins
In reply to: [Plugin: Faster Image Insert] Highslidethis plugin insert images via default wordpress media manager, which doesn’t have such functions. But I bet a Highslide plugin exists to do the trick.
if you know some basic javascript, try modifying the theme to include Highslide script, and limit the effect to a certain classname, so all thumbs with (or within) such classname will have Highslide function.
Forum: Fixing WordPress
In reply to: New Post and New Page missing after updating to 2.8.1@ilovecolors
do i you mind describing it in details, which “New Post and New Page sections” ? the ones on the sidebar ?I personally can not reproduce this problem. do you mind testing it without other wordpress plugins (to rule out any plugin conflicts) ? clear your browser’s cache (as well as google gears’, if you have them)