Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Yasmine,
I think it is possible to accomplish this with Meta Box. The main goal here is you need to wrap the field value outputted on the frontend in some HTML meta tags to display images and other info of the page when sharing via social. Please read more on this article https://css-tricks.com/essential-meta-tags-social-media/
There are some plugins that also support this feature, you can take a look at Yoast SEO plugin https://yoast.com/features/content-previews/social-previews/
January 30, 2023 at 9:54 PM in reply to: Custom input method for hierarchical taxonomy associated with custom post #40355Peter
ModeratorHello Scott,
Meta Box only supports two field types to display hierarchical taxonomy which are select_tree and checkbox_tree. If they are not meet your requirements, please consider creating a custom field type. Read more on the documentation https://docs.metabox.io/creating-new-field-types/
January 30, 2023 at 9:37 PM in reply to: Custom field (checkbox) whose value is settable to only one post #40354Peter
ModeratorHello,
Thank you for your feedback.
Meta Box does not support an option to check if the field value is unique to save to the database. You might need to create your own custom code to check it and then update the field value for other posts. Please refer to this hook https://docs.metabox.io/actions/rwmb-after-save-field/
January 30, 2023 at 9:17 PM in reply to: ✅Get CPT title for hidden custom form field in frontend subscription form #40353Peter
ModeratorHello,
Please share your site credentials via the following contact form https://metabox.io/contact/. I will help you to investigate the issue.
Peter
ModeratorHello Joe,
The relationship ID only accepts one. For example:
'id' => 'opinion-course',If you want to query my multiple relationships, please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/#query-by-multiple-relationships
January 30, 2023 at 8:57 PM in reply to: ℹ️Error add_action( 'rwmb_*****_before_save_post' does not work #40351Peter
Moderator@Luca: thanks for your feedback. I've informed the development team to check the issue and update the documentation then.
Peter
ModeratorHello there,
Please change the variable
ptto this one{% set pt = [ 'news', 'guide' ] %}Let me know how it goes.
January 28, 2023 at 11:48 AM in reply to: Where to find list of all actions for MB Frontend Submission #40340Peter
ModeratorHello there,
You can find the supported filter and action hooks in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#hooks-1
If it does not help, please let me know your expectations, I will help you to find out if this extension supports those.
rwmb-inputis an HTML class of the field appearance, you can read more here https://docs.metabox.io/filters/rwmb-begin-html/January 28, 2023 at 11:44 AM in reply to: ✅Add 'fallback' image when there is no 'featured image' #40339Peter
ModeratorHello there,
There are some ways to set the fallback image for an image field in the admin column.
- Create a custom admin column: please read more on the documentation https://docs.metabox.io/extensions/mb-admin-columns/#creating-custom-class
- Use the filter hook
rwmb_the_valueto modify the field value: please read more on the documentation
https://docs.metabox.io/filters/rwmb-the-value/
and this topic
https://support.metabox.io/topic/icons-instead-of-values-to-indicate-a-confirmed-account-as-a-user-admin-column/#post-36979January 28, 2023 at 11:33 AM in reply to: TypeError in fields/post.php when showing revisions #40338Peter
ModeratorHello,
This issue is fixed on this commit https://github.com/wpmetabox/meta-box/commit/d0a0f63fd290c16a980ca9948b7aacd7c40f1858
Please update Meta Box plugin to the latest version 5.6.15 and check this issue on your site again.Let me know how it goes.
Peter
ModeratorHello there,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/Peter
ModeratorHello there,
Thanks for your feedback.
The extension MB Frontend Submission is not working with MB Revision or WordPress revision. I'm going to inform the developer team to consider supporting this in future updates.
Peter
ModeratorHello there,
Meta Box does not support an option/feature to return a term slug via shortcode. You need to create a custom shortcode to return it on your own. Please read more here https://wordpress.stackexchange.com/questions/387520/how-to-add-a-shortcode-function-that-returns-the-taxonomy-slug-of-the-actual-pos
January 28, 2023 at 11:17 AM in reply to: Get Metabox Group subfield values from serialized array #40334Peter
ModeratorHello,
If you use the helper function
rwmb_meta()outside of a post or page, you need to pass the post/page ID to the third parameter, just like you pass the post/page ID to the first parameter of the functionget_post_meta(). For example:$group_values = rwmb_meta( 'group_id', '', 123 )Please read more on the documentation https://docs.metabox.io/functions/rwmb-meta/
Peter
ModeratorHello Joe,
I see the
fieldssettings are missing all field settings, you can try to create a new field group and export it to a JSON file and see how it works.
Please follow the documentation below to fix this issue https://docs.metabox.io/extensions/meta-box-builder/#upgradeIf it does not help, please try to create a new field group manually with the same custom field IDs and delete the error field group. The field values are stored in the database so they will not lose if you create a new one.
Note: Please create a full back up of your site and database before deleting the field group.
Let me know how it goes.
-
AuthorPosts