Hi there! We have a small issue with php 8.1. It can be easily fixed as follows:
Line 77 in WebRotate360\ProductViewerStandard\ViewModel\WebRotatedStandard.php
return ltrim($product->getData('webrotate_path'), '/');
replace with:
return ltrim($product->getData('webrotate_path') ?? '', '/')...