Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Melissa,
The custom field does not have a category (taxonomy) like that, only post type has. You can create a CPT
reviewsand set the relationship with the CPTservicesand create taxonomies for thereviewsCPT.
Refer to the documentation https://docs.metabox.io/extensions/mb-relationships/Peter
ModeratorHello,
Can you access the single CPT? Please share some screenshots when you go to Meta Box > Post Types > edit the CPT > Advanced tab.
June 17, 2023 at 8:45 AM in reply to: Searching for Forum Post - Inline Editing Code on Admin Page #42254Peter
ModeratorHello,
It sounds like the plugin Admin Columns Pro which allows users to edit the field value in the posts table. Meta Box has an integration plugin with this.
https://www.admincolumns.com/
https://metabox.io/plugins/meta-box-admin-columns-integrator/Peter
ModeratorHello,
This issue has been fixed in this commit https://github.com/wpmetabox/meta-box/commit/89d7f8a556954492a3dbcecaf5b6726fecd71445
you can apply the changes on your site, clear browser cache and let me know how it goes.June 16, 2023 at 9:39 PM in reply to: Archive Template tags are not working with Php 8.0 in meta views #42248Peter
ModeratorHello,
I've tested this issue with PHP 8.2 and some variables from Insert Fields tab but do not see that. It might relate to your custom code added to the view content.
You can remove one-by-one lines of code to find what causes the issue.
Peter
ModeratorHello,
Which icon type do you use when creating CPT with CPT UI? For now, you can simply edit the CPT with Meta Box and set the icon in the Advanced tab.
Peter
ModeratorHello,
MB Builder does not support an option to duplicate the field group. It could be a feature of a third-party plugin that causes the issue.
June 16, 2023 at 8:40 PM in reply to: [Bug] UI Disappears after changing Sub-Group item to Checkbox #42244Peter
ModeratorI can produce the issue with simple subfield text in a group and escalate it to Anh.
Peter
ModeratorHello,
If you are familiar with coding, you can follow this topic to create a custom frontend dashboard on your own https://support.metabox.io/topic/duplicate-dashboard-shortcode
the post list in the dashboard is just created by a WP query.Peter
ModeratorHello,
Meta Box supports an extension MB Frontend Submission that allows the user to edit the post in the frontend. Please read more here https://metabox.io/plugins/mb-frontend-submission/?swcfpc=1
If you want to use MB Views, it will need a lot of custom code to do and it is beyond our scope of support.
Peter
ModeratorHello,
Please follow this topic to use some PHP code to auto-login after registration https://support.metabox.io/topic/how-to-set-auto-login-after-a-successfull-registration-page/
Peter
ModeratorHello,
You can use the option "Hide from frontend" to hide a specific field on the frontend. If some users need to have the field, then you will need to create a group for a specific user (you) or user role. Please use the option "Advanced location rules" (MB Include Exclude) in the field group settings.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/Peter
ModeratorHello,
I use the code below to print all elements of the $_POST object and still can access the field value as well.
add_action( 'rwmb_frontend_after_save_post', function( $object ) { echo "<pre>"; print_r( $_POST[] ); echo "</pre>"; die('12345'); } );June 15, 2023 at 10:10 PM in reply to: Searching for Forum Post - Inline Editing Code on Admin Page #42230Peter
ModeratorHello Joe,
Does the code relate to a custom field or CPT? Can you please give more details?
Peter
ModeratorHello,
It's the customization code for your specific needs so it is beyond our scope of support. FYI, the iframe is not available on the page load, it is available when clicking on the button "Add New Post". You can listen to the body change to do stuff.
For example:
jQuery(document).ready(function($) { $('body').on('click', '.rwmb-post-add-button', function() { $('body').find('#rwmb-modal-iframe').on('load', function () { $(this).contents().find("#wpwrap").css("background-color", "red"); }); }); }); -
AuthorPosts