Forum Replies Created
-
AuthorPosts
-
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.
Peter
ModeratorHello,
The dashboard page of the frontend submission plugin does not support a dropdown menu to select a post like that. All posts will be listed in a table and there is a button to edit the post on another page. Please read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard
Peter
ModeratorHello,
I think you can follow this article to get image dimension with a PHP function https://www.geeksforgeeks.org/php-getimagesize-function/
Then use the remote validation to check the minimum dimension of the image on your own https://docs.metabox.io/validation/
May 1, 2023 at 5:06 PM in reply to: ℹ️Feature Request: List Active Views in the Top Bar (like in Toolset or GP) #41669Peter
ModeratorHello,
It sounds like the activate templates of Elementor on a page, is that right? That could be a good feature request.
April 30, 2023 at 7:54 AM in reply to: Meta Box License Warning On Plugin Activation with MB Bundled #41661Peter
ModeratorHello,
Defining the license key in a file under the plugin folder will not work. I will inform the development team to support this case in future updates.
Peter
ModeratorHello,
The variable
author.IDdoes not display any value because the main query here is the post query, not the author query. You can follow the suggestion above to get the author ID of a post https://support.metabox.io/topic/relationship-working-on-author-page-but-not-post/?swcfpc=1#post-41528and read more about the main query here https://docs.metabox.io/extensions/mb-views/#main-query
Peter
ModeratorHello,
Temporarily, you can switch to the tab Text to add the value to the WYSIWYG field.
April 28, 2023 at 8:44 PM in reply to: ✅Select Field: Displaying Choices with Colons not working #41652Peter
ModeratorHello Philipp,
The format of the choice is
value: Labeland we should follow the format to make the value save to the database correctly and when outputting the value.You can create a choice like that
b: Choice: BPeter
ModeratorHello,
Thanks for your feedback.
It's the design in the free version from the start and has not changed for years. If you have a premium extension, please activate it with Meta Box and you can see the menu.
I will also inform our development team to consider changing the design of the free version if needed.
April 28, 2023 at 7:43 PM in reply to: Meta Box License Warning On Plugin Activation with MB Bundled #41650Peter
ModeratorHello,
You can define the license key in a constant in the wp-config.php file to remove the warning. For example:
define( 'META_BOX_KEY', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ123456' ); // Your Meta Box license key.Please read more here https://docs.metabox.io/updates/#can-i-define-the-license-key-via-a-constant-in-wp-configphp
April 28, 2023 at 7:39 PM in reply to: ✅How to make a post of a CPT sticky in DASHBOARD (not frontend)? #41649Peter
ModeratorHello,
It would need custom code to do that and beyond our scope of support. If you are not able to accomplish the task, please contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
I've just changed the post type in the arguments to
licensee{% set args = { post_type: 'licensee', relationship: { id: 'user-provider', from: 7 } } %}and the related posts display in the author box as well, please check this screenshot https://monosnap.com/file/b4f5bIOJmtVDjkFLgJDbgnJ13ujRAl
Peter
ModeratorHello,
After importing the field group to my local site, assigning it to a CPT and adding some field value to a post, I do not see any issue. But I see there are two fields that have the same ID (mbpf_reviewer_group_info) and the option format of some choice fields is not followed the suggested.
I'm not sure why the issue happens on your site, I think you can try:
- Increase PHP settingmax_input_vars, following the documentation https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
- Set each field with a unique ID
- Set the choice options following the format:value: Label. The value should be in lowercase with alphabet characters and underscores.
For example:
teach_learn: Language preservation and revitalization with special reference to teaching and learningApril 27, 2023 at 7:12 PM in reply to: Unable to use Metabox custom fields with Elementor's Advanced Post widget #41635Peter
ModeratorHello,
If you get the field button text associated with the post then it will not work because the field value of each post will be changed and have different values. I've tested to use a text field from a settings page and it works with the widget "Archive Posts" of Elementor Pro.
Peter
ModeratorHello,
Thanks for your suggestion but I do not see any benefit to do that. What will display on the frontend if the gallery block link to the custom field URL? You can simply create your own gallery images with custom code and output the field value associated with the image.
-
AuthorPosts