Combination 'MB Include Exclude' and 'Meta Box Show Hide'

Support MB Include Exclude Combination 'MB Include Exclude' and 'Meta Box Show Hide'

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1238
    FlikweertFlikweert
    Participant

    Hi,

    I configured a number of meta boxes. In one of them i use the include / exclude method. In the other one I use the show / hide method. When i load the page in the admin that uses meta boxes with include / exclude, my browser crashes while it's trying to load the meta boxes which should actually be hidden with the show/hide plugin.

    'id' => 'page_contact',
    		'title'	=> 'Gegevens',
    		'pages'	=> array( 'page' ),
    		'include' => array(
                'slug' => array( 'contact' )
    		),
    $meta_boxes[] = array(
    		'id' => 'page_area_slider',
    		'title'	=> 'Afbeeldingen',
    		'pages'	=> array( 'page' ),
    		'show' => array(
                'template' => array( 'template/area.template.php' )
    		),
    		'fields' => array(
    #1239
    Anh TranAnh Tran
    Keymaster

    Hi Flikweert,

    I think the problem is not those plugins. They work well together. Basically, the Include Exclude extension decides whether or not load the meta box in a specific page and the Show/Hide decides whether or not show/hide it via Javascript (the meta box is loaded in this case). So it's fine to use them together.

    I guess the browser crashes because of another reason. Maybe there are a lot of JS or elements on the page. Or something else. Can you please give me more details to look into?

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Combination 'MB Include Exclude' and 'Meta Box Show Hide'’ is closed to new replies.