1ucay

Results 53 comments of 1ucay

Hello, thank you for your reply. It's a little confusing. So Dompdf is set to 96 dpi by default? So I have to set it to 72? But for me...

for me not working...my code, where pattern order doesn't matter. tag pattern is fallback, where JS can be disabled. self.fields = Array.from(form.querySelectorAll(SELECTOR)).map(function (input) { var fns = []; var params...

With image upload and all blocks

Advanced Custom Fields shows custom FORM fields ( textarea, tinymce wysiwyg, radio, checkbox, file input, gallery with images, etc..) in backend of WordPress. More in video => https://youtu.be/eMCOE9x5mCc?t=260. In video...

Problem is, that you can create multiple same fields types on same page. I dont know, if your solution is ready for this. Thank you.

Hi, we have support for block editor via this plugin https://www.acf-extended.com/changelog Thank you.

I just added compatibility with Enable Media Replace ``` add_action( 'enable-media-replace-upload-done', array($this,'enable_media_replace_upload_done'), 10, 2 ); public function enable_media_replace_upload_done( $new_guid, $current_guid ) { $attachment_id = attachment_url_to_postid( $new_guid ); if ( $attachment_id...

Please replace with new function ``` public function hash_attachment( $attachment_id ) { $wp_error = new \WP_Error(); $file = false; if ( function_exists( 'wp_get_original_image_path' ) ) $file = wp_get_original_image_path( $attachment_id );...

Hi, sorry for long delay ! 1) Sometimes, if i had to migrate large web to wordpress, im using https://wordpress.org/plugins/import-external-images/ Plugin use func media_handle_sideload What about add option "Regenerate hash"...

` add_action('admin_head-upload.php', array( $this, 'add_bulk_actions_via_javascript')); add_action('admin_action_bulk_force_regenerate_hash', array( $this, 'bulk_action_handler')); add_action('admin_action_-1', array( $this, 'bulk_action_handler')); /** * Add "Force Regenerate Hash" to the Bulk Actions media dropdown * * @param array $actions...