Skip to content
This repository has been archived by the owner on Dec 17, 2018. It is now read-only.

Troubleshooting

devterminal edited this page Nov 17, 2014 · 3 revisions

CMB_META_BOX_URL Issues

If you're having issues with CMB not loading its files properly, you can modify the CMB_META_BOX_URL via the cmb_meta_box_url filter.

function update_cmb_meta_box_url( $url ) {
	// modify the url here
	return $url;
}
add_filter( 'cmb_meta_box_url', 'update_cmb_meta_box_url' );