Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello there,
I think it might relate to the database charset in WordPress settings, please read more on this topic https://wordpress.stackexchange.com/questions/92253/how-does-wordpress-support-unicode
If you add the multibyte text to the post content (not the custom field), does it display in the same unicode?
February 20, 2023 at 9:47 PM in reply to: the map-marker icon on a map is not exactly located as the original one #40623Peter
ModeratorHello Cees,
I see that issue. The custom map marker icon does not display correctly on the map. You can try to use this custom CSS code to fix the issue with the custom icon.
img.leaflet-marker-icon { margin-left: -12px; margin-top: -41px; width: 25px; height: 41px; }I've escalated this issue to the development team to fix it in the next update.
February 20, 2023 at 9:23 PM in reply to: Force Delete option of the Image Advance field don't work #40622Peter
ModeratorHello Ash,
Do you mean after activating WPML, this feature does not work? You can try to deactivate all plugins and leave Meta Box, MB AIO activate and see if it works. If yes, you can enable plugins one by one to find which plugin causes the issue.
February 20, 2023 at 9:16 PM in reply to: ✅How to make frontend forms re-editable by the users? #40620Peter
ModeratorHello there,
The main purpose of the frontend dashboard is to allow users to edit their posts on the frontend. Please try to create two pages:
- one has the frontend submission shortcode
- one has the frontend dashboard shortcodethen login to your site as a normal user and check this feature again. Please read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission
February 20, 2023 at 9:03 PM in reply to: Any disadvantage creating all table feilds as TEXT? #40619Peter
ModeratorHello there,
You can read more about the differences between data types here https://www.w3schools.com/sql/sql_datatypes.aspf
February 20, 2023 at 8:49 PM in reply to: Change textarea_rows on all WYSIWYG fields for a specific post type #40618Peter
ModeratorHello Kyle,
The code below works as well on my demo site without using a condition to check the post type
function proposal_textarea_rows( $settings ) { $settings['textarea_rows'] = 3; return $settings; } add_filter( 'rwmb_wysiwyg_settings', 'proposal_textarea_rows' );Can you please check this filter hook again in a fresh install of WordPress and install Meta Box only?
Peter
ModeratorHello,
You can try to deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress, or create a new field group and save field value in a new custom table and check this issue again.
Let me know how it goes.
February 20, 2023 at 7:30 PM in reply to: AJAX submission no longer redirects after AIO update #40616Peter
ModeratorHello,
You can try to check this issue again in a fresh install of WordPress and Meta Box. Let me know if the issue still happens.
Peter
ModeratorHello,
I think using the filter to set the options of the select field by coding instead of using the builder, might help you in this case.
add_filter( 'rwmb_normalize_field', function( $field ) { //check your specific field before using this code $field['options'] = callback_function(); return $field; } );February 20, 2023 at 7:24 PM in reply to: MB slows down site and editing pages + doesn't seem to save in custom table #40614Peter
ModeratorLet me know if you have any questions.
February 20, 2023 at 7:23 PM in reply to: Moved to custom table, data is in DB, but not on edit post #40613Peter
ModeratorHello,
Please access your database, set the column data type to
TEXTand check this issue again. If it does not help, please share your site credentials via this contact form https://metabox.io/contact/
I will inform our development team to check the issue on your site.Peter
ModeratorHello there,
If you are using the builder, you can click on the option "Show as an admin column" when creating the custom field to display the admin column for that field. See my screenshot https://monosnap.com/file/uZqvlIiIanjm2vGg5K8GW42dEpsPjH
And read more on the documentation https://docs.metabox.io/extensions/mb-admin-columns/
February 19, 2023 at 12:07 AM in reply to: MB Relationships mangles relationship ID when importing JSON #40600Peter
ModeratorHello Eric,
Thanks for your feedback.
I see that issue. The relationship ID is generated automatically from the relationship title (post title) so it uses the hyphen as the default separator. To fix this issue temporarily, you can just add the same title as ID
artist_artand then export and import it.
I've escalated this issue to the development team to fix it in the next update.February 18, 2023 at 11:54 PM in reply to: ✅Core Extensions Bundle Invoice - Invoice Doesn't Show Correct Date #40599Peter
ModeratorHello there,
If you have any questions related to your account or payment/invoice, please contact us here https://metabox.io/contact/. Our support team will help you to check this.
Thanks.
Peter
ModeratorHello,
I think the issue was resolved a long time ago, maybe related to https://support.metabox.io/topic/select-choices-callback-cache/
Anyway, I test to add your code to my local site to update a field group title after saving a CPT post and it works correctly.
add_action('save_post_my-job', 'fr_update_retreats_after_default_tabs', 10); function fr_update_retreats_after_default_tabs() { wp_update_post( array( 'ID' => 3401, 'post_title' => 'This is the post title.', ) ); }And you can also use the filter hook
rwmb_normalize_fieldto modify the field settings. Please read more on the documentation https://docs.metabox.io/filters/rwmb-normalize-field/ -
AuthorPosts