Title: mdsabuz's Replies | WordPress.org

---

# mdsabuz

  [  ](https://wordpress.org/support/users/mdsabuz/)

 *   [Profile](https://wordpress.org/support/users/mdsabuz/)
 *   [Topics Started](https://wordpress.org/support/users/mdsabuz/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mdsabuz/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mdsabuz/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mdsabuz/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mdsabuz/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mdsabuz/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/mdsabuz/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mdsabuz/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mdsabuz/replies/page/2/?output_format=md)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Delete my account](https://wordpress.org/support/?post_type=topic&p=11256103)
 *  Thread Starter [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 2 months ago](https://wordpress.org/support/?post_type=topic&p=11256103#post-11256321)
 * Done!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Chunking](https://wordpress.org/support/topic/chunking-2/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/chunking-2/#post-11142277)
 * Chunking require update an update to entire plugin. Right now I don’t have any
   plan to do that!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Essential Addons for Elementor - Popular Elementor Templates & Widgets] The update has bugged the item “product gride”](https://wordpress.org/support/topic/the-update-has-bugged-the-item-product-gride/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/the-update-has-bugged-the-item-product-gride/#post-11120037)
 * Can you please provide us a live link to investigate?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] How to set default Typography?](https://wordpress.org/support/topic/how-to-set-default-typography/)
 *  Thread Starter [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/how-to-set-default-typography/#post-11092044)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Create new post after upload](https://wordpress.org/support/topic/create-new-post-after-upload/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/create-new-post-after-upload/#post-11051583)
 * Use 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', 'http://site_url/wp-admin/admin-ajax.
   php?action=fotoblog', true); xhttp.send(response.data);}"]`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Create new post after upload](https://wordpress.org/support/topic/create-new-post-after-upload/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/create-new-post-after-upload/#post-11049819)
 * Check this carefully
 * Shortcode
    `[wp-dropzone callback="success: function(file, response) {var xhttp
   = new XMLHttpRequest(); xhttp.open('GET', 'http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Extend Options](https://wordpress.org/support/topic/extend-options/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/extend-options/#post-10876822)
 * You’re welcome!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Where Did my upload go](https://wordpress.org/support/topic/where-did-my-upload-go/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/where-did-my-upload-go/#post-10869895)
 * Thank you for using this plugin.
 * I think you’ve turned on “Organize uploads into month- and year-based folders”
   in media settings.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Can I use Remote FTP destination Instead WP Upload Directory](https://wordpress.org/support/topic/can-i-use-remote-ftp-destination-instead-wp-upload-directory/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/can-i-use-remote-ftp-destination-instead-wp-upload-directory/#post-10869891)
 * Sorry! There is no such way to upload “Remote FTP” right now. The plugin uploads
   file only to media library(wp-content folder)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Extend Options](https://wordpress.org/support/topic/extend-options/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/extend-options/#post-10869888)
 * Try like this: [wp-dropzone callback=”dragEnter: function() { console.log(file)}”]
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Resize problem](https://wordpress.org/support/topic/resize-problem-2/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/resize-problem-2/#post-10707524)
 * Hi! Can you please post the same issue on dropzone [github page](https://github.com/enyo/dropzone)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Nominate location of uploaded file](https://wordpress.org/support/topic/nominate-location-of-uploaded-file/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/nominate-location-of-uploaded-file/#post-10625027)
 * You are welcome!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Nominate location of uploaded file](https://wordpress.org/support/topic/nominate-location-of-uploaded-file/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/nominate-location-of-uploaded-file/#post-10624952)
 * Hi!
    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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Dropzone] Drag and drop to customer portal page](https://wordpress.org/support/topic/drag-and-drop-to-customer-portal-page/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/drag-and-drop-to-customer-portal-page/#post-10609144)
 * Please 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Outfit Photos for WooCommerce] Free version style gallery](https://wordpress.org/support/topic/free-version-style-gallery/)
 *  [mdsabuz](https://wordpress.org/support/users/mdsabuz/)
 * (@mdsabuz)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/free-version-style-gallery/#post-10461115)
 * Thank you for your valuable opinion.
 * I’ve noted this for future update! Feel free to submit any other bugs on this
   forum.
 * Cheers!

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/mdsabuz/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mdsabuz/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/mdsabuz/replies/page/2/?output_format=md)