Forum Replies Created
-
AuthorPosts
-
September 28, 2021 at 10:25 AM in reply to: Something is not right with the shortcode on page ID: #31027
Long Nguyen
ModeratorHi,
Does the Delete button work on your site?
The Frontend Dashboard only support allowing the users to edit their own post, not allow them to edit posts of another one.
Long Nguyen
ModeratorThanks for sharing the solution.
September 28, 2021 at 9:23 AM in reply to: ✅Show "last update" instead of "date" on user dashboard #31024Long Nguyen
ModeratorLet me know if you have any questions.
September 27, 2021 at 9:27 PM in reply to: ✅Show "last update" instead of "date" on user dashboard #31015Long Nguyen
ModeratorHi Torsten,
The date column in the frontend dashboard use the function the_time() to show the created time. You can use this filter hook to show the modified time. For example:
add_filter( 'the_time', function( $time, $format ) { $time = get_the_modified_time( $format ); return $time; }, 10, 2 );Long Nguyen
ModeratorHi Jim,
Meta Box does not support sorting options of a select field based on another field value. If you are familiar with coding, you can create your own field by following this documentation https://docs.metabox.io/custom-field-type/
Long Nguyen
ModeratorHi,
We don't support the older version of premium extensions or accessing them. If you have them on a site, you can try to create a copy and install them on another site.
Long Nguyen
ModeratorHi Mariano,
Please follow this article to resolve this issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Long Nguyen
ModeratorHi,
I'm afraid that it is not possible to import this kind of data to the Meta Box field's value. You need to import the text only without the separate characters. I will inform the development team to explore the possibility.
September 27, 2021 at 12:49 PM in reply to: ✅frontend form shortcode to exclude certain custom fields #30995Long Nguyen
ModeratorHi,
Thank you for your feedback.
I'm going to inform the developer team to consider adding this feature to the to-do list for the future development of the plugin.
Long Nguyen
ModeratorHi Thomas,
The shortcode in the documentation is an example if you want to use the shortcode to output a field value in a settings page.
Please change the attribute
-idby your field ID:weather
-site_optionby your option name. You can get the option name when editing the settings page, screenshot https://share.getcloudapp.com/kpun24X9
and keep the attributeobject_type="setting"The shortcode should be
[rwmb_meta id="weather" object_id="your_option_name" object_type="setting"]September 27, 2021 at 12:26 PM in reply to: Something is not right with the shortcode on page ID: #30993Long Nguyen
ModeratorHi,
Please take a look at my screen record https://share.getcloudapp.com/wbub4Yde
As my previous reply:
If the attribute ajax of the shortcode is assigned to true, the delete button will display when you edit the post from the Frontend Dashboard.You can remove the attribute ajax or set it to
falseto show the Delete button after submitting a post.Regarding the field
switchdoes not save its value. Can you please share the code that creates the custom fields? I do not see that issue on my end.September 27, 2021 at 9:25 AM in reply to: ✅frontend form shortcode to exclude certain custom fields #30990Long Nguyen
ModeratorHi,
The extension MB Include Exclude helps you to include/exclude the meta boxes but it does not work with the custom fields. So you can create more meta boxes, assign them to one post type and show them on the frontend via shortcode ID by adding commas. For example:
[mb_frontend_form id="meta-box-id1,meta-box-id2,meta-box-id3"]Get more details on the documentation
https://docs.metabox.io/extensions/meta-box-include-exclude/
https://docs.metabox.io/extensions/mb-frontend-submission/#shortcode-attributesLong Nguyen
ModeratorHi,
Regarding this message "The product will continue to work after your license expires.", the extension on the site still works after the license expired. Of course, it still works as well. Can you please confirm this?
Regarding the composer, we have a note for this case "the version of extensions specified in
composer.jsonmust bedev-master. We don’t support version constraints for Meta Box extensions yet. You always use the latest version.". That means you need to renew the license to install the latest versions of extensions.
Please read more here https://docs.metabox.io/extensions/composer/#usageLong Nguyen
ModeratorHi,
You need to access the elements of an array in View via the dot
., like an object. For example:<img src="{{ profilbild.full_url }}" srcset="{{ profilbild.srcset }}">September 26, 2021 at 9:07 PM in reply to: Something is not right with the shortcode on page ID: #30981Long Nguyen
ModeratorHi,
If the attribute
ajaxof the shortcode is assigned totrue, the delete button will display when you edit the post from the Frontend Dashboard. -
AuthorPosts