Use only the overall score for reviews

Posted in: Newspaper
Post count: 137

Really liking the review-functionality. However it would in many cases be neat to be able to set only the total score without having to use the broken down scores (that you ad).

As of right now at least one of the part-scores need to be added to display the review-table.

Is there a way to only set an overall score with the text box (summary) next to it? Without any smaller/broken down scores.

Post count: 20688

Hi,

Well you could use some css for this, like here if you are using a stars based review – https://www.screencast.com/t/MobNKsJReS7W or here for the other two options – https://www.screencast.com/t/RseaZj8VC
These are the codes used, just enter the one that applies in your case, in Theme panel->Custom Css

.td-review-row-stars,
.td-review-header {
display:none;
}

.td-review-row-bars,
.td-review-header {
display:none;
}

Thanks

Post count: 137

Hi,

Works great. The only odd issue is that when you look at the page through mobile-view (or push the browser window to mobile size) the top border dissapears. Any ideas why that is and how to fix it?

Otherwise great solution!

Post count: 20688

Hi,

That happens because the border is set on one of the review rows, that are hidden now through the code provided. A solution would be to set a border top on the summary like this – https://www.screencast.com/t/b3LA4G1aTC5r This is the code used

.td-review-summary {
border-top: 1px solid #ededed!important;
}

Thanks

Post count: 137

Beautiful! Thank you so much!

🙂 Have a great weekend!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.