Add support for other plugins

In case you’re using a custom plugin that doesn’t look good with Kallyas, you can try to manually fix this by adding several lines of code into your child theme :

 

add_action( 'znhg_kallyas_vendors', 'znhg_add_vendor' );
function znhg_add_vendor( $vendors ){
$vendors->register_post_type('YOUR PLUGIN POST TYPE');
}

After this, just replace YOUR PLUGIN POST TYPE with the actual post type used by the plugin. In case you’re unsure what to type here, just ask the plugin developer for the post type.