i have added the following code for custom post types.
***********************************************
add_filter(‘eshop_post_types’,’mycustomtype’);
function mycustomtype($array){
$array=array(‘mytype’);
return $array;
}
***********************************************
from here –> https://quirm.net/forum/topic.php?id=2850
that’s why taxes not working.
Can i use custom post types with taxes?