Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,576 through 1,590 (of 3,707 total)
  • Author
    Posts
  • Anh TranAnh Tran
    Keymaster

    Hi,

    When you create a top-level settings page, make sure you create a sub-menu for the settings first. The first sub-menu will be used for the top-level menu. That's the default behavior in WordPress.

    So make sure your custom page is added after all settings page (top-menu and sub-menu) are added.

    in reply to: Adding New Post via Frontend Submission #12439
    Anh TranAnh Tran
    Keymaster

    That's weird. Can you send me a temporary account to check on your site?

    in reply to: Limit the number of "favorites" in radio buttons #12438
    Anh TranAnh Tran
    Keymaster

    Hi,

    I think this can be done with custom JavaScript only. So you need to enqueue a JS file, and in that file track the number of choice and show an alert when they select more.

    in reply to: Export and Import Settings data is possible? #12437
    Anh TranAnh Tran
    Keymaster

    Hi Aishwarya,

    All the settings are saved in a single option in the options table. You can write a code to get_option and update_option for your users. It's not built-in the plugin, though.

    in reply to: Title of post is removed after updating the post #12436
    Anh TranAnh Tran
    Keymaster

    Hi,

    Please add post_fields="title" to the shortcode. It will tell the extension to add post title field to the form and process its value.

    in reply to: Adding Admin Columns to CPT display #12434
    Anh TranAnh Tran
    Keymaster

    Hi Neil,

    It's the same problem as for Beaver Themer when you output a group field in the admin columns. It's not supported yet.

    when I add any values to the custom field form for my CPT “Packages” – the values dont’ save when I click Submit. so if no values are stored for my custom field that I want displayed in admin columns, will that prevent the title of the column from displaying too?

    Can you check why the fields are not saved? Without values, the column is still displayed in the table, but the column is empty. The column table is always displayed, though.

    in reply to: Cloning Groups of Fields on Backend (WP Admin Dashboard) #12433
    Anh TranAnh Tran
    Keymaster

    Ah, I got it. I think what you need is duplicate a whole group, including its sub-fields, don't you? If so, it's not supported yet. The duplicate feature is working on single-field basis.

    in reply to: Can I unistall extension #12432
    Anh TranAnh Tran
    Keymaster

    Hi,

    The data is still in the custom table when you uninstall the extension. However, the meta boxes will save new data to the post meta table when you create a new post or update an existing post.

    in reply to: API for creating/updating meta? #12394
    Anh TranAnh Tran
    Keymaster

    Hi, you can do that pretty easy with $wpdb:

    global $wpdb;
    $wpdb->update( 'your_table', array( 'field_1' => 'value_1', 'field_2' => 'value_2' ) );
    in reply to: Displaying Grouped MB Fields in Beaver Themer #12393
    Anh TranAnh Tran
    Keymaster

    Hi Neil,

    You're right. Until now, the group is not supported yet. I'll work on that later.

    in reply to: Show/hide metabox based on user permissions #12391
    Anh TranAnh Tran
    Keymaster

    Yes, it's possible, but in the MB Include Exclude extension. Please see the docs for the details.

    in reply to: Cloning Groups of Fields on Backend (WP Admin Dashboard) #12390
    Anh TranAnh Tran
    Keymaster

    Well, the back end is more supported than the front end 🙂 So, all you need to do is tick this checkbox for group in the Builder:

    https://imgur.elightup.com/CdTAmtX.png

    in reply to: Conditional logic does not work based on a taxonomy field #12389
    Anh TranAnh Tran
    Keymaster

    Hi Jacob,

    I think array( 'medium', 'in', array( 'buch' )) should work for taxonomy_advanced. Would you mind posting the code of meta box here for testing?

    in reply to: Fields with array in id not being saved #12388
    Anh TranAnh Tran
    Keymaster

    Hi,

    To use array in ID, it's better to use the MB Group. This issue is not only about the HTML output, but also the data saved in the database. I guess you want an array of values, so Group is exactly that.

    in reply to: Creating New Post Type w/ Frontend Submission #12387
    Anh TranAnh Tran
    Keymaster

    Hi Neil,

    Sorry for missing this topic. The post title is inserted in the form via a shortcode attribute. It's not a field. So it won't available in the Builder. Please check the post_fields attribute.

Viewing 15 posts - 1,576 through 1,590 (of 3,707 total)