Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorLet me know if you have any questions π
Long Nguyen
ModeratorHi Garth,
Can you please let me know the address that you want to search? And the map type, Google Map or OSM?
Long Nguyen
ModeratorHi Jorge,
On the frontend, the MB user dashboard does not support ending a post with custom fields on the current page like that. On the backend, you can try to use the plugin Admin Columns Pro to edit the field value in the table list (inline editing).
https://www.admincolumns.com/Long Nguyen
ModeratorHi,
Only the customer who purchased our product will have the account to log in to the support forum. If you don't want to share your account, you can tell him to create a ticket here https://metabox.io/contact/
or create a post on the MB group https://www.facebook.com/groups/metaboxusersAugust 15, 2022 at 11:14 AM in reply to: How to output/show the shortcode generated by other plugin as is in cp loop #37501Long Nguyen
ModeratorHi,
If the flipbook shortcode has already included the link to the book URL, you can just add the shortcode to the post content to render the link on the frontend.
Long Nguyen
ModeratorHi Garth,
Can you please share your site URL and some screenshots of the issue? You can also try to deactivate all plugins except Meta Box, MB AIO and switch to the standard theme of WordPress (Twenty TwentyTwo) and recheck this issue.
August 14, 2022 at 7:48 AM in reply to: Report card for students, automatic calculation and teacher input #37487Long Nguyen
ModeratorHi Jorge,
You can create a relationship between CPT Record and Weighting, then set the relation when editing the Record post.
To query Weighting posts in the loop of Record, you can create a nested loop by following this topic https://support.metabox.io/topic/query-in-relationship-post-per-page/#post-29149
Using PHP or Twig (in View) code is fine but you need to have the basic knowledge to understand how it works.
Long Nguyen
ModeratorHi,
When outputting the field value, you can simply add the HTML tag
<br>,<p>,<div>to display each value per line. Please follow this documentation https://docs.metabox.io/extensions/meta-box-group/#examplesLong Nguyen
ModeratorHi,
Please follow this article to know how to display multiple addresses/pins on a map https://metabox.io/display-all-listings-on-a-map/
August 14, 2022 at 7:04 AM in reply to: β FacetWP listing does not show Meta Box field value #37484Long Nguyen
ModeratorHi Arno,
In the Listings tab of Facet, when selecting a custom field, you can select the field ID instead of
{post_type} field nameto display the field value on the frontend. Screenshot https://monosnap.com/file/avHoXjHnziEd3HPAd2Xuxl6PXp1MJTAugust 13, 2022 at 3:20 PM in reply to: β FacetWP listing does not show Meta Box field value #37470Long Nguyen
ModeratorHi Arno,
Can you please share some screenshots of the issue on your site (full screen)?
Long Nguyen
ModeratorHi,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policyΒ https://metabox.io/support/topic/support-policy/Long Nguyen
ModeratorHi,
Thank you for reaching out.
Please follow this article to know how to create the license key https://metabox.io/meta-box-update-licensing-system/
if it does not help, please contact us at https://metabox.io/contact/, our development team will help you to check the issue.Long Nguyen
ModeratorHi guys,
Thanks for your feedback.
This issue has been resolved. Please go to the My Account page to download the plugin MB AIO again with the same version 1.16.4.
https://metabox.io/my-account/Long Nguyen
ModeratorHi,
If you are using the field type key_value to save value in the custom table, here is the correct code to add/update value
add_action( 'save_post', function( $post_id ) { $data2 = [ 'tracking_history_data' => [ ['key10', 'value10'], ['key11', 'value11'], ['key12', 'value12'] ] ]; \MetaBox\CustomTable\API::add( $post_id, "aaypmz_recoveroo_tracking_history", $data2 ); } ); -
AuthorPosts