Forum Replies Created
-
AuthorPosts
-
March 9, 2023 at 7:46 PM in reply to: Referencing the DatePicker field inside of a Group only shows today's date #40918
Peter
ModeratorHello Dustin,
It is possible that the Bricks builder is not compatible with MB Group to render the datepicker field on the frontend. I've used this code to display the datepicker field as well
$groups = rwmb_meta( 'event_group' ); foreach ($groups as $group) { echo date( 'F j, Y', $group['start_date']['timestamp'] ); }Note: the datepicker field with the option timestamp enabled save the value to the database in an array: timestamp and formatted, for example:
[start_date] => Array ( [timestamp] => 1678320000 [formatted] => 2023-03-09 )FYI, Bricks builder maintains the integration with Meta Box so I recommend contacting their support to ask for further assistance. Please read more here https://docs.metabox.io/compatibility/
Peter
ModeratorHello Nathan,
Regarding the license key, if you have an issue with the license key, please contact us here https://metabox.io/contact/, our development team will help you to resolve it.
Regarding the warning error, can you please downgrade the PHP version to 7.4 and recheck this issue?
March 9, 2023 at 6:57 PM in reply to: ✅List all custom post type entries by user role with delete button? #40916Peter
ModeratorHello James,
It sounds like the main feature of the frontend dashboard. Please read more on the documentation and let me know if it helps.
https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboardPeter
ModeratorHello,
Customizing the permalink settings is beyond the scope support of Meta Box. You can try to go to Settings > Permalinks > Custom structure > and set it to
/%category%/%postname%/.Or follow this article to customize the permalink with coding https://stackoverflow.com/questions/57765487/how-to-add-custom-taxonomy-in-custom-post-type-permalink
https://support.metabox.io/topic/post-type-and-then-taxonomy-for-url-structure/?swcfpc=1#post-40569Peter
ModeratorThanks, let us know if you have any questions.
March 8, 2023 at 9:08 PM in reply to: Autocomplete/Geolocation only works on CFs that don't have a custom table in DB #40897Peter
ModeratorHello,
I do not see that issue on my site. Autocomplete/geolocation uses the JS code to fetch the data and populate it to the field input, saving the field value to the custom table that is separated and does not relate to this feature.
Can you please share some screenshots of the issue on your site? You can try to deactivate all plugins except Meta Box, MB extensions, switch to a standard theme and recheck this issue.
March 8, 2023 at 9:00 PM in reply to: Beaver Builder image gallery connection to Metabox field #40896Peter
ModeratorHello,
Thanks for your feedback.
I can reproduce that issue on my local site and I've escalated this to the development team to fix it in the next update.
For now, you can use the helper shortcode [rwmb_meta id="image_advanced"] to display images on the frontend. Please read more on the documentation https://docs.metabox.io/shortcode/Peter
ModeratorHello,
FYI, the
taxonomyfield does not work when it is a subfield in a group or in a custom block. So in this case, you will need to use thetaxonomy_advancedfield. As the name, it will need for some advanced cases.Peter
ModeratorHello,
Thanks Ole for the details. Meta Box only has the basic style and inherits the style of the current theme. If you want to style the submit button, please create some custom CSS code.
Peter
ModeratorHello,
At first, you should use the field
single_imageto set the featured image for the post.
- in the backend, you should disable the standard featured image box of the post type. If the post type is managed by Meta Box, you can go to Meta Box > Post Types > Edit the CPT > Supports tab > Disable option "Thumbnail".
- in the frontend, it works as it should.Let me know how it goes.
Peter
ModeratorHello,
To use the shortcode in the Elementor builder, you need to create your own code in View to get the field value and HTML elements. You can refer to this tutorial https://docs.metabox.io/tutorials/category-thumbnails/
and read more on the documentation https://docs.metabox.io/extensions/mb-views/
https://docs.metabox.io/extensions/mb-term-meta/Peter
ModeratorHello,
Thanks for sharing the solution. Let us know if you have any questions.
March 7, 2023 at 7:01 PM in reply to: How to show and edit the terms / tax in Form Submission? #40872Peter
ModeratorHello,
You can use the custom field
taxonomyto add a term to a post in the frontend submission form. Please read more on the documentation https://docs.metabox.io/fields/taxonomy/Peter
ModeratorHello,
I don't know what the error on your site is. Can you please share the full error log? You can use https://pastebin.com/ and share the link here.
Also, please let me know how I can reproduce the issue.
Peter
ModeratorHello,
You can read more about the benefit when using the custom field and custom taxonomy here https://metabox.io/custom-fields-vs-custom-taxonomies/
-
AuthorPosts