Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Matthias,
Thank you for reaching out.
Please follow this topic to get original size of the image or another thumbnail size https://support.metabox.io/topic/settings-page-image-output-stuck-in-150x150-configuration/
Long Nguyen
ModeratorHi,
I have not used the Search & Filter before but if you want to show the results in View, you can create a custom function in the file functions.php or Code Snippets
function show_my_posts() { $args = array('post_type' => 'post'); $args['search_filter_id'] = 123; $query = new WP_Query( $args ); while ( $query->have_posts() ) { $query->the_post(); echo get_the_title() . '<br>'; } wp_reset_postdata(); }then call it in View via proxy
{{ mb.show_my_posts() }}Long Nguyen
ModeratorHi Clay,
It is possible. You can create a custom field (type
text) with IDpost_titleto replace the default title. For default Post, use the code below to remove the default titleadd_action( 'init', function () { remove_post_type_support( 'post', 'title' ); } );Then you can use the shortcode
[rwmb_meta id='post_title']to show the post title.Refer:
https://docs.metabox.io/extensions/mb-frontend-submission/#reorder-post-fields
https://docs.metabox.io/save-wysiwyg-content-post-content/Long Nguyen
ModeratorHi Rebecca,
To compare two values, please use the equal comparison operator
==<?php if( rwmb_meta('field_id') == '1' ) { ?>Get more details here https://www.php.net/manual/en/language.operators.comparison.php
April 26, 2021 at 11:08 AM in reply to: ✅How to integrate reciprocal relationship in frontend #27643Long Nguyen
ModeratorHi,
Please follow this topic to know how to show relationships on the frontend form https://support.metabox.io/topic/mb-relationships-mb-frontend-submission/.
Long Nguyen
ModeratorHi,
Thank you for reaching out.
Currently, the helper shortcode
[rwmb_meta]does not support render shortcodes in the field value. If you use the field type WYSIWYG, please run it via PHP code. Get more details on this documentation https://docs.metabox.io/fields/wysiwyg/#template-usageLong Nguyen
ModeratorHi,
Thank you for your feedback.
I will inform the development team to support this option in future updates.
Long Nguyen
ModeratorHi Jackky,
Thank you for your feedback.
We've noticed this issue and it has been fixed on this commit. Please update the new version of Meta Box 5.3.10 to get updates.
Long Nguyen
ModeratorHi Ameneses,
Thank you for reaching out.
You need to use the HTML ordered lists
<ol><li></li></ol>display the post titles as an ordered list, get more details here https://www.w3schools.com/html/html_lists_ordered.aspThe code should be
<ol> {% set relationship = attribute( relationships, 'curso-capitulos' ) %} {% for post in relationship.to %} <li>{{ post.title }}</li> {% endfor %} </ol>Long Nguyen
ModeratorHi,
Please update MB Custom Post Type to the new version 2.1.1 to resolve this issue.
April 24, 2021 at 9:13 PM in reply to: ✅mb-frontend-submission > missing PO file for translation #27610Long Nguyen
ModeratorRelated topic https://support.metabox.io/topic/dashboard-columns-are-not-filterable/
Please update the new version of MB Frontend Submission v3.1.0 to get the PO file.
April 24, 2021 at 8:54 PM in reply to: ✅Trying to pull the URL for a file upload from Settings Page using Shortcode #27608Long Nguyen
ModeratorHi,
Please take a look at my screen record to know how to show the image from the settings page https://share.getcloudapp.com/ApuYXd8N.
If it still troubles you, please share the code that creates the settings page and custom fields, I will help you to check.
Long Nguyen
ModeratorThanks for your additional information.
I'm also using the MacOs and MAMP to create the localhost and do not see any issue. However, the extension works as well on your live site so I will mark this topic as resolved.
April 24, 2021 at 6:31 PM in reply to: ✅Display URL custom field as a button dynamically without using a page builder #27605Long Nguyen
ModeratorThank you for your feedback.
I will inform the development team to improve the shortcode to show the link on the frontend for the field type
url.April 24, 2021 at 6:29 PM in reply to: ✅Shortcodes - integration with Gutenberg, and how to use them inside a link #27604Long Nguyen
Moderator@Sascha,
Did you replace the
field_idwith your real field ID? The field value will show on the frontend after saving the post. See more on my screen record https://share.getcloudapp.com/d5u1OkNN -
AuthorPosts