Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Thanks for your feedback but we do not intend to support all features for the frontend submission plugin like on the backend. Just some basic functions to create the post. Those features are already supported by other plugins, you can find one here https://betterstudio.com/wordpress-plugins/best-wordpress-frontend-posting-plugins/
Long Nguyen
ModeratorHi Nicole,
I think it is possible. You can create a custom code on your site to fetch the data from an external source then update it to the field value. The prebuilt field
meta_boxis created by Meta Box plugin. You can get the custom field value by accessing this field.
If you want to do the customization job, please contact us here https://metabox.io/contact/.Long Nguyen
ModeratorHi John,
You can follow the documentation to know how to get the field value of the custom model
https://docs.metabox.io/extensions/mb-custom-table/#getting-field-values-for-modelsand PHP function
rand()to generate a random number (model ID) https://www.php.net/manual/en/function.rand.php$model_id = rand(1, 15); // Example: returns 'completed' $status = \MetaBox\CustomTable\API::get_value( 'status', $model_id, 'transactions' ); echo $status;Long Nguyen
ModeratorHi,
Currently, it is not possible to translate posts in the frontend with WPML. You need to go to the admin area to translate them. I will inform the development team to explore the possibility.
Long Nguyen
ModeratorHi,
Ok, I got the case. I will inform the development team to consider supporting this case in future updates.
Long Nguyen
ModeratorHi,
Please follow this documentation to know how to output the term meta value on the frontend
https://docs.metabox.io/extensions/mb-term-meta/$value = rwmb_meta( 'album_fotografie_gallerie_scelta', ['object_type' => 'term'], $term->term_id ); echo $value;Long Nguyen
ModeratorHi,
Thanks for your suggestion. But I don't think it is necessary. If a user doesn't want to show the label description, we have to create an option to hide it. So let's add the description if you want to show it.
Long Nguyen
ModeratorHi,
When I edit the Elementor template, I do not see the selected skin then I select the skin "Recommendation - new" and the subfields display as well on the post page. Screenshots
https://monosnap.com/file/UaiIUQcpJeEes6vx256d6HbC0WbFBC
https://monosnap.com/file/heU3VIM0xjb5JsBVf7xdbIBD8ndAZpCan you please recheck this?
Long Nguyen
ModeratorHi,
The feed link is the standard feature of WordPress, you can use a third-party plugin to disable the feed link. For example https://wordpress.org/plugins/remove-rss-feed/
October 21, 2022 at 10:20 PM in reply to: ✅Image upload - Validation to stop uploading multiple times #38778Long Nguyen
ModeratorHi,
Currently, Meta Box does not support limiting the time to uploading images, just limiting the number of images uploaded. I will inform the development team to consider supporting this feature in future updates.
Long Nguyen
ModeratorHi,
When you use the
switchfield as a top field, the value0is saved to the database as well. It will not be saved when the field is a subfield in a group.Long Nguyen
ModeratorHi,
Can you please share some screenshots of the subfield value and how it displays with Elementor? Only this skin has the problem so I think there should be an issue with the field or value saved to the database. You can try to delete the field group, skin and recreate them to recheck the issue.
Long Nguyen
ModeratorHi,
If you want to output the subfield Google map in a group, you need to pass the API key to the function
render_map()as on the documentation https://docs.metabox.io/fields/map/#outputting-a-map-in-a-groupIn your case,
google is not defined, I think there is another JS error and it breaks all JS functions on your site. You can try to deactivate all plugins except Meta Box, MB extensions, switch to the standard theme of WordPress and recheck this issue.October 20, 2022 at 10:17 PM in reply to: Second validation message with rwmb_frontend_after_display_confirmation #38768Long Nguyen
ModeratorHi,
Thanks for your suggestion. I've tried to use the hook
rwmb_frontend_after_processto add some HTML code to the form but no luck. It does not look to work. The problem is the action hookrwmb_frontend_before_display_confirmationdoes not support accessing the value via the$_POSTvariable to create a validation. But I see it will call the templateconfirmation.phpto display the confirmation text.Another way is to add the JS code directly to the template, I've tested and it worked on my end, screenshot https://monosnap.com/file/Ugk04bNCk1itqGquUQYDpPE14eew9q
You can follow this documentation to know how to override the template of this extension on your site https://docs.metabox.io/extensions/mb-frontend-submission/#post-template-files
Let me know if it helped.
Long Nguyen
ModeratorHi Olivier,
You can try to use the extension MB Geolocation to use two-ways data binding feature: change the location (pin) on the map to update the lat, lng value and change the lat, lng value to update the pin on the map. Read more on the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#two-way-data-binding
-
AuthorPosts