Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
You can download the plugin here https://github.com/wpmetabox/mb-wpai
Please notice that, it is in the development phase and not published yet. If you have any questions, feel free to create an issue there.
February 22, 2024 at 8:43 PM in reply to: front end submission for post type does not auto refresh permalinks #44649Peter
ModeratorHello Nick,
It could be a caching issue on your site. I don't see that on my demo site. After creating the first post in the frontend, it is accessed properly.
Peter
ModeratorHello,
Please share your site URL, I will help you check whether the CSS and JS code is outputted in the frontend or not.
Peter
ModeratorHello,
The helper function rwmb_meta() helps you to get the value of the field ID, it's not the relationship. If you want to get the relationship, please follow the documentation
https://docs.metabox.io/extensions/mb-relationships/#getting-connected-itemsNote: supporting a customization code is beyond our scope of support. If you cannot complete the task, please contact us here https://metabox.io/contact/. We offer a customization service with an extra fee.
Peter
ModeratorHello John,
There isn't a filter hook or option to remove the save button with PHP code. You can use the CSS code to hide it or JS code to remove HTML button.
Peter
ModeratorHello,
The example in that topic uses the Twig code in MB Views and add the View shortcode to the Elementor Loop Grid, not the PHP code with a callback function.
If it blows the PHP memory limit, you can increase this value https://blog.hubspot.com/website/wordpress-php-memory-limit
If it still doesn't work, we offer a customization service with an extra fee. You can contact us here to get more details https://metabox.io/contact/
Peter
ModeratorHello Nick,
The function wpdb::insert() only returns the number of rows inserted or false. There isn't a function to handle the error if it is false. I will inform the development team to consider supporting this feature in future updates.
Following the documentation https://developer.wordpress.org/reference/classes/wpdb/insert/Peter
ModeratorHello Marcus,
You can follow an example here https://support.metabox.io/topic/display-mb-view-shortcode-in-an-elementor-loop-template/?swcfpc=1#post-44339
Peter
ModeratorHello,
Which is the field type
related_designer_id? Is this the post field? Please share some screenshots of the field settings.Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
and let me know how to see the issue on your site. I will take a look.February 20, 2024 at 8:58 PM in reply to: ✅File Upload - Binding Events - Multiple data-uploader's #44625Peter
ModeratorHello,
You can select a specific field ID with this code:
const myUploader = $( 'input.rwmb-file_upload.rwmb-media[name="file_upload_2"' ).data( 'uploader' );where
file_upload_2is the field ID.Peter
ModeratorHello,
You can find the test file here https://github.com/wpmetabox/mb-wpai/tree/master/tests
custom fields: products.test.php
import file: products.xmlPeter
ModeratorHello,
>> The problem is that it always works when there's a connection to be had.
You can try to check if two objects have a connection, please follow the documentation https://docs.metabox.io/extensions/mb-relationships/#has
If you want to use the cache, please use WordPress object cache https://developer.wordpress.org/reference/classes/wp_object_cache/
February 19, 2024 at 8:37 PM in reply to: Color Picker Custom Field for Elementor Dynamic Tags #44615Peter
ModeratorHello Will,
I can see the issue on my demo site and I've escalated this issue to the development team to check it. I will get back to you later.
Peter
ModeratorHello,
Yes, if you don't add a close div, it will add one automatically. However, you can add the close tag to another field, not the field where you add the open tag.
So you can wrap some fields in a div tag. -
AuthorPosts