attachments icon indicating copy to clipboard operation
attachments copied to clipboard

[WordPress Plugin] Attachments allows you to simply append any number of items from your WordPress Media Library to Posts, Pages, and Custom Post Types

Results 34 attachments issues
Sort by recently updated
recently updated
newest added

When I erase an image in backend, it disappears. then by reloading the media page, it is still there, if I click on detail, I have a gray icon default,...

While deleting a media, you might get an error about classes/class.attachments.search.php:64 count() expecting an array and getting a null value. The $params['fields'] var might be an array or a null...

I have an issue. Attachments were working fine in my webpage. For some reason it stopped working. I can upload the attachments as you can see in this screenshot ![image](https://user-images.githubusercontent.com/37183981/99790233-18cf7c00-2b24-11eb-9dcf-272f1f91b6dd.png)...

Hi! after a virus and restoring a backup, I couldnt see attachmant boxes in my post types at all. I solve the problem following the guide here. Now I see...

For custom post type - retrieving attachments don't work ```php $query = new WP_Query([ 'post_type' => 'news', 'posts_per_page' => 5, ]); echo ''; print_r($query->posts); echo ''; wp_reset_query(); $attachments = new...

In /fields/class.field.wysiwyg.php at line 138 replace the existing line return wp_richedit_pre( $value ); with this return format_for_editor( $value ); because wp_richedit_pre is deprecated from version 4.3.0

Hi, when adding a file, the predefined title is not adapted to the generated field html, if the site language is not English. The cause is in the `html( $default...

The original implementation was not correct because it was passing an unexpected value to the method "field" (it expects the field name). The proposed implementation is a bit tricky because...