Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
I've issued you a full refund.
Long Nguyen
ModeratorHi,
There is no image upload field like that. You can create your own image field by following this documentation https://docs.metabox.io/custom-field-type/
Long Nguyen
ModeratorHi,
Yes, it is possible. At first, you need to remove the default support featured image of the CPT. Then create a field singe_image and set its ID to
_thumbnail_idand enable the admin column for this field.Long Nguyen
ModeratorHi,
You can use the parameter
optionsof the WYSIWYG field to customize this field. Please get more details here https://docs.metabox.io/fields/wysiwyg/#settingsOctober 28, 2021 at 9:01 PM in reply to: ✅Custom Table: Taxonomy field och Taxonomy Advanced field? #31593Long Nguyen
ModeratorHi,
If you use the field
taxonomy_advanced, the field value is saved to the custom table as other fields. Please read more on the documentation https://docs.metabox.io/extensions/mb-custom-table/The data type
TEXTcan be used for most cases. If you want to change the data type later, you can access your database and change it or contact your hosting support to ask to change the data type. Please read more here https://www.w3schools.com/sql/sql_datatypes.aspLong Nguyen
ModeratorHi,
Thanks for your feedback.
I've escalated this issue to the development team to fix this in the next update. For now, you can use the field WYSIWYG without columns to avoid this issue.
Long Nguyen
ModeratorHi Kyle,
Please try to deactivate all plugins except Meta Box, MB extensions and switch to the standard theme of WordPress, Twenty TwentyOne, and re-check the issue.
October 28, 2021 at 10:52 AM in reply to: ✅Custom field type > show as ordered list in content, including one link per #31567Long Nguyen
ModeratorHi,
You can try to use the field
textareaorwysiwyg. See the list of supported fields here
https://docs.metabox.io/Long Nguyen
ModeratorHi,
What is the value that you assign to the variable
$dertag? Please assign a specific value to the argumentmeta_valueto check if it works.
I also see that in the View code, the query usesfrominstead oftoin the relationship arguments, you can change tofromand re-check it.On another note, adding the argument
post_typeto the query might help to specify a post type.$connected = new WP_Query( [ 'post_type' => 'dates', //here 'relationship' => [ 'id' => 'fromdatestovenues', 'to' => get_the_ID(), // change to 'from'? ], 'meta_key' => 'wochentag_select', 'meta_value' => 'abcd', 'nopaging' => true, ] );October 28, 2021 at 9:24 AM in reply to: ✅Custom Table: Taxonomy field och Taxonomy Advanced field? #31565Long Nguyen
ModeratorHi,
The field
taxonomysets the post terms, the value is saved to the tablewp_termsin the database.
The fieldtaxonomy_advancedsets the post meta, the value is saved to the tablewp_postmetain the database.
You can see more tables of WordPress here https://codex.wordpress.org/Database_DescriptionSo if you use the custom table to store field value, you should use the field
taxonomy_advanced.Long Nguyen
ModeratorHi,
You can add the meta query (field ID and value) to the arguments of the query to filter dates, please read more on the WP documentation https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters
October 27, 2021 at 11:09 PM in reply to: high time consumption by plugins - New Relic Report #31554Long Nguyen
ModeratorHi,
Thank you for your feedback.
Please try to deactivate all plugins except Meta Box, MB AIO and switch to the standard theme of WordPress (Twenty TwentyOne) and run this tool again.
It would be better if you provide more information about the time consumption of functions or queries from Meta Box itself.
Long Nguyen
ModeratorHi Marin,
You need to create the page and add the frontend submission shortcode and add its ID to the frontend dashboard shortcode to make the frontend dashboard works.
[mb_frontend_form post_fields="title,content"]The user dashboard page shows the list of posts and information of the user does not relate to the frontend dashboard, just a static page.
Please read the documentation step by step https://docs.metabox.io/extensions/mb-frontend-submission/
October 27, 2021 at 10:52 PM in reply to: ✅Custom field type > show as ordered list in content, including one link per #31552Long Nguyen
ModeratorHi,
If you just want to insert the URL of the articles, you can use the field type
URLand set it cloneable to add more URLs on a post.Then use the helper shortcode to show the list URLs on the frontend https://docs.metabox.io/shortcode/
Long Nguyen
ModeratorHi Cees,
Please notice that the helper function
rwmb_meta()retrieves the field value (or called post meta), it is a parameter ofWP_Queryto get the posts.You can read more on Oxygen documentation https://oxygenbuilder.com/documentation/other/advanced-query-builder/
and WordPress WP_Query https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parametersIf you don't want to use the helper function
rwmb_meta(), you can use the WordPress function get_post_meta(). -
AuthorPosts