Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
The admin column "Services" can be clickable to sort if you enable the setting
'sort' => true. Read more on this documentation https://docs.metabox.io/extensions/mb-admin-columns/#3-advanced-configurationSeptember 6, 2021 at 9:03 PM in reply to: Custom upload folder > Not show image > Error: Cannot delete file #30630Long Nguyen
ModeratorHi,
Please upload new images and re-check this issue. You can also take a look at this screen record https://share.getcloudapp.com/p9ukOgO5
and let me know if it is your case.September 6, 2021 at 8:17 PM in reply to: ✅Importing JSON file from other site doesn't work correct #30628Long Nguyen
ModeratorHi Quint,
Can you please share the exporting file?
Long Nguyen
ModeratorHi,
Currently, we do not have any payment system for the custom post type like WooCommerce. So it's not possible to create a custom post type that is checkoutable.
September 6, 2021 at 7:12 PM in reply to: PHP Code to create/update field value in Custom Table ? #30626Long Nguyen
ModeratorHi,
Your shortcode is missed the attribute
object_type, please see on this topic https://support.metabox.io/topic/shortcode-to-show-user-meta-type-select-avanced/[rwmb_meta id="name" object_id="1" storage_type="custom_table" table="wp_test" object_type="user"]Long Nguyen
ModeratorHi,
This feature is available, please update the new version of MB Blocks v1.4.0 or MB AIO v1.14.3 to use it. Read more on the documentation https://docs.metabox.io/extensions/mb-blocks/#nested-blocks-innerblocks
September 6, 2021 at 12:57 PM in reply to: ✅Private Hidden Admin Note for User meta - only Admin, Manager can see per User #30617Long Nguyen
ModeratorHi,
You can use the extension MB Include Exclude to load a meta box for a/some predefined roles. Please get more details here https://docs.metabox.io/extensions/meta-box-include-exclude/
September 6, 2021 at 12:50 PM in reply to: How to modify data of custom field which will be stored in custom table #30616Long Nguyen
ModeratorHi,
You can use the hook
rwmb_frontend_after_processto trigger a function update the data in the custom table. Like this:add_action( 'rwmb_frontend_after_process', function( $config, $post_id ) { $data = [ 'calorie' => '200', ]; \MetaBox\CustomTable\API::update( $post_id, 'my_custom_table', $data ); }, 10, 2 );Remember to activate the new version of MB Custom Table 2.0.0-rc.2 to use the public API. Please get more details here
https://docs.metabox.io/extensions/mb-custom-table/#api
https://docs.metabox.io/extensions/mb-frontend-submission/#form-actionsSeptember 6, 2021 at 11:27 AM in reply to: Custom upload folder > Not show image > Error: Cannot delete file #30614Long Nguyen
ModeratorHi,
After clicking on the X button to delete the image, you need to submit the changes to update the field value. If you reload the page and click again, the error will show up because the image has been deleted completely.
Regarding the thumbnail does not show up, I will inform the development team to support this in future updates.
September 6, 2021 at 10:57 AM in reply to: How to create Custom Models automatically with Metabox AIO ? #30613Long Nguyen
ModeratorHi,
The custom model has not been available in the MB Builder, you should use the code to create models. Please follow this documentation to get more details https://docs.metabox.io/extensions/mb-custom-table/#custom-models
Long Nguyen
ModeratorHi,
You've created the same questions here https://support.metabox.io/topic/shortcode-to-show-user-meta-type-select-avanced/
Please discuss there and I will close this topic.Long Nguyen
ModeratorHi,
The helper shortcode does not support showing the subfield value and get the current user like that. You can create your own shortcode to show them, please follow this documentation https://docs.metabox.io/extensions/meta-box-group/#outputing-group-with-page-builders
Long Nguyen
ModeratorHi,
To troubleshoot this issue, please follow the Debugging Information step here https://support.metabox.io/topic/how-to-create-a-new-topic/
and re-save the permalink settings (Post name).Let me know how it goes.
September 5, 2021 at 9:26 AM in reply to: Showing custom field group only on parent taxonomy terms #30596Long Nguyen
ModeratorHi Matija,
You can create a condition before registering the meta box to check the parent term as well. Please refer to this topic https://support.metabox.io/topic/taxonomy-taxonomy-term-only-metabox/
Long Nguyen
ModeratorHi,
Thank you for reaching out.
It is possible that the meta boxes and custom fields are created by coding instead of the Builder (Meta Box > Custom Fields). Please follow this documentation to get more info https://docs.metabox.io/creating-meta-boxes/
-
AuthorPosts