Forum Replies Created
-
AuthorPosts
-
pixluser
ParticipantThat'll be awesome to get a true multipart system to use.
pixluser
ParticipantAdding relationship as a field is very important, used in conjunction with MB FRONTEND END POST using a custom redirection for (payments stuff), we only need to use one ID in the mb frontend end shortcode for the redirection to work normally…
pixluser
ParticipantHello Mr Long, Does this oxygen plugin is available now? thanks
January 31, 2025 at 9:05 AM in reply to: Frontend submission don't work on my website too… using latests versions. #47560pixluser
ParticipantThis post isn't resolved… I sent you infos as you asked me my servers infos. You can log in my wordpress Peter or Anh… thanks!
January 30, 2025 at 11:36 AM in reply to: Frontend submission don't work on my website too… using latests versions. #47557pixluser
ParticipantHello,
Please don't forget me (I sent you an email back (search my name) on elightup) because you asked me right to connect to my website.
thank you!
January 23, 2025 at 9:55 AM in reply to: Frontend submission don't work on my website too… using latests versions. #47520pixluser
ParticipantI've also set : max_input_vars to 15000
January 23, 2025 at 9:43 AM in reply to: ✅MB Frontend Submission stopped working in the latest weeks #47518pixluser
ParticipantI have the same problem too… I tryed by completely de-activating all plugins… title work, and text, but custom taxonomy and other fields don't work.
January 16, 2025 at 7:42 AM in reply to: image_advanced don't resize images like wordpress do. #47424pixluser
ParticipantI have pictures of more than 7000px width, and more than 25mo. Using image_advanced, using a script that search for pictures automatically and add them to the gallery for me.
Including picture links into the gallery by code for pictures that didn't came from the media library, can provoke that behaviour maybe?
thanks, gotta check it with the dev of the script.
January 15, 2025 at 11:36 AM in reply to: image_advanced don't resize images like wordpress do. #47413pixluser
Participantdo this code can work for me?
add_action('rwmb_after_save_field', function ($null, $field, $new, $old, $object_id) { // Only process 'image_advanced' fields if ($field['id'] === 'your_meta_field_id' && !empty($new)) { foreach ((array) $new as $image_id) { // Check if the image exists if (get_post_mime_type($image_id) === 'image/jpeg' || get_post_mime_type($image_id) === 'image/png' || get_post_mime_type($image_id) === 'image/webp') { // Generate WordPress standard sizes (thumbnail, medium, large) wp_create_image_subsizes(get_attached_file($image_id), $image_id); } } } }, 10, 4);January 15, 2025 at 11:33 AM in reply to: image_advanced don't resize images like wordpress do. #47412pixluser
ParticipantHere is the wordpress link to the command: https://developer.wordpress.org/reference/functions/wp_create_image_subsizes/
pixluser
ParticipantI've found a nice trick to add in functions.php
Before the loading was at least 10sec for around 5000 taxonomies items. Now it's 1-2sec.destination is my taxonomy slug:
add_filter('rest_destination_query', function ($prepared_args, $request) {
if (strpos($request->get_route(), '/wp/v2/') === 0) {
if ($prepared_args['number'] === 100) {
$prepared_args['number'] = 100000;
}
}
return $prepared_args;
}, 10, 2);Can be very nice to have it loaded by default when using a custom taxonomy!
pixluser
ParticipantI'm using a checkbox tree interface.
pixluser
ParticipantCan we have a reply from the team please!
thanks!
November 8, 2024 at 5:21 PM in reply to: ✅Fontend submission : classic type content -- convert to blocks? #46893pixluser
ParticipantHello Anh Tran,
Oh, that's a very good new, can't wait to discover its ergonomic.
Well done, and thanks!.pixluser
ParticipantPeter, here is a message that I receive from the Polylang team:
-------Sébastien replied
Nov 1, 12:15
Hello,I understand that you would like to have compatibility with Metabox.io. We made the technical choice to support and write compatibility for the ACF and ACF pro extensions which are the most used.
Our developers are in the process of rewriting the ACF and ACF Pro compatibility which is much more requested by our customers than Metabox.io. Furthermore, I just checked in our tickets and we have no trace of contact from anyone at Metabox.
If we do not plan to work on the subject ourselves, On the other hand, we are open to helping them accomplish the work. Do not hesitate to ask them to contact us directly on https://polylang.pro/Have a nice day
How would you rate my reply?
Great Okay Not GoodSébastien
-
AuthorPosts