Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Olivier,
WordPress itself does not support ordering by the post_title of the returned meta_value like that. You need to create your own SQL query to join values from more tables.
June 6, 2022 at 9:17 PM in reply to: How to retrieve and update custom field via API (shop_coupon) #36338Long Nguyen
ModeratorHi,
Please follow this documentation to know how to update the field value via WP Rest API https://docs.metabox.io/extensions/mb-rest-api/
Long Nguyen
ModeratorHi,
The development team is working on this issue. I will inform you if I have any information.
Thanks for your patience.
Long Nguyen
ModeratorHi,
Thank you for following up.
Due to the large of feature requests, we are not able to give the ETA for this one. Hopefully, it will be available soon.
Long Nguyen
ModeratorHi,
I do not see the redirect function in your code. If you only want to send an email after submitting the form, please remove this code
die;Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#form-hooks
Long Nguyen
ModeratorHi Greg,
Here are the screenshots https://imgur.com/a/XtVAbWf
The date format option works with the Beaver builder as well.June 6, 2022 at 5:32 AM in reply to: What to do that a post type is not getting a single page #36329Long Nguyen
ModeratorHi Tobias,
Do you mean to not give the post type permalink to access the single post type page and archive page? But still queryable? Please refer to this topic https://wordpress.stackexchange.com/questions/108652/remove-custom-post-type-permalink
Long Nguyen
ModeratorHi,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/June 3, 2022 at 3:20 PM in reply to: Front end forms, taxonomy fields, and entering multiple new terms #36313Long Nguyen
ModeratorHi,
Thanks for your feedback.
Currently, field
taxonomyonly supports adding one term when submitting the post. I will inform the development team to consider supporting adding more terms in future updates.Long Nguyen
ModeratorHi,
The plugin WP Mail SMTP just helps you to configure WordPress to use a proper SMTP provider when sending emails with the function
wp_mail()as in the documentation. So I think it's not the issue in this case. If you deactivate this plugin, is the issue resolved?June 3, 2022 at 12:44 PM in reply to: ✅From 100 Queries Backend WP to 300-350 by activating AIO #36309Long Nguyen
ModeratorHi,
It is noted in the documentation, point E, but for the code only, not the builder.
https://docs.metabox.io/extensions/mb-custom-table/#notesLong Nguyen
ModeratorHi,
Thanks for your additional information.
Please share your site credentials via this contact form https://metabox.io/contact/, I will take a closer look.
Long Nguyen
ModeratorHi,
I'm not sure why this does not work on your site, you can try to use the absolute URL and real value like this
esc_url( add_query_arg( 'residence', 'my-value', 'https://yoursite.com/actualite/' ) )to check if works. Or add variables directly in the URL and access the page
https://yoursite.com/actualite/?residence=my-valueLong Nguyen
ModeratorHi,
If the checkbox list is a field in a settings page, the code should be
<?php $teams = rwmb_meta( 'team_group', ['object_type' => 'setting'], 'custom_settings' ); $values = $teams['team_member_position']; ?> <ul> <?php foreach ( $values as $value ) : ?> <li><?= $value ?></li> <?php endforeach ?> </ul>Long Nguyen
ModeratorHi,
The field video does not have an option to change the time duration format, I will inform the development team to explore the possibility.
-
AuthorPosts