Hi..
Download notepad++ so you can see the line which you are having a problem.
The problem says, line 50.
So open wc-functions.php in notepad++ and scroll down to line 50.
the problem is the missing ‘$’ character.
line 50: if ( isset( $vr[‘regular_price’] ) && isset( vr[‘sale_price’] ) ) {
it must be like this
if ( isset( $vr[‘regular_price’] ) && isset( $vr[‘sale_price’] ) ) {
this will fix your problem.