Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Zenjukai,
For optimization, the location items only show 10 items. You can type some keywords to search the page that you want to add.
May 27, 2021 at 10:14 AM in reply to: โ How to - Horoscope Monthly and Weekly / 12 zodiac sign with date field. #28451Long Nguyen
ModeratorHi Erobus,
The monthly horoscope and weekly horoscope might have different content so I think you should create two custom post types to separate them. Use the extension MB Custom Post Type to create the post types easily, get more details on the documentation https://docs.metabox.io/creating-post-types/.
Long Nguyen
ModeratorLet me know if you have any questions ๐
Long Nguyen
ModeratorHi Chris,
The Type and Location option of View needs the extension MB Conditional Logic enabled. Go to Meta Box > Extensions to enable it.
But after the selection works, I see that the View cannot override the template of the Product Category of WooCommerce. For other taxonomies of post types, it still works. I will inform the development team to check this case and get back to you later.
Long Nguyen
ModeratorHi,
It is possible that the SVG image does not have thumbnails. You can try to use the key
full_urlorurl. Get more details on the documentation https://docs.metabox.io/fields/image-advanced/#template-usage<img src="{{ item.full_url }}" alt="{{ item.alt }}"> <img src="{{ item.url }}" alt="{{ item.alt }}">Long Nguyen
ModeratorHi Igor,
Thank you for your feedback.
I've informed the development team to fix this issue in the next update.
Long Nguyen
ModeratorHi Cheok,
There is an extension of Meta Box, MB Relationships, which helps you to create relations between objects (post, term, user). Then if you want to restrict the user to view something, you can use a role editor plugin like User Role Editor https://wordpress.org/plugins/user-role-editor/
This extension also creates a separate table in the database so you do not need to create your own table.
Long Nguyen
ModeratorHi,
You need to add the argument
taxonomyto get posts from certain taxonomy.{% set args = { post_type: 'project', posts_per_page: 10, tax_query: [ { taxonomy: 'taxonomy-slug', field: 'slug', terms: 'term-slug' } ] } %}Refer to this topic https://support.metabox.io/topic/displaying-two-cpts-in-custom-taxonomy-term/
May 25, 2021 at 5:33 PM in reply to: โ Error: There are some errors submitting the form. Please correct and try again #28414Long Nguyen
ModeratorHi Luigi,
It's the default message of Validation, you can change the message by using code, follow this documentation https://docs.metabox.io/validation/#validation-with-jquery-validation-plugin
Or change the message by using Builder, screenshot https://share.getcloudapp.com/L1uBolDw
Long Nguyen
ModeratorHi Joseph,
Please follow this topic https://support.metabox.io/topic/tailwindcss/ to know how to use the Tailwind CSS in View.
Do the same if you want to use Bootstrap https://getbootstrap.com/docs/4.3/getting-started/introduction/
Long Nguyen
ModeratorHi guys,
To use the Tailwind CSS in View, you just need to add a
<link>tag with the CDN link to the Template Editor. For example:<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">Screenshot https://share.getcloudapp.com/2NuqYe5L
Get more details on their docs https://tailwindcss.com/docs/installation#using-tailwind-via-cdn
May 25, 2021 at 5:16 PM in reply to: โ Re-indexing loses data of custom fields in the FacetWP index #28411Long Nguyen
ModeratorHi Tom,
Thank you for your feedback.
I also experience that issue with the field value saved in the custom table. It is possible that something goes wrong in the new version of both plugins. I will inform the development team to check this issue and get back to you later.
Long Nguyen
ModeratorHi,
Please follow this topic to use MarkerCluser in the OSM map https://gis.stackexchange.com/questions/109732/how-to-use-leaflet-marker-cluster-on-markers-from-leaflet-layerjson-overpass-ap
May 25, 2021 at 12:09 PM in reply to: โ Get Featured Image post_thumbnail not working in Custom Fields #28403Long Nguyen
ModeratorHi Joseph,
Post object does not have property
post_thumbnaillikepost_titleorpost_content. To get the featured image, please use the WordPress function get_the_post_thumbnail().Refer to this topic https://support.metabox.io/topic/get-post-thumbnail-connect-relationship/
Long Nguyen
ModeratorHi,
It is possible that the PHP settings
max_input_varson your hosting have a lower value, please follow this article to resolve this issue and let me know if it helped.
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/ -
AuthorPosts