Forum Replies Created
-
AuthorPosts
-
March 18, 2025 at 9:12 PM in reply to: "You attempted to edit an item that doesn't exist. Perhaps it was deleted?" #47850
Peter
ModeratorHello,
Do you want Admin access to the testing WP install?Yes, sure. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello Tanja,
You can use the filter hook
rwmb_frontend_welcome_messageto adjust the welcome message of the frontend dashboard. Here is an example:add_filter( 'rwmb_frontend_welcome_message', function( $message, $user, $query ) { $message = '<h3>' . esc_html( sprintf( __( 'Howdy, %s!', 'mb-frontend-submission' ), $user->display_name ) ) . '</h3>'; $message .= '<p>' . esc_html( sprintf( __( 'You have %1$d posts.', 'mb-frontend-submission' ), $query->post_count ) ) . '</p>'; return $message; }, 10, 3 );Refer to the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboard
March 18, 2025 at 7:55 AM in reply to: Show/Hide Field Group based on Taxonomy when Taxonomy is not in editor #47846Peter
ModeratorHello Josh,
Using
field group ID = term IDwhen you have a taxonomy field. Please follow steps below to setup the conditional logic for your case:1. Create a new field group and add a
taxonomyfield, select the product category taxonomy for the field.2. Edit the Featured Product field group and show/hide the field group based on the taxonomy field ID in step 1.
Peter
ModeratorHello Clint,
When editing the Teams post which has relation to Staff posts, you can re-order the Staff posts manually. In the frontend, it should reflect the order in the admin area.
Please check this screenshot https://imgur.com/5HjspKp
Let me know how it goes.
Peter
ModeratorHello Tobias,
Do you setup any conditional logic for the fields in the Description tab? If not, please export the field group to a JSON file and share it here. I will import the field group to my site and investigate the issue.
Following the documentation to export the field group https://docs.metabox.io/extensions/meta-box-builder/#export--import
March 17, 2025 at 9:55 PM in reply to: ✅Rendering Shortcode on front end not working--tried multiple ways #47839Peter
ModeratorHello Tanja,
Can you please share some screenshots or a screen record of the steps you do on your site? Also, please add the custom function to the file functions.php in the theme folder and check the issue again.
March 17, 2025 at 9:46 PM in reply to: "You attempted to edit an item that doesn't exist. Perhaps it was deleted?" #47838Peter
ModeratorHello Steve,
It looks weird. The option "Custom rewrite slug" shouldn't affect the editing post in the admin area. Can you please deactivate all plugins except Meta Box plugins and recheck the issue?
Peter
ModeratorHello Phil,
Thank you for your feedback.
This issue has been escalated to the development team. We will work on this to fix the issue as soon as possible. In the meantime, you can disable the option
'multiple' => trueto remove the pre-select option for the cloneable entry.Peter
ModeratorHello Tobias,
This issue has been fixed in the new version of Meta Box AIO 2.0.2. If it still occurs on your site, please share your site admin account by submitting this form https://metabox.io/contact/
I will take a look.Thank you.
March 13, 2025 at 10:29 PM in reply to: Taxonomy field type doesn't save post custom taxonomy #47825Peter
ModeratorHello Filippo,
Do you add the
taxonomyfield to a group field as a subfield? Or save the field group to a custom table?
Basically, thetaxonomyfield only works when you set it as a top field and do not save the field group to the custom table.Following the documentation https://docs.metabox.io/fields/taxonomy/
March 13, 2025 at 8:37 PM in reply to: "You attempted to edit an item that doesn't exist. Perhaps it was deleted?" #47823Peter
ModeratorHello Steve.
Do you see the post in the admin area and try to edit it? Can you please share a screen record (full screen) of the issue on your site when editing this post?
https://intcultcom.kr/%EC%84%B1%EA%B3%B5-%EC%82%AC%EB%A1%80/%eb%b3%80%ed%98%b8%ec%82%ac-%eb%a7%88%ec%bc%80%ed%8c%85-%ec%84%b1%ea%b3%b5-%ec%82%ac%eb%a1%80/Peter
ModeratorHello Basil,
If you want to output a custom field value from a settings page, please add the attribute
object_idwhich is the option name, and attributeobject_type="setting"to the shortcode.For example:
[rwmb_meta id="phone" object_id="site_option" object_type="setting"]Please follow the documentation
https://docs.metabox.io/shortcode/
https://docs.metabox.io/extensions/mb-settings-page/#using-codePeter
ModeratorHello Christie,
This feature has been already added to the queue. Our development team will work on this and include it in future updates.
Thanks and have a good day.
Peter
ModeratorHello Harry,
Thank you for your feedback. Currently, Meta Box doesn't work with HPOS feature of WooCommerce. This issue has been escalated to the development team and we will work on this to release an update in the future.
Let me know if you have any questions.
March 10, 2025 at 11:04 PM in reply to: ✅Cannot assign custom fields to Post Type (reverts to 'post' every time) #47814Peter
ModeratorHello John,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Refer to this topic https://support.metabox.io/topic/customer-fields-will-not-assign-to-custom-post-type/
-
AuthorPosts