Hello @hsipani ,
Thanks for the clarification. I understood your expected goal.
First, let me explain how WooCommerce makes it work. In WooCommerce the ratings are shown on the product summary only when a rating is available. We can add additional information so that it shows a message when there are no reviews available. For this, you will have to edit this template –
wp-content > plugins > woocommerce > single-product > rating.php
I have extended the last part of the file to have an else condition, like this –
<?php else :
$current_product = get_permalink($product->get_id());
printf('<a href="%s">Be the first to review</a>', $current_product.'#tab-reviews');
endif; ?>
The outcome is like this – https://prnt.sc/10aqcn7.
To extend this behavior and open the actual Review tab from below you can follow this guideline and replace the “description” tab to “reviews” tab – Access WooCommerce Product Tabs Directly via URL
Now, all of the above solutions work for the default WooCommerce single product templates. Since you are using Elementor to design your single product template they can have different ways to manage this. Product rating is a Pro feature so I am unable to test it out.
I will recommend getting in touch with Elementor to know how can you make it work as your expectation while using their product rating widget.
Thank you ??