Forum Replies Created
-
AuthorPosts
-
April 12, 2022 at 9:53 PM in reply to: ✅Migrating taxonomy from taxonomy_advanced to taxonomy #35592
Long Nguyen
ModeratorHi,
There is no option to transfer the field value
taxonomy_advancedtotaxonomy. They saved data in different tables (wp_postmeta and wp_term_relationships) so you need to use custom code to do that.You can create a service request here https://metabox.io/contact/, our developer will help you to transfer the field value for a small fee.
Long Nguyen
ModeratorHi Victoria,
No matter what tool is used to create and save the field value to the database, you can use the function
get_post_meta()to get the post meta.If you are using Toolset to create the custom fields, you can follow this article to use Meta Box to manage the field https://metabox.io/move-custom-post-type-custom-field-data-from-pods-to-meta-box/
Long Nguyen
ModeratorHi Paul,
Can you please deactivate all plugins except Meta Box, MB extensions and switch to the standard theme of WordPress (Twenty TwentyOne) then submit a new post from frontend? Some screenshots would be appreciated.
Long Nguyen
ModeratorHi Robert,
WP All Import (Pro) is not fully compatible with Meta Box extensions to import data to the custom table. You can try to contact their support to ask for help with this issue.
If you use the custom code to move data from the default table
wp_postmetato the custom table and are using Oxygen which ignores loading files from the theme folder, you can use the plugin Code Snippets to implement the custom code.
https://wordpress.org/plugins/code-snippets/Long Nguyen
ModeratorHi,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Long Nguyen
ModeratorHi,
The development team is working on this issue. I will inform you if I have any information.
Long Nguyen
ModeratorHi,
Please try to deactivate all plugins except Meta Box, Meta Box AIO and switch to the standard theme of WordPress then re-check the issue. You can also turn on debug log to see what happens on your site.
Refer to this documentation https://wordpress.org/support/article/debugging-in-wordpress/
Long Nguyen
ModeratorHi Aaron,
Can you please share some screenshots of the issue? I see the link to the documentation displays correctly.
https://monosnap.com/list/61dfa7b836b60d05b61242cbThe subdomain http://metabox.io/docs/ is redirected to https://docs.metabox.io/
Long Nguyen
ModeratorHi,
The field
image_selectworks like the fieldradioorcheckbox, which means it saves thevalueto the database and uses images for friendly selection. If you want to get the label of the selection (image URL), please use the helper functionrwmb_get_field_settings()like your sample code.
https://docs.metabox.io/rwmb-get-field-settings/April 12, 2022 at 6:15 AM in reply to: How to make a comparison table between CPT Product with Custom Fields #35571Long Nguyen
ModeratorHi,
The frontend dashboard does not support customizing the table to display custom fields of listing posts. You can follow this topic to create your own dashboard with coding https://support.metabox.io/topic/duplicate-dashboard-shortcode/
If you have limited knowledge about coding, you can create a service request here https://metabox.io/contact/. Our developer will help you to create custom code as your requirements for a small extra fee.
Long Nguyen
ModeratorHi,
You can use the custom thumbnail to crop the image uploaded to the size 512x512px, follow this documentation https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
Or show the full size of the image and use CSS code to style the box (div) that wraps the image and limit the size to 512x512px. Refer to this article https://metabox.io/create-category-thumbnails-featured-images-wordpress/
Long Nguyen
ModeratorHi James,
You can use the WP function get_current_user_id() to get the current user ID and pass to the helper function. For example:
$current_user_id = get_current_user_id(); $statements = rwmb_meta( 'statements', ['object_type' => 'user'], $current_user_id );//Slides needs to be var in the moduleLong Nguyen
ModeratorHi,
I do not see any issue when adding and saving field values with your code. Please try to deactivate all plugins except Meta Box, MB extensions, switch to the standard theme of WordPress, and run only the code above to add the custom fields to the settings page.
Then re-check this issue.Long Nguyen
ModeratorHi Paul,
You can try to use the field type
multimaskto display the price by using this plugin https://github.com/badabingbreda/field-text-multimaskRefer to this topic https://support.metabox.io/topic/thousand-separator
April 8, 2022 at 12:37 PM in reply to: ✅How to set auto login after a successfull registration page ? #35531Long Nguyen
ModeratorHi Andrea,
You can change the action hook
user_registertorwmb_profile_after_save_userto save data before redirecting to a page.add_action( 'rwmb_profile_after_save_user', 'auto_login_new_user' );Refer to the documentation https://docs.metabox.io/extensions/mb-user-profile/#user-actions
-
AuthorPosts