Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello there,
I think it is possible. But this is an advanced case and you need to create some custom code to check the customer info (data, name ...) to get the field value and populate it to the new order.
If you don't know how to do that, please contact us here https://metabox.io/contact/
Our development team will help you with a small fee.Peter
ModeratorHello Olivier,
Yes, it is possible to upgrade the license. Please contact us here https://metabox.io/contact/
Our support team will help you to do that.February 18, 2023 at 10:25 PM in reply to: MB slows down site and editing pages + doesn't seem to save in custom table #40595Peter
ModeratorHello,
I do not see that issue on my end. Deactivating all plugins and leaving Meta Box, MB AIO activated, I see the loading time is good. Please check this screen record https://monosnap.com/file/F1rfxYo7SqXQ9HTRdlNnPsjEzMeMNm
Peter
ModeratorThanks for sharing your solution ๐
Peter
ModeratorHello Macky,
Which data do you need to update in the field group? A field group actually is a post that saves field and meta box settings. But it might be complicated if you want to update something in a field group.
I think your code can trigger the function wp_update_post and work correctly.Peter
ModeratorHello,
It looks like a WordPress basic question. You can edit a term and get the term ID in the URL, parameter tag_ID. For example, the term ID in this case is 2.
wp-admin/term.php?taxonomy=category&tag_ID=2&post_type=postAlso, please let me know the custom field here is assigned to what object. Term or post?
Peter
ModeratorHello Cees,
Please add the attribute link="false" to the relationship shortcode to remove links to items.
[mb_relationships id="post-to-page" direction="from" mode="custom" separator="-" link="false"]Peter
ModeratorHello Cees,
Please change the mode to
customto use the custom separator. I will update the documentation then. Thanks.[mb_relationships id="event-to-musici" direction="from" mode="custom" separator="-"]February 17, 2023 at 10:09 PM in reply to: Gutenberg Block with Relation does not work anymore #40576Peter
ModeratorHello,
I'm sorry about that, there was an issue with our ticket system. Can you please send the info again?
February 16, 2023 at 11:02 PM in reply to: AJAX submission no longer redirects after AIO update #40565Peter
ModeratorHello Stephen,
I do not see any issue with the setting
ajax="true"when using the frontend submission shortcode. There are some updates to the form and you can read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#submission-formYou can try to deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress and recheck this issue on your site.
Peter
ModeratorHello,
If the single image is a term meta field, you also need to add the setting
'object_type' => 'term'to the second parameter and add the term ID to the third parameter to output the image.For example:
rwmb_meta( 'custom_field_item', ['size' => 'thumbnail', 'object_type' => 'term'], 123 )where 123 is the term ID.
Please read more on the documentation https://docs.metabox.io/extensions/mb-term-meta/#getting-field-value
Peter
ModeratorHello,
Please move the
returnstatement outside of the conditionifstatement and check the title again.add_filter( 'rwmb_frontend_post_title', function( $field ) { if ( is_page( "Green Care Sub Site Form" ) ) { $field['required'] = true; $field['name'] = 'Name of Green Care Sub Site'; } return $field; } );Peter
ModeratorHello Sam,
Meta Box custom fields actually do not work on the frontend. It is designed to work on the backend to input the value and output it on the frontend. I will inform the development team to consider supporting this case in future updates.
You can submit a customization service with an extra fee to make it works on the frontend by submitting form here https://metabox.io/contact/.Peter
ModeratorHello,
Thanks for your feedback.
I've added this to the task and sent it to the development team. They will work on it and I will let you know when I have any information.
February 16, 2023 at 10:11 PM in reply to: Issue with DateTime Picker Metabox field. ( it adds 5:30 hours to correct time ) #40559Peter
ModeratorHello,
I've tested this case on my local site but do not see that issue. Can you please share some screenshots when you select the date time and output the field value? How can I reproduce the issue on my site?
-
AuthorPosts