koendoit
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Custom Date Fields MissingSame here, check image: https://bigfat.nl/app/uploads/2024/11/Screenshot-from-2024-11-12-16-42-48.png
Nevermind, got it working ??
Forum: Plugins
In reply to: [Crop-Thumbnails] cropping no longer possible after update – server errorHi @volkmar-kantor,
For me it’s a conflict with another plugin: https://roots.io/products/soil/. If you scroll down to the section: Root relative URLs, that’s the problem. When I disable this, everything works fine.
Thanks for your time.
Forum: Plugins
In reply to: [Crop-Thumbnails] cropping no longer possible after update – server errorHi @volkmar-kantor ,
Isn’t it? I also get the server error popup mentioned in the first post: https://ibb.co/zfZPbTq console log: https://ibb.co/9TZ6DJF.
If it isn’t, I will start a new thread.
Thanks for your time.
Forum: Plugins
In reply to: [Crop-Thumbnails] cropping no longer possible after update – server errorHi,
I also have a problem after the update; I get the error that there is no access to the endpoint: https://ttb.nl/wp-json/crop_thumbnails/v1/crop. I am logged in as an admin.
Cropping is no longer possible; I saw that you made an update with the REST API, mayby somting whet wrong?
Thanks,
KoenFound the solution! CPT needed to have a public status
Forum: Plugins
In reply to: [Adminimize] Error in new AdminimizeWe are having the same error also looks like the line is a duplicate of the one below.
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Update 3.1.4 causes error if role doesn’t existSame problem.
$editor->add_cap( ‘hicpo_load_script_css’ );
Thanks works ??
I did also a test on a custom post type, there it is working. but for a custom taxonomy it is not working. There a get the error: Uncaught ReferenceError: CROP_THUMBNAILS_VUE is not defined
Thanks for your time!
<script> jQuery(document).ready(function($) { //add a button right beside the add media button - adjust if you want the button somewhere else let $hidden = $('.acf-image-uploader > input[type=hidden]'); if($.isNumeric($hidden.val())) { $('.acf-image-uploader').append('<div style="display: flex; width: 100%; padding-top: 15px;"><button type="button" id="myCustomButton" class="button button-primary">Afbeelding croppen</button></div>'); let $imageValue = $hidden.val(); $('#myCustomButton').click(function() { /** * the ID of the image you want to open * you may want to read the value by javascript from somewhere **/ let attachementId = $imageValue; /** the posttype decides what imagesizes should be visible - see settings **/ // let postType = 'producten_categories'; /** the title of the modal dialog */ let title = 'test'; /** lets open the crop-thumbnails-modal **/ let modal = new CROP_THUMBNAILS_VUE.modal(); modal.open(attachementId, title); }); } }); </script>
- This reply was modified 4 years ago by koendoit.
Forum: Plugins
In reply to: [Snazzy Maps] removed from wordpress?Thanks ??