How to set the post title to my Name input field?

Support MB Frontend Submission How to set the post title to my Name input field?

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #9634
    EddyPiVEddyPiV
    Participant

    Hi,

    Probably a very basic question, with a very simple answer...

    I am new to MB. Built my first meta boxes, and using the Frontend Submission extenstion to create a first post.
    One of the fields is a Name field. Another field is "Elevator pitch"
    How can I set the post title to this Name field?
    Similar: how can I set the post extract to the value of "Elevator pitch"?

    I see a lot of coding in the documentation. I was expecting with all these extensions that I woulld not have to deal with this coding myself.

    Thanks for your help.

    #9635
    Anh TranAnh Tran
    Keymaster

    Hello,

    The post title is displayed in the post_fields attribute of the shortcode. Please use the MB Frontend Submission to add other fields to the form.

    In your situation, it sounds like changing the label for post title from "Post Title" to "Name".

    So, please create a folder in your theme called mb-frontend-submission. Inside that folder, create a sub-folder called post. And inside post, create a file title.php, which contains the following code (don't worry, just copy and paste):

    <?php
    $title = $data->post_id ? get_post_field( 'post_title', $data->post_id ) : '';
    $field = apply_filters( 'rwmb_frontend_post_title', array(
        'type' => 'text',
        'name' => esc_html__( 'Name', 'rwmb-frontend-submission' ),
        'id'   => 'post_title',
        'std'  => $title,
    ) );
    $field = RWMB_Field::call( 'normalize', $field );
    RWMB_Field::call( $field, 'admin_enqueue_scripts' );
    RWMB_Field::call( 'show', $field, false, $data->post_id );

    That's it!

    Please try and let me know how it works.

    #9648
    EddyPiVEddyPiV
    Participant

    Hi Anh,

    Thanks for your very quick respons. Impressed!

    Done as you requested, but no result.
    See here the title.php that I created like you said.
    https://1drv.ms/f/s!AiZg1q2e9vdxhBlxbs_Mz30DdS2c

    I have also tried with the same folder structure as for the template, like the Frontend Submission documentation describes.
    So I tried with as well as without the folder "template-parts" in the middle.
    No effect.

    #9649
    Anh TranAnh Tran
    Keymaster

    I see you use the folder template-parts. It should be without it (probably you did it, but please try again), like in this screenshot:

    https://i.imgur.com/WpmyMVI.png

    I've just tested and here is the result:

    https://i.imgur.com/pEpmbm9.png

    #9666
    EddyPiVEddyPiV
    Participant

    It's not working unfortunately.
    I added quite a number of fields in the meta box. For some reason, it is even no longer creating a post when I press the submit button.

    Let me know if you need access to the site.

    #9671
    Anh TranAnh Tran
    Keymaster

    Yes, please send me a temporary account to [email protected]. I’ll check it.

    #9674
    EddyPiVEddyPiV
    Participant

    Done. I have created a page frontend-submission.
    Good luck.

    #9736
    Anh TranAnh Tran
    Keymaster

    I've checked on your site and I see you created a field with ID post_title. But as it's a field in a meta box, it can't be a post field.

    To add post field, you need to change the shortcode to:

    [mb_frontend_form id="dominantgegevens,diensten" post_fields="title"]

    And the template for post title now works.

    Just a note: post fields (such as post title, editor, thumbnail, etc.) are not part of meta boxes, so you can't wrap it in tabs. They will appear above the tabs.

    Here is the screenshot of the page:

    http://prntscr.com/jmu4hs

    #9768
    EddyPiVEddyPiV
    Participant

    Thanks, that works great. I now see how to fill the standard WP post attribues, except the Category. I have tried to use the fiels Taxanomy, but that shows me a dropdown box, while I just want to hide it and assign a fixed value to it.
    Any suggestion?
    (I understand that this is different from my original question. If you want me to close this one and open a new thread, let me know.)

    #9776
    Anh TranAnh Tran
    Keymaster

    Hi,

    To assign a fixed value to the category, use the taxonomy field. And set the default value (std parameter) to the category ID. Then that default value will be used when you submit the form.

    In order to hide the field, just add a custom CSS class to the field (like hidden) and add this line into your theme, or in Customizer > Additional CSS:

    .hidden { display: none; }

    That's it. Please try and let me know how it goes.

    #9778
    EddyPiVEddyPiV
    Participant

    The issue is that I don't understand how to set the default value to the category in the meta box. I don't see it in the options, and if I need to set it through custom attribute, then how?

    #9800
    Anh TranAnh Tran
    Keymaster

    Oops, the Default value is missed from the Builder. I'll fix it asap. In the mean time, you can set via custom attribute. Just set the key to std and the value to ID of the category:

    https://i.imgur.com/8xep7GQ.png

    To get the category ID, see this screenshot:

    https://i.imgur.com/chsmVz1.png

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘How to set the post title to my Name input field?’ is closed to new replies.