Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,646 through 3,660 (of 3,866 total)
  • Author
    Posts
  • in reply to: Possible Conflict with Map Custom Field #39626
    PeterPeter
    Moderator

    Hello,

    Can you please update MB Views 1.11.4 or Meta Box AIO 1.16.7 to the latest version to fix this issue?
    Let me know how it goes.

    in reply to: Select advanced limited to 10 items #39625
    PeterPeter
    Moderator

    Hello Kevin,

    If you are using the object field like post, user, term and use the field type select_advanced, you can set the setting ajax to false to disable ajax load. By default, the ajax is set to true to load 10 items only.
    Please read more on the documentation https://docs.metabox.io/fields/post/#enabledisable-ajax-requests
    and screenshot https://monosnap.com/file/uMokUpsHYrJVVMBntBDji1P9jLu1uc

    in reply to: Site down with the AIO update of the 5th december #39624
    PeterPeter
    Moderator

    Hello Erik,

    Can you please update Meta Box to the latest version 5.6.13 to see if it fixes the issue?

    PeterPeter
    Moderator

    Hello Doug,

    The admin column of Meta Box might not work the same as the default column of WordPress. I will inform the development team to consider supporting filter by taxonomy on the backend.

    Regarding the meta box do not display on the edit page, can you please share some screenshots about that? Or check in the Preferences box when editing the page.
    https://wordpress.org/support/article/preferences-overview/

    in reply to: Meta Box not recognizing our staging environment #39622
    PeterPeter
    Moderator

    Hi Mark,

    The staging or development domain should not contain "www". Can you please try it out?

    The only difference is the staging site is not counted as a live site when activating the license key. Other features are the same as a live site.

    in reply to: Recent update has caused an error #39597
    PeterPeter
    Moderator

    Hello,

    This issue has been fixed in this commit https://github.com/wpmetabox/meta-box/commit/7ca1d85f7a685cdfabd85bdb65691b638ab4c747
    You can try to apply the code on your site while waiting for the new update of Meta Box.

    Thanks.

    PeterPeter
    Moderator

    Hello Keith,

    The extension MB Frontend Submission does not support a button to change the post status. With some custom code, you can create a custom field and set the post status on your own. Please read more on this topic https://support.metabox.io/topic/controlling-post-status-in-front-end-dashboard

    in reply to: How to validate for forbidden words? #39595
    PeterPeter
    Moderator

    Hello,

    The variable $GET['field_id1'] helps you to get the field value when comparing in the condition, so replacing it means nothing.
    If you are not familiar with coding, I recommend contacting an expert developer to help you in this case.

    Thanks.

    in reply to: Elementor Theme Builder > MB Group Skin Does Not Exist #39594
    PeterPeter
    Moderator

    Hello Bret,

    Can you please share some screenshots or a screen record of the issue on your site? Please make sure that you have the latest version of Meta Box 5.6.12 and Meta Box AIO 1.16.7.

    in reply to: MB View - Gridbuilder Card #39592
    PeterPeter
    Moderator

    Hello,

    I do not see you use the custom variable in the view content. Can you please read my replies above again?
    https://support.metabox.io/topic/mb-view-gridbuilder-card/#post-39436
    https://support.metabox.io/topic/mb-view-gridbuilder-card/#post-39459

    View content: {{ mb.rwmb_meta( 'mg_projet_localisation', '', post_id ) }}
    (missing the close parenthesis)

    If it still does not work, I recommend using PHP code instead of Twig code (View) to display the post meta in the card. For example:

    function render_custom_field_email_block() {
    	// Object can be a post, term or user.
    	$object = wpgb_get_object();
    
    	// If this is not a post (you may change this condition for user or term).
    	if ( ! isset( $object->post_type ) ) {
    		return;
    	}
    	// You have to change "custom_field_name" by yours.
    	echo rwmb_meta( 'mg_projet_localisation', '', $object->ID )  ; //pass the ID from object above
    }
    in reply to: Change register and login title above the form #39591
    PeterPeter
    Moderator

    Hello Christian,

    There is no option to change this title, but you can add this custom CSS code to Appearance > Customize > Additional CSS, to hide in ton the frontend.

    .mbup-form .rwmb-meta-box > h2 {
        display: none;
    }
    in reply to: Display googlemap in views #39590
    PeterPeter
    Moderator

    Hello Chris,

    If you want to display a subfield Google map in MB Views, please create a custom function to add the API key to the function render_map() like the code above then add the function to the view editor to render the map. In the view editor, it is not supported.

    PeterPeter
    Moderator

    Hello Jason,

    The helper function rwmb_ will return a useful array of image info

    So if you want to get the image ID only, please consider using the WordPress function get_post_meta(), then use the join() function to convert it to a string and pass it to the shortcode attribute. For example:

    $p_photos = get_post_meta( get_the_ID(), 'my_field_id' ) ;
    $p_photos = join( ',', $p_photos );
    in reply to: recent update breaks site #39586
    PeterPeter
    Moderator

    @Arno: Thank you for your suggestion, I inform the development team about that and send a beta version to the community (like FB) before creating a new major update. Meanwhile, our development team is still working to fix issues. If you guys experience any issues, please let me know, I will forward it to the team.

    Thanks.

    @Edoardo: Can you please let me know the error message appears on your site?

    in reply to: Recent update has caused an error #39568
    PeterPeter
    Moderator

    Hello Olivier,

    Thanks for your feedback.

    This issue has been noticed and it will be fixed in the next update. Hopefully, it will be available soon.

Viewing 15 posts - 3,646 through 3,660 (of 3,866 total)