How can I fix a liquid syntax error in my product template?

hello i am getting this error this can be resolved

Liquid syntax error (sections/product-template.liquid line 117): Expected id but found end_of_string in “{{ ‘products.general.sale_price’ | }}”

Think this might be that you’ve wrapped the liquid variable in the apostrophes, so it reads it as a string rather than the variable. You also don’t need the filter at the end but don’t think that would cause an error. Try this instead:

{{ products.general.sale_price }}

I don’t off the top of my head remember if that’s a valid liquid variable but that should at least resolve that particular error.