Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 3,708 total)
  • Author
    Posts
  • in reply to: Groups should be native functionality, not a premium extension #4009
    Anh TranAnh Tran
    Keymaster

    Hi Sam,

    Thanks a lot for your suggestion. Currently, Group is the most popular extension that generates most of the revenue for us. So, making it free hurts the business, at least at the moment. But that doesn't mean that we won't in the future. We need to grow the business while would like to give back to the community as much as possible.

    Regarding the Composer, we did release Meta Box as a standalone package on Packagelist, so using it with Composer is just easy. I'm not sure how to release a private repo on it and share the access to users. If you know any way or method to do that, please just tell me. I'm open to any idea.

    Thanks
    Anh

    Anh TranAnh Tran
    Keymaster

    Do you see any error in the Console? As the editor doesn't show up correctly, I guess the error comes from JavaScript. Any error in the console would help.

    in reply to: File Type Upload Error #3990
    Anh TranAnh Tran
    Keymaster

    Hi, we had a fix for that in the development version of the main plugin on Github. We'll release it soon later this week or early next week. In case of urgent, please download and use the development version.

    in reply to: Problem with metabox group #3989
    Anh TranAnh Tran
    Keymaster

    Hi, do you mean changing the hook from admin_init to init makes the error disappear? The init is being used in our development version which will be released soon.

    in reply to: File upload with Media Library? #3988
    Anh TranAnh Tran
    Keymaster

    Yes, you can use the media field to show a drag and drop area to upload files.

    in reply to: MB for Yoast SEO setup #3987
    Anh TranAnh Tran
    Keymaster

    Hi Mark,

    I made a screencast http://take.ms/rshlfx, can you please take a look? It just works for me for both new and existing posts.

    Anh TranAnh Tran
    Keymaster

    Just released a new version of MB Settings Page extension with fix for this. Please try it.

    Anh TranAnh Tran
    Keymaster

    Oh, I see the problem now. I'm working on it.

    in reply to: Nested groups problem #3971
    Anh TranAnh Tran
    Keymaster

    Hi,

    Currently, we can support only drag and drop clones within its parent. Moving it into another container (another group) actually breaks the JavaScript code ๐Ÿ™

    in reply to: Showing Metabox for only certain template. #3970
    Anh TranAnh Tran
    Keymaster

    Hi,

    Assuming you have a page template file called template-front-page.php in your theme folder and you want to create a meta box only for that page template, then please change the code to:

    add_filter( 'rwmb_meta_boxes', 'prefix_include_exclude_demo' );
    function prefix_include_exclude_demo( $meta_boxes ) {
    	$meta_boxes[] = array(
    		'title'   => 'Template - Home',
    		'include' => array(
    			'template' => array( 'template-front-home.php' ),
    		),
    		'fields'  => array(
    			array(
    				'name' => 'Name',
    				'id'   => 'name',
    				'type' => 'text',
    			),
    		),
    	);
    	return $meta_boxes;
    }

    The demo code has all possible conditions for include/exclude. You just need to remove what you don't need ๐Ÿ™‚

    in reply to: MB for Yoast SEO setup #3969
    Anh TranAnh Tran
    Keymaster

    Hi Mark,

    Please add custom attributes to text or textarea field like this:

    http://prntscr.com/cce6jw

    It works in my case. Can you please try again?

    in reply to: meta-box in the "themes folder" language settings #3968
    Anh TranAnh Tran
    Keymaster

    Hi,

    Do you mean including the plugin inside theme doesn't load the translation?

    in reply to: File Type Upload Error #3967
    Anh TranAnh Tran
    Keymaster

    Hi @eboss99s,

    Which version of Meta Box and MB Settings Page are you using? I'm testing with the latest version of MB Settings Page and development version of Meta Box and don't see the error.

    in reply to: Can not get value from field. #3966
    Anh TranAnh Tran
    Keymaster

    Hi,

    You're trying to get field value from a group, so please try this:

    $hero = rwmb_meta( 'home__hero' );
    if ( ! empty( $hero ) ) {
        $h4 = isset( $hero['rw_hometemp-hero-h4'] ) ? $hero['rw_hometemp-hero-h4'] : '';
        echo $h4;
    }
    in reply to: Remove data #3965
    Anh TranAnh Tran
    Keymaster

    Sorry for the delay support :(. I'm trying my best to support all the tickets. It sometimes takes time to fix the reported bugs.

    Regarding the problem with the frontend query, it's the permalink issue as the slug is changed. To fix it, simply go to Settings > Permalink and resave (you don't need to change anything).

    Please let me know if it works.
    Thanks

Viewing 15 posts - 3,061 through 3,075 (of 3,708 total)