Forum Replies Created
-
AuthorPosts
-
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.Peter
ModeratorHello Adam,
The default select field type of the post field is Select Advanced, and it uses Ajax to get and show the data. So there are two parts: PHP code, which you are extending to use the field structure and Javascript code to trigger the Ajax and send the data to PHP.
You need to create your own JS code to create Ajax to handle click and return data to the custom Post field. It could be a little bit complicated, please take a look at the file
/wp-content/plugins/meta-box/js/select-advanced.js
and documentation https://developer.wordpress.org/plugins/javascript/ajax/Peter
ModeratorHello Alan,
Can you please share some screenshots of the field group, settings page and issue on your site?
Peter
ModeratorHello Topher,
If you add the WP Query with relationship parameter to the post template in the theme file without using your custom plugin to show the relationship, does it work?
February 18, 2024 at 9:15 PM in reply to: ✅This plugin failed to load properly and is paused during recovery mode. #44603Peter
ModeratorHello John,
Please deactivate the plugin Agency Base and recheck this issue.
February 18, 2024 at 9:10 PM in reply to: ✅The option for Prepended permalink structure is not working #44602Peter
ModeratorHello,
I will inform the development team to update the description of this field in future updates.
Thank you.
February 18, 2024 at 9:05 PM in reply to: ✅Custom table field to have same value as post title #44601Peter
ModeratorHello,
If you don't use the action hook
rwmb_after_save_post, you can use the hook save_post. There isn't an option to save a field value with another field value without using code.February 16, 2024 at 10:37 PM in reply to: ✅Views Shortcode in Elmntr Group Skin displays all array values in every instance #44591Peter
ModeratorHello,
If you use the code to display the subfield value in a group, you can add the View shortcode to the post content or post template directly without adding it to the MB Group Skin template.
Let me know how it goes.
Peter
ModeratorHello,
Currently there isn't an option to move a custom field between field groups. I will inform the development team to consider supporting this feature in future updates.
February 16, 2024 at 10:22 PM in reply to: ✅Post Type + Template Bricks Builder + Page for menu = no CSS on active page menu #44587Peter
ModeratorHello,
In the case of using Bricks 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/If you want to use the code to output the settings page value, please follow the documentation https://docs.metabox.io/extensions/mb-settings-page/#data
-
AuthorPosts