Forum Replies Created
-
AuthorPosts
-
January 6, 2024 at 8:10 PM in reply to: ✅Customise - Login / Register / Reset Password - Validation Messages #44238
Peter
ModeratorHello,
Those messages are hardcoded in the plugin source. There aren't any filter hooks to change the messages. For example, the message "Please enter a username or email address" is located in the file
/mb-user-profile/src/Forms/Login.phpline 118.
You can try to use a translation plugin to translate the message into your language.January 6, 2024 at 6:35 PM in reply to: Custom Register Form - Show/hide password on password fields? #44235Peter
ModeratorHello,
I will inform the development team to consider supporting this case in future updates.
Thank you.
January 6, 2024 at 6:33 PM in reply to: ✅Custom Register Form - Remove 'Confirm Password' field #44234Peter
ModeratorPeter
ModeratorHello Jan,
No, the settings page can work with Elementor as well. Please let me know how you setup the settings page on your site.
January 5, 2024 at 7:56 PM in reply to: Metabox UI disappeared when posting new or editing existing post #44227Peter
ModeratorHello,
Please share some screenshots of the issue on your site. You also check if the field group is assigned to the Form CPT correctly.
January 5, 2024 at 7:48 PM in reply to: Custom Register Form - Show/hide password on password fields? #44226Peter
ModeratorHello,
It isn't possible. You need to keep the field user_pass2 to make the check password strength function work properly.
January 5, 2024 at 7:34 PM in reply to: Display an Embedded Google Map with Meta Box and Bricks Builder #44225Peter
ModeratorHello,
Please check if you can save some normal paragraphs in the Text mode. If not, please export the field group to a JSON file and share it here. I will import and check it on my demo site, following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
January 4, 2024 at 10:39 PM in reply to: Custom Register Form - Show/hide password on password fields? #44219Peter
ModeratorHello,
Please try to add the setting
'append' => '<i class="password-icon show-icon"></i>',to the password field to display the show/hide icon.'password2' => [ 'name' => __( 'Confirm Password', 'mb-user-profile' ), 'id' => 'user_pass2', 'type' => 'password', 'required' => true, 'append' => '<i class="password-icon show-icon"></i>', //here ]January 4, 2024 at 9:21 PM in reply to: Display an Embedded Google Map with Meta Box and Bricks Builder #44217Peter
ModeratorHello Peter,
You should remove the second parameter
'object_type'in the helper functionrwmb_meta(). It is used to set the object typeterm,setting,userof Meta Box only.The code to get the WYSIWYG field value would be:
$field_name = rwmb_meta('kepzes_terkep', '', get_the_ID());Follow the documentation https://docs.metabox.io/functions/rwmb-meta/
January 3, 2024 at 10:36 PM in reply to: Woocommerce conflict - MB Custom Post Types & Custom Taxonomies #44212Peter
ModeratorHello,
Please follow this topic to fix the issue https://support.metabox.io/topic/fatal-errors-with-custom-post-type-v2-6-2-update/
Peter
ModeratorHello,
The issue has been fixed in this commit https://github.com/wpmetabox/meta-box/pull/1553/commits/f43126dd7082e0f201ba54b75726a5ca227135fa
It will be included in the next update of Meta Box.January 3, 2024 at 8:47 PM in reply to: May I deactivate and re-activate MB whithout loosing plugin and extensions data? #44209Peter
ModeratorHello Marco,
Yes, you can deactivate Meta Box plugins and keep the data on your site after re-activating. You also should use a third-party plugin to create a backup for your site.
January 3, 2024 at 8:39 PM in reply to: ✅getting post id by echo is not working front end submission form Bricks builder #44208Peter
ModeratorHello Leo,
When you edit the post in the frontend, you can get the post ID via the variable
$_GET['rwmb_frontend_field_post_id'], it is added to the URL parameter.If it doesn't work, please share some screenshots of the issue on your site.
January 2, 2024 at 10:07 PM in reply to: Implication of multiple CPT sharing the same custom rewrite slug #44204Peter
ModeratorHello,
I'm not sure if you use the same custom rewrite slug for many CPTs can affect the performance or any side effects. But you might need to use some custom code to do that, following this topic https://wordpress.stackexchange.com/questions/17640/multiple-post-types-share-same-rewrite-slug
January 2, 2024 at 9:54 PM in reply to: ✅Fatal error: Uncaught Error: Class 'MetaBox\Updater\Option' not found #44203Peter
ModeratorHello,
The class
MetaBox\Updater\Optionis located in the plugin Meta Box, please update this plugin to the new version 5.9.1 and check this issue again. -
AuthorPosts