Hi cabhal,
We still working on this one, I’ll update this topic when a new release is out there!
Also if you want to remove structured data from the reviews you can add the following in your child theme functions.php
`function remove_parent_actions() {
remove_action(‘wp_footer’, ‘poka_add_structured_data’);
}
add_action( ‘init’, ‘remove_parent_actions’);
`