Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Pierre,
Thank you for reaching out.
To show the field label, please use the helper function rwmb_get_field_settings() and refer to this topic https://support.metabox.io/topic/label-not-rendered/.
After displaying the field label via coding, you can add the icon HTML code before the label https://www.w3schools.com/icons/.
Long Nguyen
ModeratorHi Erik,
Please follow the Debugging Information step here https://support.metabox.io/topic/how-to-create-a-new-topic/.
If it still does not work, please share the credentials of your site via this contact form https://metabox.io/contact/, I will help you to check it.
May 10, 2021 at 9:22 AM in reply to: ✅[rwmb_begin_html] is there any way to get the current config['id'] ? #28053Long Nguyen
ModeratorHi Kevin,
The extension MB Frontend Submission does not support filtering the appearance of the form. You can try to use the meta box ID when passing to the shortcode to style the form.
form#meta-box-id { your CSS code here }Long Nguyen
ModeratorHi,
If the code
post.erster_terminshow the date as well, please try to use this codeTermine: {{ mb.date_i18n('j. F Y', post.erster_termin) }} bis {{ mb.date_i18n('j. F Y', post.letzter_termin) }}If it still does not work, please share your site credentials via this contact form https://metabox.io/contact/, I will help you to check it out.
Long Nguyen
ModeratorHi,
It is not possible to add the divider between relationships meta boxes. You can use this custom CSS code to create a border between them.
form.rwmb-form .rwmb-meta-box { border-bottom: 1px solid #ccc; }Long Nguyen
ModeratorHi,
You can update the post title include the field value with custom code, please follow some topics below
https://support.metabox.io/topic/adding-metabox-field-data-to-the-post-title/
https://support.metabox.io/topic/how-to-autofill-the-title-of-the-cutstom-post-with-the-value-of-the-2-fields/Long Nguyen
ModeratorHi Erik,
Thank you for reaching out.
Can you please share some screenshots of the View? You can also select the Type: Singular, Location: Post Type to re-check the field. Screenshot https://share.getcloudapp.com/xQubm2OL
May 9, 2021 at 1:55 PM in reply to: ✅[rwmb_begin_html] is there any way to get the current config['id'] ? #28035Long Nguyen
ModeratorHi,
This filter also supports changing for a specific field ID. Please use
rwmb_{$field_id}_begin_htmlSee more on this documentation https://docs.metabox.io/filters/#rwmb_begin_html
Long Nguyen
ModeratorHi,
We don't have a field type that shows the real time when the users visit your site. You just need to use the PHP current_time() function or JavaScript function https://linuxhint.com/how_to_get_current_date_and_time_in_javascript/.
Long Nguyen
ModeratorHi,
I do not see the function
date_i18n()in your code. Can you please re-check it?The code with your field ID is
{% set field_date = mb.rwmb_meta('erster_termin') %} Date: {{ mb.date_i18n('j. F Y', field_date) }}or
Date: {{ mb.date_i18n('j. F Y', post.erster_termin) }}Long Nguyen
ModeratorHi,
Please share the credentials of the staging site and a copy of the plugin Social Warfare Pro via this contact form https://metabox.io/contact/. I will check it and see if something we can do from our side.
Long Nguyen
ModeratorHi Jimimac,
As I understand, you've created a settings page with the field
single_image. Then you create a view with the typeshortcodeto show the image on the settings page and add the shortcode to the Oxygen Builder.The code to show the image in View should be
<img src="{{ site.option_name.field_id.thumbnail.url }}" width="{{ site.option_name.field_id.thumbnail.width }}" height="{{ site.option_name.field_id.thumbnail.height }}" alt="{{ site.option_name.field_id.thumbnail.alt }}">See my screenshot https://share.getcloudapp.com/12uAmYrb
May 9, 2021 at 1:18 PM in reply to: ✅Display value of select field in beaver themer field connection #28030Long Nguyen
ModeratorHi Craig,
Can you please share the code that creates the select field? I've re-checked this field type on my local site but do not see any issue. Screen record https://share.getcloudapp.com/9ZuxO1XA
Long Nguyen
ModeratorHi,
It is possible but you need more custom code to do that. You can use the WordPress function current_time() to check the current time and show the message.
Long Nguyen
ModeratorHi,
Can you please share some screenshots and the code that creates the block, callback function? I've re-checked on my local site and see the callback result updates as well.
-
AuthorPosts