Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Please share your site admin account and details of the issue by submitting this contact form https://metabox.io/contact/
I will take a look.July 25, 2024 at 9:53 PM in reply to: ✅How to display post contents in a list in a way respecting the paragraphs? #46008Peter
ModeratorHello Eddy,
1. This is basically a custom code. You can follow this topic to create read more button and limit words of a content with JavaScript code
https://stackoverflow.com/questions/23170581/text-in-div-limited-characters-add-read-more-link-and-show-all-characters-whe2. Can you share some screenshots of the post content in the admin area and frontend? Do the paragraphs have
<p>tags if you switch to the tab Text of the editor?Peter
ModeratorHello,
Thank you for sharing the details.
Can you try the steps one by one and let me know which causes the issue?
Getting data and creating a woo simple product through Woo API. Creating a post in custom post type "autor" with WordPress API. Creating a post in custom post type "translator"with WordPress API.. Updating metabox fields and relations through WordPress API.Then share some code or screenshots of the steps you do so I can reproduce the issue on my end.
July 24, 2024 at 9:07 PM in reply to: ✅Frontend data submission not saved for user role subscriber #45997Peter
ModeratorHello Eddy,
If the subscriber user role can save the data in the admin area, it should work in the frontend also. 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.
I tested this feature on my demo site but couldn't reproduce the issue.Peter
ModeratorHello Yumiko,
This issue has been fixed in the new version of the plugin MB Rest API. It will be included in the next update of Meta Box AIO.
https://github.com/wpmetabox/mb-rest-api/commits/master/Peter
ModeratorHello Eddy,
You can check the array of video subfield is not empty and output a heading before using the loop to show the video. Here is an example:
{% if post.group[0].video is not empty %} <h3>Videos</h3> {% endif %} {% for clone in post.group %} {% for item in clone.video %} {{ item.rendered }} {% endfor %} {% endfor %}Peter
ModeratorHello Yasmine,
In the new version of Meta Box 5.9.11, the issue with the checkbox tree field type was fixed in the admin area. Can you please confirm it works? In the frontend form, we are still working on it.
Peter
ModeratorHello,
Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a look.July 23, 2024 at 8:49 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #45982Peter
ModeratorHello,
Currently, we don't have a proper solution to fix both cases:
- One is custom model menu is a parent menu
- One is custom model menu is a sub/child menuonly the case custom model menu is a parent menu will be supported and the settings page menu should be a submenu. Just want to let you know.
Peter
ModeratorHello Tobias,
Thank you for your feedback.
I'm not able to reproduce the issue on my demo site. However, I will share the error message with the development team to consider removing the deprecated constant.
July 22, 2024 at 11:36 PM in reply to: White screen of death on some pages with views after updating #45977Peter
ModeratorHello,
The default variable
term.taxonomyshould be run on the type archive page, it is noted in the documentation https://docs.metabox.io/extensions/mb-views/#main-query
and it still works on my demo site with MB AIO 1.28.0.If you output only the taxonomy slug, does it throw an error?
Taxonomy: {{ term.taxonomy }}Also, please share the full error message so I can understand the issue on your site. You can get it in the WP debug log https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
Advanced Location Rules is the extension MB Include Exclude. I check this feature on my demo site and see it is working properly. After selecting the product category, you will need to save and reload the page to show the field group on the editing product page.
If you want to create a custom function, you can follow the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/#sample-codePeter
ModeratorHello,
You are inserting the view shortcode in the loop so the
postin the view code might be the current post object, not the post in the loop.
You can try to use this code in the view template:{% set current_post_id = mb.get_the_ID() %} {{ mb.rwmb_meta( 'jw_url', '', current_post_id ) }}Let me know how it goes.
Peter
ModeratorHello Julian,
Thank you for your feedback.
I will forward it to the development team to consider supporting a spinning icon when processing the favorite post.
-
AuthorPosts