Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I think it is a basic case to output the value on the frontend. You can use an
ifstatement to do that. For example:if( field_value == 'something' ) { echo 'ABC'; } else { echo 'DEF'; }Please read more on the documentation to get the field value https://docs.metabox.io/fields/select/
Peter
ModeratorHello,
Currently, it is not possible to change the field settings after saving another field like that. If you want to modify the field settings, please use the filter hook
rwmb_normalize_field, please read more on the documentation https://docs.metabox.io/filters/rwmb-normalize-field/Peter
ModeratorHello,
You can try to use this code to check if the feature image is not empty to display the image tag on the frontend.
<div> {% if term.feature_image.full is not empty %} {% set field = term.feature_image.full %} <img src="{{ field.url }}" width="{{ field.width }}" height="{{ field.height }}" /> {% endif %} </div>Peter
ModeratorHello,
Can you please try to reinstall the plugin Meta Box AIO and recheck this issue? You can download a fresh copy of the plugin from the My Account page https://metabox.io/my-account/ and install it on your site.
Or do you install Meta Box AIO via composer? Please try to clear the cache and run the command again, please read more on the documentation https://docs.metabox.io/integration/#why-cant-i-update-with-composer
Peter
ModeratorGreat.
Let us know if you have any questions.March 9, 2023 at 7:46 PM in reply to: Referencing the DatePicker field inside of a Group only shows today's date #40918Peter
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.
-
AuthorPosts