Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
What do you mean by "disable loaded CSS files"? Are the CSS files to show the form? You can override the style by using your CSS code.
Long Nguyen
ModeratorHi Erik,
You can use this plugin to know the custom fields of the product
https://wordpress.org/plugins/woocommerce-store-toolkit/
https://www.youtube.com/watch?v=d1JDfEGi4hMAnd follow this documentation to show the field value in the custom query https://docs.metabox.io/extensions/mb-views/#custom-query
Long Nguyen
ModeratorHi Jon,
The
forloop should iterate through thepostsvariable, usemy_poststo understand easier{% set my_posts = mb.get_posts( args ) %} {% for post in my_posts %}July 26, 2021 at 9:28 PM in reply to: ✅How to modify Checkbox list labels and add custom data-attributes #29699Long Nguyen
ModeratorHi Ahsan,
If you want to add something to the choice labels, please follow this documentation https://docs.metabox.io/filters/#rwmb_choice_label
But there is no filter hook to add data attributes to each list element. You can create your own custom field type by following this documentation https://docs.metabox.io/custom-field-type/
Long Nguyen
ModeratorHi,
Can you please share your case to reproduce the issue? Is there a frontend submit shortcode added to the page by using Elementor? If you do not use the plugin Yoast SEO, you can go to Meta Box > Extensions > Turn off the extension MB for Yoast SEO.
Long Nguyen
ModeratorHi,
To compress the image uploaded, you can use a third-party plugin such as Smush https://wordpress.org/plugins/wp-smushit/
There is only the field
filethat supports uploading files to the custom folder. Please get more details on the documentation https://docs.metabox.io/fields/file/Long Nguyen
ModeratorHi Greg,
Thank you for your feedback.
I've informed the development team to check this case and get back to you later.
Long Nguyen
ModeratorHi Jon,
You can follow this documentation to know how to use the custom query in View https://docs.metabox.io/extensions/mb-views/#running-php-functions
Long Nguyen
ModeratorHi Ole,
You might need a lot of PHP code to create pagination, please follow this article to do that
https://codeblock.co.za/how-to-create-pagination-with-php/
or this topic https://stackoverflow.com/questions/22145259/simple-pagination-for-foreach-loop/22145442MB View does not support inserting complicated logic code as PHP does it works like a template.
Long Nguyen
ModeratorHi,
Thank you for your feedback.
This feature only works with the default table of WordPress
wp_postmeta. I will inform the development team to support this in the custom table.Long Nguyen
ModeratorHi Nicholas,
There is no way to delete the image when users leave the page without submitting the form with the field
image_advanced. You can use the fieldimageto achieve this goal, this field works like an HTML input file. It does not upload images to the media library if not submit the form.
https://docs.metabox.io/fields/image/Long Nguyen
ModeratorHi Nick,
Thanks for share a plugin.
I think it might not work with the MB Custom Table. The custom table extension creates the column key corresponding with the field ID, which is different from the
wp_posttable of WordPress or that plugin tries to do.We are also developing a feature that supports saving post content to the custom table. Hope this will be released in the next update.
Long Nguyen
ModeratorIt is removed.
Let me know if you have any questions.
Long Nguyen
ModeratorHi,
MB Custom Post Type extension does not have an option to add the CPT slug to the URL of the taxonomy like that. It just helps you to create a CPT, taxonomy visually instead of using the code.
For this case, you need to use the code to rewrite the taxonomy URL. This topic might help you to accomplish that https://www.ibenic.com/custom-wordpress-rewrite-rule-combine-taxonomy-post-type/
Long Nguyen
ModeratorHi,
The default settings
changeMonthandchangeYearare set totrue. You can change them tofalseby using the code'fields' => [ [ 'name' => __( 'Date', 'your-text-domain' ), 'id' => $prefix . 'date_90l222y2yyt', 'type' => 'datetime', 'js_options' => [ 'changeMonth' => false, 'changeYear' => false, ], ], ],Or Date Picker Options in the Builder https://share.getcloudapp.com/L1uBmwDw
Get more details here https://api.jqueryui.com/datepicker/#option-changeMonth
-
AuthorPosts