Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Mark,
Can you please generate the PHP code of the field group assigned to that CPT or you can export the field group to a JSON file and share it here?
There could be an issue with the options of a select field.Peter
ModeratorHello,
Please refer to this topic to apply the SVG icon for the CPT
https://support.metabox.io/topic/custom-post-type-svg-icon-base64-encoded/#post-32132Peter
ModeratorHello,
I understand the question. Unfortunately, Meta Box does not support displaying other field values in the select box, only the post (object) title will be displayed.
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
Thanks for sharing the solution. Really appreciate.
Peter
ModeratorHello,
I run your code on my local site but do not see that issue. It is possible the template in the plugin is executed before the code that registers the meta box then there is no meta box to render.
April 13, 2023 at 8:12 PM in reply to: ✅Is it possible to select range date with date picker ? #41482Peter
ModeratorHello,
Yes, I think you can use two date picker fields to set the start and end date. Then you will need to query posts by the field value to display event posts in the range date.
Peter
ModeratorHello Rich,
Sorry, I don't understand the question clearly. Can you please give more details or share some screenshots of this?
Peter
ModeratorHello,
It's the taxonomy archive page on the frontend. You can go to Meta Box > Post Types > Edit CPT > Advanced tab > Enable option "Exclude from search" to exclude the CPT.
Or follow this topic to use the code https://wordpress.stackexchange.com/questions/390635/how-do-i-exclude-posts-from-custom-taxonomy-from-a-custom-post-type-archivePeter
ModeratorHello,
Great idea. I will inform our development team to consider adding to the queue. Hopefully, it will be available soon.
Peter
ModeratorHello,
Please try this one https://drive.google.com/file/d/10l7ycgeyI8Rl2Agu-TbupC0Vfhl529OB/view?usp=share_link
We do not support older versions of any plugins.Peter
ModeratorHello,
It could be an issue with the Info menu position. You can try to deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress then check this issue again.
April 12, 2023 at 10:56 PM in reply to: Displaying a frontend submitted form in another users dashboard #41465Peter
ModeratorHello,
I think it is possible. But please notice that, the frontend dashboard does not support an option to approve the draft/pending posts that are submitted by users on your site. The extension MB Frontend Submission does not bring all options/features of WordPress from the backend to frontend.
>> Is there a way to have multiple authors on a CPT?
It's not a standard feature of WordPress and beyond the scope of support of Meta Box. You can use a third-party plugin to do that https://wordpress.org/plugins/co-authors-plus/Peter
ModeratorHello,
I got the issue. The address field must have the ID
addressor something withaddressprefix likeaddress_somethingoraddress_1234.Please read more here https://docs.metabox.io/extensions/meta-box-geolocation/#address-field
Peter
ModeratorHello,
You can use the proxy
mb.to call the PHP functiondo_shortcode()directly without usingfunction(). For example:
{% set category_id = mb.do_shortcode('[yoast-primary-category-id]') %}Or you can try to use the PHP function
yoast_get_primary_term_id()to get the Yoast primary term ID{% set category_id = mb.yoast_get_primary_term_id( 'taxonomy_slug', post_id_or_object ) %}Please read more here https://stackoverflow.com/questions/38800626/how-to-get-primary-category-set-via-yoast-seo-plugin-in-wordpress
-
AuthorPosts