Forum Replies Created
-
AuthorPosts
-
June 27, 2022 at 10:35 PM in reply to: Customizing the background color, the dashboard AND More #36686
Long Nguyen
ModeratorHi Laurent,
As Loic said, you can contact GridBuilder support to ask how to pass the post ID to the MB Favorite shortcode to display the button on each post in the list.
Then you can add the shortcode in the block, or the template of list posts like the code above.Long Nguyen
ModeratorHi Joie,
You can follow this series https://metabox.io/create-ota-website-with-meta-box-p1/?swcfpc=1
to know how to create CPT and filter posts with coding. Basic knowledge about coding is needed to implement the code.Or follow this article to create a filter post with third-party plugins
https://metabox.io/create-simple-listing-meta-box-wp-grid-builder/?swcfpc=1June 26, 2022 at 11:07 PM in reply to: Whatsapp link to chat - filled with frontend submission data #36678Long Nguyen
ModeratorHi Joe,
I think you can try to use the filter hook
rwmb_frontend_redirector the action hookrwmb_frontend_after_processto redirect to Whatsapp social with the field value. For exampleadd_filter( 'rwmb_frontend_redirect', function( $redirect, $config ) { // Make sure you work on the correct form. if ( 'my-id' !== $config['id'] ) { return $redirect; } // Get submitted data via $_POST. $value = empty( $_POST['field_id'] ) ? null : $_POST['field_id']; $redirect = 'https://wa.me/49112112112?text=' . $value; return $redirect; }, 10, 2 );Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#general-hooks
Long Nguyen
ModeratorHi Peter,
Can you please share some screenshots of the issue on your site? Do you mean the field value, and post type ... do not display on the frontend after migrating? How about the backend?
Long Nguyen
ModeratorHi,
Following your screen record, I do not see the field
datehas a value for the optionSave Format. Please check this screen record to know how it works on my site https://monosnap.com/file/fYEbq0t0xuExHOyViPg0a1HE2fRmL9Long Nguyen
ModeratorHi,
Can you please share some screenshots on the Plugins page and admin dashboard? You can try to deactivate then re-activate those plugins.
June 25, 2022 at 10:17 AM in reply to: ✅Website (wordpress) slows down dramatically when I enable Metabox plugin #36668Long Nguyen
ModeratorHi Paul,
So you can see that activating the Meta Box plugin does not cause the slow-down issue. It might come from another one. For your live site, you can share your site credentials via the contact form https://metabox.io/contact/
I will help you to check the issue.Long Nguyen
ModeratorHi,
Please export the field group (Json file) and share it here, I will help you to check the issue with this. And you can also move this field group to the Trash and edit the View again. Let me know if the warning error disappears.
June 24, 2022 at 2:02 PM in reply to: How to order/sort related posts by title or custom field value? #36660Long Nguyen
ModeratorHi hartsook,
1. No, it is not possible to add the order parameter to the relationship shortcode. You can find the accepted attributes here https://docs.metabox.io/extensions/mb-relationships/#shortcode
2. The default order, orderby values are inherited from the WordPress settings. Please read more here https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
June 24, 2022 at 1:14 PM in reply to: ✅update post_id inside the DOM after the shortcode has rendered #36659Long Nguyen
ModeratorHi,
The attribute
post_idand other attributes of the form (form settings) are saved to the database in the tablewp_optionswith the keymbfs_key. Each form has its own key based on the form settings.
So it is possible to create a new form and set thepost_idto 0 and generate a new key to create a new post after submitting but you will need a lot of custom code to do that.Instead of modifying the
post_idattribute of the form, you can try to use the action hookrwmb_frontend_before_save_postand set the post_id to 0 to duplicate a post. For example:add_action( 'rwmb_frontend_before_save_post', function( $object ) { $object->post_id = 0; } );June 24, 2022 at 11:22 AM in reply to: ✅Geolocation failed to load - how to identify the issue? #36656Long Nguyen
ModeratorHi guys,
Can you please make sure that the extension MB Geolocation is enabled on Meta Box > Extensions page?
Long Nguyen
ModeratorHi Ole,
Can you please share the code that creates the custom fields on your site? The custom field that is selected in the View.
It is possible that the settingtypeandidwhen registering the field is missing.Long Nguyen
ModeratorHi,
I do not see that issue on my demo site. Can you please let me know how you output the field value?
You can also use the helper shortcode[rwmb_meta id="date_field_id"]to output the date value in the builder to re-check it.Long Nguyen
ModeratorHi,
The action buttons (remove, edit) are always shown on the mobile view, no need to use a custom CSS code to do that. And by default, the action buttons will display on the top-right of the image, I'm not sure somehow they display on the bottom-right of the image like in your case.
Can you please use an iPhone and recheck this issue? I see that you are using an Android phone.Long Nguyen
ModeratorHi John,
To pass an array of values to an argument in the builder, please use the Dot or JSON notation, screenshot https://monosnap.com/file/Y52APzCST2t15IZsC7SutZgJrtwRII
Read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/#dot-notation
Now you can see the relationship works on your site.
-
AuthorPosts