Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 41 total)
  • Author
    Posts
  • in reply to: Multi-Step Forms #47988
    pixluserpixluser
    Participant

    That'll be awesome to get a true multipart system to use.

    in reply to: Add more fields to a relationship #47965
    pixluserpixluser
    Participant

    Adding 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…

    in reply to: Oxygen and Metabox - Adding Fields #47683
    pixluserpixluser
    Participant

    Hello Mr Long, Does this oxygen plugin is available now? thanks

    pixluserpixluser
    Participant

    This 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!

    pixluserpixluser
    Participant

    Hello,

    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!

    pixluserpixluser
    Participant

    I've also set : max_input_vars to 15000

    pixluserpixluser
    Participant

    I 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.

    in reply to: image_advanced don't resize images like wordpress do. #47424
    pixluserpixluser
    Participant

    I 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.

    in reply to: image_advanced don't resize images like wordpress do. #47413
    pixluserpixluser
    Participant

    do 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);
    in reply to: image_advanced don't resize images like wordpress do. #47412
    pixluserpixluser
    Participant

    Here is the wordpress link to the command: https://developer.wordpress.org/reference/functions/wp_create_image_subsizes/

    in reply to: Custom hierachical taxonomy drop down is very slow #47040
    pixluserpixluser
    Participant

    I'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!

    in reply to: Custom hierachical taxonomy drop down is very slow #47039
    pixluserpixluser
    Participant

    I'm using a checkbox tree interface.

    in reply to: Polylang and Metabox compatibility #46894
    pixluserpixluser
    Participant

    Can we have a reply from the team please!

    thanks!

    pixluserpixluser
    Participant

    Hello Anh Tran,

    Oh, that's a very good new, can't wait to discover its ergonomic.
    Well done, and thanks!.

    in reply to: Polylang and Metabox compatibility #46821
    pixluserpixluser
    Participant

    Peter, 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 Good

    Sébastien

Viewing 15 posts - 1 through 15 (of 41 total)