Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,491 through 2,505 (of 3,702 total)
  • Author
    Posts
  • in reply to: Issue with complex form and columns #8027
    Anh TranAnh Tran
    Keymaster

    Hi guys,

    I've just pushed the new versions for both Meta Box and Columns extensions. Please update and let me know if you still see the bug.

    Thanks,
    Anh

    in reply to: Columns are not displayed #7994
    Anh TranAnh Tran
    Keymaster

    Hi,

    We have some bugs in the Columns extension. We have fixed it, but have to wait to release the new version of Meta Box (by the end of tomorrow) to make it works. Please wait.

    Thanks,
    Anh

    in reply to: edit post link of current post #7993
    Anh TranAnh Tran
    Keymaster

    Hi,

    Sorry, my previous code missed 1 last param. It should be:

    $link = add_query_arg( 'rwmb_frontend_field_post_id', get_the_ID(), $link );

    I have created an edit page on your site, another meta box for test and add the code to page.php to display the edit link. Please take a look.

    in reply to: edit post link of current post #7984
    Anh TranAnh Tran
    Keymaster

    Hi,

    The code home_url( '/page-a/' ) should output the link to page-a. Can you check the code again? Just to make sure you copy the right code.

    in reply to: change positions and translate labels #7961
    Anh TranAnh Tran
    Keymaster

    Hi,

    Yes, you can do that.

    To move the labels from left to top, you can add some CSS to your theme (in the Customizer > Additional CSS):

    .rwmb-label,
    .rwmb-label ~ .rwmb-input {
        width: 100%;
    }

    To translate the labels, there are some ways to do that:

    Method 1: translate the plugin using the Loco Translate plugin. Please follow this instruction.

    Method 2: translate the plugin by overwriting the template files. Please follow these steps:

    - Create a folder mb-frontend-submission in your theme.
    - Copy template files for Title, Content, ... that you want to change from MB Frontend Submission's templates folder to the new mb-frontend-submission above, keeping the same folder structure.
    - Modify the new template files, change the field name to something else if you want.

    Then save those files.

    Cheers,
    Anh

    in reply to: Show posts in select_advanced dropdown ordered by name #7960
    Anh TranAnh Tran
    Keymaster

    That's a little bit weird cause post_type can be either string or array. I will keep digging into this and see what happens.

    Anyway, glad that it resolves your problem.

    Merry Christmas.

    in reply to: Overwriting a filter #7959
    Anh TranAnh Tran
    Keymaster

    No problem :). If you find anything confused or need help, please just post here. I will try my best to explain it the easy way.

    Merry Christmas!

    in reply to: edit post link of current post #7958
    Anh TranAnh Tran
    Keymaster

    I got it.

    I think you can do like this:

    - Create a page for editing the posts (let's say page A) and paste the shortcode to the page content.
    - In any post, create a link to the page A, passing the post_id parameter via query string, like this:

    $link = home_url( '/page-a/' );
    $link = add_query_arg( 'rwmb_frontend_field_post_id', get_the_ID() );
    echo '<a href="', $link, '">Edit this post</a>';
    in reply to: Show posts in select_advanced dropdown ordered by name #7946
    Anh TranAnh Tran
    Keymaster

    Please try adding a parameter ’suppress_filters’ => true (or false) to the query_args. I read about this param somewhere but couldn’t find the correct post.

    in reply to: problems with parent page selection with post field. #7940
    Anh TranAnh Tran
    Keymaster

    Sorry, I forgot to bump the version 1.2.1 on the website. Please just update the MB Frontend Submission again.

    in reply to: Issue with complex form and columns #7939
    Anh TranAnh Tran
    Keymaster

    Hi,

    We've been working on this bug and completed rewrite the logic. Our tests run well. However, we want to test more before releasing. So @toddmckee can you please posts your code here for testing?

    in reply to: problems with parent page selection with post field. #7936
    Anh TranAnh Tran
    Keymaster

    Hi,

    I've found the bugs in both Meta Box and MB Frontend Submission. The new version for MB Frontend Submission has just been released. And the fix for Meta Box is available on Github, I will release new version soon.

    in reply to: Show posts in select_advanced dropdown ordered by name #7935
    Anh TranAnh Tran
    Keymaster

    I've tested again with a custom post type "Book" and it works for me:

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

    Here is my code:

    add_filter( 'rwmb_meta_boxes', 'your_prefix_post_demo' );
    function your_prefix_post_demo( $meta_boxes ) {
    	$meta_boxes[] = array(
    		'title'  => __( 'Post Field Demo', 'textdomain' ),
    		'post_types' => 'book',
    
    		'fields' => array(
    			array(
    				'name'        => __( 'Post', 'textdomain' ),
    				'id'          => 'post',
    				'type'        => 'post',
    				'post_type'   => array( 'book' ),
    				'field_type'  => 'select_advanced',
    				'placeholder' => __( 'Select an Item', 'textdomain' ),
    				'query_args'  => array(
    					'post_status'    => 'publish',
    					'posts_per_page' => - 1,
    					'order' => 'ASC',
    					'orderby' => 'name',
    				),
    			),
    		),
    	);
    	return $meta_boxes;
    }

    Do you run any plugin that modifies the query? Such as WPML?

    in reply to: Unique ID for nested group items? #7934
    Anh TranAnh Tran
    Keymaster

    Hi,

    The std is used to the field value. I think it's not the right element to use to create the statistics. Can you try using the hidden fields' IDs? They're dynamically changed when a new clone is created and unique.

    in reply to: Empty advanced fields in custom table #7923
    Anh TranAnh Tran
    Keymaster

    Hi Todd,

    Thanks for your feedback. It's actually a bug in the plugin. I've just released the new version. Please update and let me know if you still see it happens.

    Anh

Viewing 15 posts - 2,491 through 2,505 (of 3,702 total)