mdsabuz
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Delete my accountDone!
Forum: Plugins
In reply to: [WP Dropzone] ChunkingChunking require update an update to entire plugin. Right now I don’t have any plan to do that!
Can you please provide us a live link to investigate?
This is not the thing I am looking for. I asked the proper way to set default typography options in Group_Control_Typography. The code I mentioned earlier works. But this do not load the font for the first time. If I click on the typography option, then the default option starts working.
Forum: Plugins
In reply to: [WP Dropzone] Create new post after uploadUse POST method instead of GET. and pass object data inside send method.
Example:
[wp-dropzone callback="success: function(file, response) {var xhttp = new XMLHttpRequest(); xhttp.open('POST', 'https://site_url/wp-admin/admin-ajax.php?action=fotoblog', true); xhttp.send(response.data);}"]
Forum: Plugins
In reply to: [WP Dropzone] Create new post after uploadCheck this carefully
Shortcode
[wp-dropzone callback="success: function(file, response) {var xhttp = new XMLHttpRequest(); xhttp.open('GET', 'https://site_url/wp-admin/admin-ajax.php?action=fotoblog', true); xhttp.send();}"]
functions.php
add_action( 'wp_ajax_fotoblog', 'fotoblog' ); function fotoblog() { $post = array( 'post_title' => 'My Title', 'post_content' => 'My Content', 'post_status' => 'publish', 'post_type' => 'post' ); wp_insert_post($post); wp_die(); }
Forum: Plugins
In reply to: [WP Dropzone] Extend OptionsYou’re welcome!
Forum: Plugins
In reply to: [WP Dropzone] Where Did my upload goThank you for using this plugin.
I think you’ve turned on “Organize uploads into month- and year-based folders” in media settings.
Forum: Plugins
In reply to: [WP Dropzone] Can I use Remote FTP destination Instead WP Upload DirectorySorry! There is no such way to upload “Remote FTP” right now. The plugin uploads file only to media library(wp-content folder)
Forum: Plugins
In reply to: [WP Dropzone] Extend OptionsTry like this: [wp-dropzone callback=”dragEnter: function() { console.log(file) }”]
Forum: Plugins
In reply to: [WP Dropzone] Resize problemHi! Can you please post the same issue on dropzone github page
Forum: Plugins
In reply to: [WP Dropzone] Nominate location of uploaded fileYou are welcome!
Forum: Plugins
In reply to: [WP Dropzone] Nominate location of uploaded fileHi!
At this moment there is no way to do this with this plugin. But a little hack should do the work. You can change the upload dir path to your desired.Forum: Plugins
In reply to: [WP Dropzone] Drag and drop to customer portal pagePlease check “guest-upload” feature. To get the ID of attachment, use callback feature as described in plugin homepage. To get a logged in user id use get_current_user_id() function.
Forum: Plugins
In reply to: [Outfit Photos for WooCommerce] Free version style galleryThank you for your valuable opinion.
I’ve noted this for future update! Feel free to submit any other bugs on this forum.
Cheers!