Forum Replies Created
-
AuthorPosts
-
July 23, 2024 at 8:49 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #45982
Peter
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.
Peter
ModeratorHello Stephen,
Thank you for your feedback.
I've escalated this issue to the development team to check this. I will get back to you later.
Peter
ModeratorHello Raj,
I'm afraid that it isn't possible. Also, please notice that, the
taxonomyfield doesn't store data, it just sets post terms. Thetaxonomy_advancedfield saves the term ID to the database.
Following the documentation
https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/taxonomy-advanced/Peter
ModeratorHello Julian,
It looks like a
postfield or a relationship meta box. Please recheck the field group or relationship if you created them on your site.
https://docs.metabox.io/extensions/mb-relationships/
https://docs.metabox.io/fields/post/Peter
ModeratorHello Josh,
Screenshots are broken, can you please share them again? Also, please share some screenshots of the view template, code content and settings.
Peter
ModeratorHello,
The hook
plugins_loadedis fired beforeinitwhich is the hook that fires all Meta Box functions. You can try to add your callback function to the actioninitwith the priority later than 20 and see if it helps.Refer to this documentation https://docs.metabox.io/functions/rwmb-set-meta/
July 21, 2024 at 3:34 PM in reply to: White screen of death on some pages with views after updating #45957Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.July 21, 2024 at 3:27 PM in reply to: Since new Elementor Pro Updates, Images are not working working #45956Peter
ModeratorHello,
The development team is still working on this issue. I will let you know when it's done.
Thanks for your patience.
Peter
ModeratorHello Michael,
The code that you removed is used to update the WooCommerce product data. Do you have the custom post type with the same slug "product"?
if ( property_exists( $post, 'post_type' ) && 'product' === $post->post_type ) { $post_id = $post->get_id(); } -
AuthorPosts