Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Liam,
You can go to the folder /wp-content/uploads/year/month/ and check the actual large dimension (width and height) of the image after uploading to WordPress and being cropped.
Peter
ModeratorHello,
Do you use the View template or custom block on the testing page? If yes, please share the code of the Twig code you used on your site.
You can also try to deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and check this issue again.Peter
ModeratorHello,
Please export the field group to a JSON file and share it here, I will check this on my local site. Read more in the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
August 29, 2023 at 8:17 PM in reply to: Custom database with custom upload_dir for images problem #43076Peter
ModeratorHello,
You can use the WordPress function
maybe_unserialize()to decode the value
https://developer.wordpress.org/reference/functions/maybe_unserialize/
https://stackoverflow.com/questions/25766378/wordpress-show-unserialize-data-in-a-smart-wayOr use the helper function:
$args = [ 'storage_type' => 'custom_table', 'table' => EVENT_TABLE_NAME, ]; $value = rwmb_meta( 'image_main', $args, $event_id ); echo $value;Peter
ModeratorHello,
You can use the setting
query_argsand set the taxonomy argument to filter posts displayed in the list by taxonomy.
Refer to the documentation
https://docs.metabox.io/fields/post/
https://developer.wordpress.org/reference/classes/wp_query/#taxonomy-parametersPeter
ModeratorHello,
The default thumbnail size of WordPress is 150x150px and I see the image displays in the admin column with that size. Screenshot https://imgur.com/uCfAbaR
You can try to use this custom CSS code to change the size of the image in the admin column
#mb-admin-columns-imageFieldID img { width: 70px; height: 70px; }Peter
ModeratorHello,
Supporting a custom code for your specific needs is beyond our scope of support. We offer a customization service with an extra fee. Please contact us here if it works for you. https://metabox.io/contact/
August 28, 2023 at 9:05 PM in reply to: Custom database with custom upload_dir for images problem #43064Peter
ModeratorHello Rob,
What is "decode" in this case? You can simply follow the documentation below to get the field value that is stored in a custom table.
https://docs.metabox.io/extensions/mb-custom-table/#getting-field-valuePeter
ModeratorHello,
I do not see the video URL in your comment. Can you please recheck this?
Peter
ModeratorHello,
You can set the min value to
-9999999999then add the negative number again.August 27, 2023 at 10:55 PM in reply to: ✅Redering for only post content area repeats the display of the posts #43056Peter
ModeratorHello,
I assume that the Type of the View template is Archive and you are using a query loop to display a list of posts. So you should select the option "The layout between header and footer".
Also, if you want to display a sidebar, please follow a topic that you've created https://support.metabox.io/topic/how-to-add-a-sidebar/Peter
ModeratorHello,
The error log indicates the issue comes from the plugin Oxygen builder. You can deactivate this plugin and try to edit the field group again.
Peter
ModeratorHello,
Currently, there isn't a way to add custom fields to the Product Data section of WooCommerce. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello,
The custom field variable in the builder is created by Bricks builder so I recommend contacting Bricks support to get more information.
Peter
ModeratorHello,
Currently, the validation does not work with a subfield in a group. Our development team is working on this issue to fix it. Meanwhile, you can try to use the extension MB Text Limiter.
Please read more in the documentation https://docs.metabox.io/extensions/meta-box-text-limiter/
-
AuthorPosts