Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,776 through 2,790 (of 3,958 total)
  • Author
    Posts
  • in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5999
    Anh TranAnh Tran
    Keymaster

    Hi, I haven’t received your email. Can you please send again?

    in reply to: Problem with Featured Image Field #5998
    Anh TranAnh Tran
    Keymaster

    Thank you @Jackky for your help! That's correct.

    @David: Please take a look at media translation guide from WPML. Make sure you enable this feature. It allows using the same media files in content in different languages.

    in reply to: How to load MetaBox only for backend #5997
    Anh TranAnh Tran
    Keymaster

    If you want to run Meta Box only in the backend, you can wrap the code to register meta box within if ( is_admin() ), like this:

    if ( is_admin() ) {
        add_filter( 'rwmb_meta_boxes', 'your_function' );
    }

    Please note that this code will break helper functions to get meta values in the frontend. So please use with care.

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5985
    Anh TranAnh Tran
    Keymaster

    OK, please send to my email [email protected]. Thanks.

    in reply to: Clonable Group inherits previous conditional fields #5983
    Anh TranAnh Tran
    Keymaster

    Dear Internative,

    I've double checked the plugin and see that it works properly. Here is my code from the group example:

    
    add_filter( 'rwmb_meta_boxes', 'meta_box_group_demo_register' );
    function meta_box_group_demo_register( $meta_boxes ) {
    	$meta_boxes[] = array(
    		'title'  => __( 'Album Tracks' ),
    		'fields' => array(
    			array(
    				'id'     => 'standard',
    				// Group field
    				'type'   => 'group',
    				// Clone whole group?
    				'clone'  => true,
    				// Drag and drop clones to reorder them?
    				'sort_clone' => true,
    				// Sub-fields
    				'fields' => array(
                        array(
    						'name'    => __( 'Genre', 'rwmb' ),
    						'id'      => 'genre',
    						'type'    => 'select_advanced',
    						'options' => array(
    							'pop'  => __( 'Pop', 'rwmb' ),
    							'rock' => __( 'Rock', 'rwmb' ),
    						),
    					),
    					array(
    						'name' => __( 'Track name', 'rwmb' ),
    						'id'   => 'text',
    						'type' => 'text',
                            'visible' => ['genre', '!=', '']
    					),
    					array(
    						'name' => __( 'Release Date', 'rwmb' ),
    						'id'   => 'date',
    						'type' => 'date',
                            'visible' => ['genre', '!=', '']
    					),
    				),
    			),
    		),
    	);
    	return $meta_boxes;
    }
    

    Can you please paste your code here so I can check?

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5977
    Anh TranAnh Tran
    Keymaster

    Please try clear browser cache. We have updated some JavaScript files, which requires clearing browser cache to work.

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5975
    Anh TranAnh Tran
    Keymaster

    Hi again,

    This bug is fixed. Please update **both** Meta Box and Group.

    in reply to: Post title, Post Featured Image #5974
    Anh TranAnh Tran
    Keymaster

    Hi,

    The Builder extension actually has nothing with the Frontend Submission extension. Because the Frontend Submission uses a shortcode to display the form. And the fields "Post Title" and "Post Featured Image" are set in the shortcode. They're not part of the meta box, so Builder can't help.

    in reply to: Make a unique clone value #5973
    Anh TranAnh Tran
    Keymaster

    I think we can leave that for users to choose the values. Although it sounds OK for selects, it seems to be unusual for other field types.

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5957
    Anh TranAnh Tran
    Keymaster

    We're having a problem when cloning a group, which has a cloned wysiwyg field. The generated ID for the wysiwyg must be unique. We're trying our best to fix it this week. We'll keep you posted.

    in reply to: Retrieve posts custom fields in a loop #5956
    Anh TranAnh Tran
    Keymaster

    If you're in a loop and called the function $query->the_post(), then you don't need to pass any variable. The current post ID (retrieved via get_the_ID()) is passed by default.

    If that doesn't work, please post the code you use in the loop.

    in reply to: Retrieve posts custom fields in a loop #5948
    Anh TranAnh Tran
    Keymaster

    You need to pass the $post_id as the last parameter in the rwmb_meta function. Please read this docs for details.

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5940
    Anh TranAnh Tran
    Keymaster

    Yes, please. It helps tracking easier.

    in reply to: Wyiswyg doesnt cloning (WP 4.7.5) #5933
    Anh TranAnh Tran
    Keymaster

    Hi @i.ugarov, we're fixing it. Will be done soon 🙂

    in reply to: AIO Plugin ZIP seems corrupt #5918
    Anh TranAnh Tran
    Keymaster

    Sorry, I've updated the file, please update.

Viewing 15 posts - 2,776 through 2,790 (of 3,958 total)