Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Maz,
Please follow the step Debugging Information here https://support.metabox.io/topic/how-to-create-a-new-topic/
and let me know how it goes.Long Nguyen
ModeratorHi,
Please try to deactivate all plugins except Meta Box, MB extension, and switch to the default theme of WordPress (Twenty TwentyOne) to re-check the issue.
You can find more info in this article https://www.computer-geek.net/admin-seeing-submit-for-r-va-106.html
Long Nguyen
ModeratorHi,
There are some plugins that help you to rename the file uploaded. Please try this one https://wordpress.org/plugins/media-file-renamer/
Long Nguyen
ModeratorHi,
The field
discord_usernameis set to show before the fieldfirst_namein the admin columns, but does the fieldfirst_nameshow in the admin columns?Can you please try to set the position before/after columns
usernameemailrole?Long Nguyen
ModeratorHi,
It's the cloneable setting, find it here https://docs.metabox.io/cloning-fields/.
If you are using the Builder, please check option Cloneable, screenshot https://share.getcloudapp.com/Z4uoAB5W
Long Nguyen
ModeratorHi Chris,
Please follow the Debugging Information here https://support.metabox.io/topic/how-to-create-a-new-topic/
and let me know how it goes.April 24, 2021 at 12:40 PM in reply to: ✅Display URL custom field as a button dynamically without using a page builder #27591Long Nguyen
ModeratorHi,
You need to show the field value in the attribute
hrefof the<a>tag to make it clickable. Just like<a href="<?php echo rwmb_meta( 'field_url_id' ) ?>">Button Link</a>or create your own shortcode to use the shortcode in the editor https://codex.wordpress.org/Shortcode_API
April 24, 2021 at 10:43 AM in reply to: ✅Custom field wysiwyg break woocommerce product field #27590Long Nguyen
ModeratorHi,
Thank you for your feedback.
I've escalated this issue to the development team. They will ship an update to fix it as soon as possible.
Long Nguyen
ModeratorHi,
Please update the newest version of MB Frontend Submission 3.1.0 to fix this issue.
April 24, 2021 at 10:34 AM in reply to: ✅Trying to pull the URL for a file upload from Settings Page using Shortcode #27588Long Nguyen
ModeratorHi,
No need to create a custom function, you just need to create a loop in View, see more on this topic https://support.metabox.io/topic/display-multiple-media-files-connected-to-a-user/
{% for item in post.file_upload_id %} <img src="{{ item.url}}"> {% endfor %}There is a file type
imagethat works similar tofile_upload, it allows the user to upload the image file without accessing the Media Library but themultiplesetting also set totruefor this field.Long Nguyen
ModeratorHi Ritz,
Thank you for reaching out.
The plugin MB Frontend Submission has not supported to integrate with Google Sheets yet. I will inform the development to explore the possibility.
Long Nguyen
ModeratorHi Clay,
To use a third-party plugin in View, you can create your own function then call it via the proxy
mb.function_name(). Get more details on the documentation https://docs.metabox.io/extensions/mb-views/#running-php-functionsApril 23, 2021 at 12:37 PM in reply to: ✅Rendering a Custom Post type Loop in Gutenberg using a shortcode #27559Long Nguyen
ModeratorHi Cody,
Your code is missing the closing curly bracket
}of the args variable{% set args = {post_type: 'food-menu-item'} %}Please add it and re-check the issue.
Long Nguyen
ModeratorHi,
It's the permalink of the post. I think you can change it when using the Template PHP option of Oxygen, find it here https://oxygenbuilder.com/documentation/builder-elements/easy-posts/
Long Nguyen
ModeratorHi Will,
There are two ways to do something after saving Settings page.
- Hook a function to the action
rwmb_{$meta_box_id}_after_save_postwith the latest meta box register on the settings page. After saving the value of this meta box, the custom function will be fired.
Refer https://support.metabox.io/topic/settings-page-switch-field-hopefully-quick-question/
https://support.metabox.io/topic/do-action-hook-mb_settings_page_load-execution-only-when-saved-updated/- Check the field value when clicking submits button.
add_action( 'mb_settings_page_load', function ( $args ) { if ( $_POST['submit'] ) { // Do something } }, 20 ); - Hook a function to the action
-
AuthorPosts