Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorYes, there is another issue with the conditional logic in the modal. I've escalated the issue to the development team to fix it also.
Thank you.
Peter
ModeratorHello,
I see the issue. You can check the code to open the loop in the documentation
{% for post in posts %}but in your code, it is
{% for post in query.posts %}remove the query variable and check the issue again. Or use another variable name to avoid confusion:
{% set service_posts = mb.get_posts( args ) %} <div class="service-card"> {% for post in service_posts %} ...Peter
ModeratorHello,
The issue is related to the older version of Meta Box. Please make sure you have the latest version of the Meta Box plugin 5.9.8 and check the issue again.
Peter
ModeratorHello Paul,
Do you add the post type attribute to the frontend dashboard?
[mb_frontend_dashboard edit_page="124" post_type="custom-cpt-slug"]Please share two shortcodes that you add to frontend submission and frontend dashboard pages. Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard
May 25, 2024 at 12:04 PM in reply to: ✅How to setup the term meta icon using the last google material symbols? #45532Peter
ModeratorHello,
You can download the SVG file to your site and follow the documentation to create the icon field, no need to create the JSON file.
https://docs.metabox.io/fields/icon/#using-svgsor download the PNG file and use the single image field for simplicity.
https://docs.metabox.io/fields/single-image/May 25, 2024 at 11:55 AM in reply to: Impossible to display the custom field (image) of a custom term. #45530Peter
ModeratorHello,
If you want to show the term meta (image) of a term on the single post page. You can try to use two WordPress functions:
- get the current post ID: get_queried_object_id()
- get terms by post ID: get_the_terms()If you are not able to complete the task, we offer a customization code with an extra fee. Please contact us here for more details https://metabox.io/contact/.
Peter
ModeratorHello,
The map and phone number elements are wrapped in an
<a>tag, screenshot https://imgur.com/gyWTG1cYou can review your code and remove the
<a>tag and check the issue again.Peter
ModeratorHello,
There isn't an option to change the heading tag h4 to another one. You can add a custom CSS class to the field setting and increase the font size of the custom class. Pleass check this screenshot https://imgur.com/JrKDghr
May 24, 2024 at 10:48 PM in reply to: Selling a custom post linked to a relationship with a recurent payment. #45524Peter
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
-
AuthorPosts