Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
After using the callback function instead of setting
render_code, you can delete all blocks on the page and re-add them. Or just create a new page to avoid this issue.Let me know if you have any questions.
August 24, 2022 at 11:56 PM in reply to: TAXONOMY FIELD CONDITIONAL DISPLAY USING RADIO NOT WORKING #38025Long Nguyen
ModeratorHi,
I see the conditional logic works as well on your site, screen record https://monosnap.com/file/5PtzTiusr3lBq8oK41q6jan0LMdrTH
Can you please clear the cache and recheck this?
Long Nguyen
ModeratorHi,
This is supposed to happen when you upload the file to a custom folder. You will get a custom path (URL) of the file when getting the field value. Please read more on the documentation https://docs.metabox.io/fields/file/#upload-to-a-custom-folder
Unlike the normal case, where files are added to the WordPress Media Library, files uploaded to custom folders are not available in the Media Library. Thus, the data saved in the custom fields is file URL, not attachment ID.August 24, 2022 at 11:24 PM in reply to: ✅Using rwmb_get_value on a multilingual website (WPML) #38022Long Nguyen
ModeratorHi Arno,
I do not see any issue when using the helper function
rwmb_get_value()to display the translation field value on the frontend. But you can try to use the helper functionrwmb_meta()in this case.See how it works on my demo site https://monosnap.com/file/Tbj5Hc91OgrVMusrk2BW7oQ4WzNCKb
Steps to reproduce:
- Go to WPML > Settings > Enable translate for the fieldcontent_long_title
- Translate the post and field value
- Add this code to the post template to display the field value$content_long_title = rwmb_meta( 'content_long_title' ); echo 'content_long_title: ' . $content_long_title;Long Nguyen
ModeratorHi,
For the Google Map: you can try to open the Console tab in the Inspect tool of the browser to check if there is any JS error log.
For the OSM: the map field does not support adding multiple addresses (pin locations) to a map. You can follow this article to know how to display multiple addresses on a map https://metabox.io/display-all-listings-on-a-map
August 24, 2022 at 10:49 PM in reply to: ✅Default value does not work if one field in a metabox has a value set. #38020Long Nguyen
ModeratorHi Mr Jon,
Yes, that's not an issue with the
stdsetting of a custom field. Please read more about the default value on this documentation https://docs.metabox.io/creating-fields-with-code/#why-does-not-my-default-value-workLong Nguyen
ModeratorHi,
With coding, you need to query get all objects (posts/terms/users) that are connected to a profile ID then put the delete function in the loop to delete them from the relationship.
Or you can access your database, edit the table wp_mb_relationships and delete the relation rows manually.
August 24, 2022 at 12:57 PM in reply to: ✅How I can display clonable Text/Text List as ul/li HTML? #38007Long Nguyen
ModeratorHi,
In case of using Oxygen/Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/In case of using coding, you can add the HTML tags
<ul> <li>and image icons when outputting the field value. Refer to the documentation https://docs.metabox.io/fields/text/#template-usageLong Nguyen
ModeratorHi,
Thanks for sharing your solution. Have a good day 🙂
Long Nguyen
ModeratorHi,
Can you please let me know which standard blocks of WordPress that cause the issue with conditional logic in the custom block? Please try to deactivate all plugins except Meta Box, MB extensions, switch to the WP standard theme (Twenty TwentyTwo) and recheck this issue.
August 24, 2022 at 12:41 PM in reply to: TAXONOMY FIELD CONDITIONAL DISPLAY USING RADIO NOT WORKING #38004Long Nguyen
ModeratorHi Richard,
Please share your site credentials via this contact form https://metabox.io/contact/, I will help you to check the issue on your site.
Long Nguyen
ModeratorHi Nick,
The development team is working on this issue. It will be included in the next update as soon as possible.
Thanks.
Long Nguyen
ModeratorHi,
Currently, there is no option to set the minimum upload images. I will inform the development team to consider supporting this feature in future updates.
Long Nguyen
ModeratorHi Arno,
You can refer to this topic to create a tax_query parameter with multiple taxonomies https://support.metabox.io/topic/querying-terms-from-multiple-taxonomies/#post-36948
Then follow this topic to know how to update the object property in Twig https://stackoverflow.com/questions/7719838/updating-object-properties-in-twig
Let me know how it goes.
Long Nguyen
ModeratorHi Marius,
The code helps you to create the custom fields on the Profile page in the admin area. It does not help to create the custom fields on the My Account page of WooCommerce in the frontend. If you want to create some custom fields on the My Account page, please contact WooCommerce support for further assistance.
-
AuthorPosts