Hi, Kathryn. Thank you for reaching out to me.
I was able to workaround the issue (but it’s still an issue).
If is there anyone with the same problem, what I did was to add these lines into child theme’s functions.php:
add_filter(‘body_class’, function (array $classes) {
if (in_array(‘single-jetpack-portfolio’, $classes)) {
return array_merge( $classes, array( ‘single-format-standard’,’single-thumbnail’ ));
}
else { return $classes; }
});
This will make a portfolio page to behave like a post page.
Regards.
I have this problem too. Not a great support service, right?