Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,616 through 3,630 (of 3,786 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello Jan,

    Let me check that issue on your site.

    in reply to: Custom queries while using Breakdance causing a TWIG issue #39443
    PeterPeter
    Moderator

    Hello,

    Please share it via this contact form https://metabox.io/contact/

    Thank you.

    in reply to: How to disable "Comments" for Custom post Type? #39441
    PeterPeter
    Moderator

    Hello,

    When creating/editing the custom post type, you can go to the tab Supports and disable option Comments to remove the comment box for that post type.

    If you are using the code, please read more on the documentation https://developer.wordpress.org/reference/functions/register_post_type/#supports

    in reply to: How to assign custom taxonomies to users? #39440
    PeterPeter
    Moderator

    Hello,

    Using the custom taxonomy for user is not a good solution, WordPress itself does not support taxonomy for user officially. It also cannot be done with Meta Box.
    You can create custom fields for user (user meta) to store extra data for each user.

    Or I think you can create a custom post type called Users, for example, then you can use the custom taxonomy or custom fields as you want.

    PeterPeter
    Moderator

    Hello,

    Can you please deactivate all plugins (including Oxygen) and follow the documentation below to output the field OSM with the helper function rwmb_meta() and see if it helps?
    https://docs.metabox.io/fields/osm/#template-usage

    I think it could be a conflicting JS code with another plugin.

    in reply to: Views is broken #39437
    PeterPeter
    Moderator

    Hello there,

    Can you please let me know the steps to reproduce the issue? I'm just using the type Shortcode and putting your code to the post content and do not see any issue.

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

    Hello,

    To understand how to pass the custom data to the View shortcode, please do the following steps:

    1. View code: just print out the post ID

    Post ID: {{ post_id }}

    2. PHP code that works with Gridbuilder

    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 do_shortcode('[mbv name="wpgb-card-meta" post_id='. $object->ID .']'); //pass the ID from object above
    }

    Let me know how it goes.

    PeterPeter
    Moderator

    Hello,

    Sorry for the misunderstanding, the style "display: none" is added to the wrapper element inside the rwmb-column element so it is not possible to hide the column if the wrapper is hidden. I will inform the development team to consider supporting this case in future updates.

    Thanks.

    in reply to: Custom queries while using Breakdance causing a TWIG issue #39428
    PeterPeter
    Moderator

    Hello Jim,

    It could be a compatibility issue with Breakdance, can you please share a copy of this plugin with me? I will inform the development team to check it and see if there is something we can do from our side.

    Thanks.

    in reply to: Inject HTML through custom field - Sanitization #39427
    PeterPeter
    Moderator

    Hello,

    If the third parameter (post ID) is blank, that means the current post ID is used. In this case, you can just use the field ID as the first parameter.

    <?php echo rwmb_meta('embed_code'); ?>

    in reply to: How to use custom table data in Pionet Grid? #39426
    PeterPeter
    Moderator

    Hi,

    Sorry about missing the info, "official support from Piotnet Grid Builder" that means they create the integration with Meta Box and support the integration. As you can see the integration with Elementor, the integration is officially supported by us.

    in reply to: Cancellation and Regfund #39425
    PeterPeter
    Moderator

    Hello,

    Please submit a ticket here https://metabox.io/contact/
    Our marketing team will help you to process the request. Thanks.

    in reply to: Views with relationships: order by date #39424
    PeterPeter
    Moderator

    Hello,

    Changing the order 'DESC' to 'ASC' will change the sorting posts and the argument looks working correctly. It could be a caching issue if you do not see the changes.

    Please read more the WP query parameters here https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters

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

    Hello,

    The view template support passing the variable to the view shortcode. So you can pass the post ID and use the ID in the template as well. Can you please share the view code that you use variable post_id?

    Please read more on the documentation https://docs.metabox.io/extensions/mb-views/#custom-data

    in reply to: Save CPT content and title to MB Custom Table? #39420
    PeterPeter
    Moderator

    Hello,

    I see the post permalink is not generated, so the search form and other plugins might not work if the title is missing. I'm not sure what other issues will happen so far.

    As I understand it is not possible to "load Gutenberg into a Metabox-generated field that is saving to a Custom Table". But if you create a custom table with custom fields, you can save the field value to the custom table as the post fields as well.

    Please read more on the documentation https://docs.metabox.io/extensions/mb-blocks/

Viewing 15 posts - 3,616 through 3,630 (of 3,786 total)