Forum Replies Created
-
AuthorPosts
-
August 31, 2023 at 10:21 PM in reply to: ✅Custom Field content no longer editable/viewable in WordPress admin area #43105
Peter
ModeratorHello,
You can hover over the long-space area to read the description and click on it to open the field settings, screenshot https://imgur.com/K3DQj0V
If it does not work, please export the field group to a JSON file, I will import it on my demo site and check the issue. Refer to the documentation
https://docs.metabox.io/extensions/meta-box-builder/#export--importAugust 31, 2023 at 10:08 PM in reply to: Issue with Relationship not displaying connected posts #43104Peter
ModeratorHello,
Can you please share a screenshot of the relationship settings? Are the connected posts saved properly?
Peter
ModeratorHello Harald,
It is a setting in the builder only, works as its name so there isn't documentation about this. I can see the issue on my demo site and I've escalated it to the development team to fix it in the next update.
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
I do not see that issue on my demo site. The constant
RWMB_DIRshould return the path to themeta-boxplugin folder/wp-content/plugins/meta-box/.
You can output the constantRWMB_DIRon your site and see what displayed
echo RWMB_DIR;If it returns
/wp-content/plugins/meta-box/js/then it is the wrong path.August 30, 2023 at 10:33 PM in reply to: Issue with Relationship not displaying connected posts #43091Peter
ModeratorHello there,
After selecting some connected posts between Developers and Project and reloading the page, you can see the selected posts then the relationship works properly.
If you have trouble when outputting the relationship post with Bricks Builder, please contact Bricks support to get further assistance. The compatibility feature is maintained on their side.August 30, 2023 at 10:24 PM in reply to: How to display parent custom field in Views Shortcode for child post #43090Peter
ModeratorHello,
How do you set a Course Catalog as a parent post of a Course Session? Do you use the extension MB Relationships?
Peter
ModeratorHello Johnson,
How do you output the select field value? When using the loop to output the value, you can add a space between items. For example:
$values = rwmb_meta( 'my_field_id' ); foreach ( $values as $value ) : echo $value . ' '; endforeachRefer to the documentation https://docs.metabox.io/fields/select/
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/
-
AuthorPosts