Forum Replies Created
-
AuthorPosts
-
May 24, 2024 at 10:48 PM in reply to: Selling a custom post linked to a relationship with a recurent payment. #45524
Peter
ModeratorHello,
1. Currently, Meta Box doesn't support an extension that works with the payment plugin to pay for creating posts like that.
2. UsersWP or Forminator isn't compatible with MB Relationships so I think it won't work with MB Relationship in their form.
https://docs.metabox.io/compatibility/Peter
ModeratorHello,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
May 23, 2024 at 6:14 PM in reply to: Creating a simple directory of professionals for a village association #45507Peter
ModeratorHello,
That means the current features of Meta Box don't support your requirements.
- You want to allow the user to register in the front end.
- Each registered user and information is a post of a post type in the admin area.You will need to use some custom code to do that. If you are not able to complete the task, we offer a customization service with an extra fee. Please contact us here https://metabox.io/contact/ for more details.
Peter
ModeratorHello,
I assume that you are following the documentation https://docs.metabox.io/tutorials/create-reusable-template-parts/
How do you show the View template on the homepage? Please share a screenshot of that step and a full screenshot of the View template.
May 23, 2024 at 6:04 PM in reply to: Image Upload field can access entire media library after upload #45505Peter
ModeratorHello,
After checking this with the development team, it is expected behavior. Only the upload area doesn't use the Media Library but when you click on the image, it will open the Media Library as well.
We will update the documentation about this case.
May 22, 2024 at 10:00 PM in reply to: Image Upload field can access entire media library after upload #45496Peter
ModeratorHello,
Thank you for your feedback.
It is an issue of the image upload field. I've escalated this issue to the development team to fix it in the next update. You can use the field
imageto prevent accessing the media library.
https://docs.metabox.io/fields/image/Peter
ModeratorHello,
In the view editor, you can use the proxy
mb.and WordPress functions (or any PHP functions) to get the user data from the user ID. For example: WP function get_userdata(){% set user_data = mb.get_userdata( 3 ) %} {{ user_data.first_name }}Following the documentation https://docs.metabox.io/extensions/mb-views/#running-php-functions
Peter
ModeratorHello Rebecca,
If you use the action hook
rwmb_frontend_after_save_post, you can check if the post is submitted from a specific form by checking the field group ID (shortcode attributeid). For example:add_action( 'rwmb_frontend_after_save_post', function( $config ) { // Make sure you work on the correct form. if ( 'field-group-id' !== $config['id'] ) { //add your code here to set the term } } );May 21, 2024 at 8:38 PM in reply to: Set Settings Page Custom Field data and be able to choose it from a CPT page #45484Peter
ModeratorHello,
No, it isn't possible to setup the code with the builder. You have to add the code in a template file. If you cannot complete the task, we offer a customization service with an extra fee. Please contact us here for more details https://metabox.io/contact/
Peter
ModeratorHello,
I see the hover style in the section "MB Views 3-column" works well, please check these screenshots
https://imgur.com/a/KpegB27Peter
ModeratorHello,
Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorThanks for your feedback.
Currently, there isn't an option to check the validation of the input value in the builder. I will inform the development team to explore the possibility.
May 20, 2024 at 10:19 PM in reply to: How to order relationships in Bricks Builder query loops #45477Peter
ModeratorHello,
I've tried using a meta key in Bricks for a date field in the query loop to get the orderby to work, but that hasn't worked either.As I mentioned in the first reply: Please try to use the code without the Bricks builder and let me know how it goes. Following the documentation https://docs.metabox.io/extensions/mb-relationships/#getting-connected-items
In some cases I'm able to order the items, but in this video you can see that it doesn't work smoothly.You can try to deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and check the issue again.
Peter
ModeratorHello,
Currently, it isn't possible. This is a WordPress core issue, you can take a look at this link https://core.trac.wordpress.org/ticket/44610
The oEmbed field of Meta Box uses the WordPress function
wp_oembed_get()to check and save the URL that is in the list of provider URLs and the nocookie Youtube URL isn't in the list. Check the file wp-includes/class-wp-oembed.php line 53.When the WordPress core issue is fixed, you can use the nocookie Youtube URL on your site.
Peter
ModeratorHello,
The media button is added by the code in the script file wp-content/plugins/meta-box/js/media.js
if you use Ajax to load the custom field, you need to add the script files along with the Ajax response by using the HTML tag
<script>.I think you can use the field
imageto show the HTML5 input field without any script files to prevent that issue.
https://docs.metabox.io/fields/image/ -
AuthorPosts