Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,676 through 3,690 (of 3,835 total)
  • Author
    Posts
  • 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/

    in reply to: Best licensing option #39419
    PeterPeter
    Moderator

    Hello Cynthia,

    I see you've also created a question in our ticket system. Our marketing team will get in touch with you shortly.

    in reply to: add users with forms #39418
    PeterPeter
    Moderator

    Hello there,

    Currently there is no field support registering users on the frontend. You need to use the user register shortcode or user another plugin to allow users to register on the frontend.

    PeterPeter
    Moderator

    Hello there,

    It is the standard behavior of the WordPress admin column. For example, if there is no post that has a category the column is still displayed. If you want to hide an admin column, please uncheck it in the Screen Options area.

    PeterPeter
    Moderator

    Hello Jan,

    Here is my screen record so that you can understand how the conditional logic works with other elements on the same page https://drive.google.com/file/d/1-jelzCptVwMPl_8p186pni4d9P4lTjUl/view?usp=sharing

    You can wrap the quform shortcode in a div with a specific ID and use the ID in the conditional logic code.

    add_filter( 'rwmb_outside_conditions', function( $conditions ) {
        $conditions['#quform-1'] = array(
            'visible' => ['#select_operations', 'drc_other'],
        );
        $conditions['#quform-14'] = array(
            'visible' => ['#select_operations', 'zimbabwe_other'],
        );
        $conditions['#quform-13'] = array(
            'visible' => ['#select_operations', 'zimbabwe_todal'],
        );
        $conditions['#quform-12'] = array(
            'visible' => ['#select_operations', 'zimbabwe_ccih_sabot'],
        );
        return $conditions;
    } );

    You can change form 1 form 14 with the shortcode on your site and put the code anywhere on the same page.

    <div id="quform-1">form 1</div>
    <div id="quform-14">form 14</div>
    <div id="quform-13">form 13</div>
    <div id="quform-12">form 12</div>

    Note: the select option value should be in lowercase, no space, like this

    drc_metalkol: Drc - Metalkol
    drc_other: Drc - Other
    mali_all: Mali - All
    mauritius_all: Mauritius - All
    mozambique_all: Mozambique - All
    south_africa_emsa: South Africa - Emsa
    south_africa_sabot: South Africa - Sabot
    south_africa_other: South Africa - Other
    zambia_chambishi: Zambia - Chambishi
    zambia_sabot: Zambia - Sabot
    zambia_other: Zambia - Other
    zimbabwe_ccih_sabot: Zimbabwe – Ccih (Sabot)
    zimbabwe_todal: Zimbabwe – Todal
    zimbabwe_other: Zimbabwe – Other
    PeterPeter
    Moderator

    Glad to hear it works.

    I'm not sure why this happens on your site because the argument ep_mask or permalink_epmask is not supported in MB Custom Post Type. But I will inform the development team to take a closer look at this issue and see if there is something we can do from our side.

    PeterPeter
    Moderator

    Hello,

    If you take a closer look in the database, table wp_postmeta, you can see the group field value save the data in a serialized string and of course, the output value is a string. MB Group uses this PHP function to serialize an array of subfield values https://www.php.net/manual/en/function.serialize.php

    You can add the (int) to set the type of data to integer as well. Thanks.

    in reply to: Request a refund #39395
    PeterPeter
    Moderator

    Hello Eric,

    Please send a request via this contact form https://metabox.io/contact/
    Our marketing team will process it. Thanks.

    in reply to: How to add a sidebar? #39394
    PeterPeter
    Moderator

    Hello Eddy,

    You can use the WordPress function get_sidebar() to get the sidebar in the view template.
    {{ mb.get_sidebar() }}

    Refer to the documentation https://developer.wordpress.org/reference/functions/get_sidebar/

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

    Hello,

    Saving the post title to the custom table will lead to some unexpected issues. If you want to do that, when registering the CPT, please uncheck the support fields Title, Editor.
    Then register 2 custom fields with ID title and content and save the value to the custom table.

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

    Hello there,

    Can you please let me know where do you create the shortcode mb_recipes_embed_code? Please try to use the helper function rwmb_meta() to output the field value.

    echo rwmb_meta( 'embed_code', '', 123 );

    where 123 is the post ID. Read more on the documentation https://docs.metabox.io/functions/rwmb-meta/

    in reply to: Display Relationship value in GenerateBlocks dynamic data #39390
    PeterPeter
    Moderator

    Hello,

    As I said before, you need to have a basic knowledge of PHP and WordPress coding to control the output data. Meta Box is not a tool with just a few clicks to set up anything on your site.
    Hope that makes sense.

Viewing 15 posts - 3,676 through 3,690 (of 3,835 total)