Forum Replies Created
-
AuthorPosts
-
October 30, 2023 at 8:29 PM in reply to: Image Advanced block with MB Divi Integrator, lightbox for gallery #43672
Peter
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=1Peter
ModeratorHello Melissa,
There isn't an option to add a site on the My Account page. You can just copy the license key and activate it on your site.
October 27, 2023 at 9:11 PM in reply to: ✅Automatically unpublish posts at date set in custom field - possible? #43653Peter
ModeratorHello,
You will need to add some custom code to set the post status to Draft based on the custom field value. Please get more details here https://stackoverflow.com/questions/67042582/wordpress-set-post-to-draft-by-date-picker-custom-field
Peter
ModeratorHello,
Can you please share a/some cases that
if things didn't work out? Also, there is a note in the source code about the custom model:Set $object_id to null for auto-increment table (for models).October 26, 2023 at 9:42 PM in reply to: ✅The SEO control box from Rank Math is not appearing as it should. #43646Peter
ModeratorHello,
We can see it's not an issue of Meta Box, you can contact RankMath support to ask for help if the Editor field is disabled.
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.October 26, 2023 at 8:23 PM in reply to: Cannot be displayed on the front end, how to set it up? #43643Peter
ModeratorHello,
The attribute
idshould be assigned to a custom field ID, not the field group ID.[rwmb_meta id="custom_field_id" object_id="post_id_here" storage_type="custom_table" table="shop_mark"]Read more in the documentation https://docs.metabox.io/shortcode/
Peter
ModeratorHello,
Is it possible to view the user confirmation status in wp-admin?Yes, you can edit a user, if there is a button to resend email confirmation, the user is not verified. Screenshot https://imgur.com/AuCpyvt
Is it possible to manually confirm a user so he may log in? Where is this data stored, so I could clear it via the database if needed?You can check the user that has the meta key
mbup_confirmation_codein the table wp_usermeta, delete it to confirm the user. -
AuthorPosts