Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Mats,
Can you please share some screenshots of the issue? Is the taxonomy box a custom field of Meta Box or a default box of WordPress?
Peter
ModeratorHello,
The remote validation will work when you type something to the field so it won't work with the group field. Also, please note that the remote validation does not work with the Block editor, it works with Classic editor only.
You can test this feature again with your fieldtitle.Peter
ModeratorHello Roel,
Sorry if this is confusing for you. I mean creating a new CPT with a different slug and the same settings to see if it works.
MB Custom Post Types and Taxonomies use the UI to create the CPT as you do when registering the CPT with code https://developer.wordpress.org/reference/functions/register_post_type/So I think it isn't an issue of Meta Box itself. You can try to deactivate all plugins except Meta Box, MB extension plugin, switch to a standard theme of WordPress and use the function
flush_rewrite_rules()at theinithook to see if it helps.
https://developer.wordpress.org/reference/functions/flush_rewrite_rules/Also, thanks for your support, Sridhar.
Peter
ModeratorHello,
Is that what you mean by nested?Yes, please check again when both fieldscurrent_selectionoracademicoutputare on the same page and not hidden by a custom JavaScript code (step in your case).
FYI, the conditional logic of Meta Box also uses JavaScript to show/hide the field.Peter
ModeratorHello Roel,
You can try to deactivate the custom permalink plugin, re-save permalink settings (post name) or create a new CPT with the same settings to see how it goes.
October 30, 2023 at 8:50 PM in reply to: โ Automatically unpublish posts at date set in custom field - possible? #43674Peter
ModeratorHello,
There isn't a tutorial for this case. If you are not able to complete the task, we offer a customization code for an extra fee. In that case, please contact us here https://metabox.io/contact/
October 30, 2023 at 8:43 PM in reply to: Use MB Block php callback function to render CPT posts with MB blocks inserted #43673Peter
ModeratorHello Dave,
Can you please give some examples/code of your case so I can understand the question better?
If you want to create a block that shows a list of CPT, simply, you can use the callback function and add a custom query to show posts.
https://docs.metabox.io/extensions/mb-blocks/#render_callback
https://developer.wordpress.org/reference/classes/wp_query/October 30, 2023 at 8:29 PM in reply to: Image Advanced block with MB Divi Integrator, lightbox for gallery #43672Peter
ModeratorHello Jorge,
If you want to allow the Divi gallery to access the image_advanced from a custom block, you can save the field value to the default table wp_postmeta instead of the post content. Refer documentation https://docs.metabox.io/extensions/mb-blocks/#storage_type
Peter
ModeratorHello David,
You can set the default location including zoom value. For example:
52.871616566799,-3.5018951646627,9Peter
ModeratorHello,
I'm using your custom code to output the images and do not see that issue, screenshot https://imgur.com/lsxVcqj
You can use the function
var_dump()to recheck the elementurlof the variable$images.Peter
ModeratorHello,
You are using this code to get the date
date( 'Y-m-d', current_time( 'timestamp' ) ),
which has the format 2023-10-29, so the field must have the same value format to compare. I fixed the issue by using the option "Save format" of the field, screenshot https://monosnap.com/file/cxYMM0pi2vT8K5l40FRFDbH6HjlE5VOctober 28, 2023 at 11:47 AM in reply to: Query_arg to take an existing custom select field from front end submission form #43665Peter
ModeratorHello Salony,
You can create a custom callback function to show the options for a select field based on a condition, here is an example https://support.metabox.io/topic/callback-function-with-optgroup/?swcfpc=1#post-43255
but the options will show on page loaded, not on a selected from another field. You will need to create some custom JS code to do that.
October 28, 2023 at 11:19 AM in reply to: Fatal error caused by changing taxonomy field types #43664Peter
ModeratorHello,
Please export the field group to a JSON file, share it here and let me know how to reproduce the issue. I will check this on my demo site and escalate it to the development team if it is a bug.
Follow the documentation to export the field group https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
If I delete it the user can log in as normal?Yes, after deleting the user meta key
mbup_confirmation_code, the user can login normally.Peter
ModeratorHello,
Is the field
current_selectionoracademicoutputshown/hidden by another logic or custom JS code? If yes, the nested conditional logic does not work properly. You can refer to this topic https://support.metabox.io/topic/conditional-logic-advanced-taxonomy-with-2-rules/?swcfpc=1 -
AuthorPosts