I found a few bugs
-
1. Local forms
I was testing the new local aggregated review forms and noticed that the form isn’t responsive for mobile. The
viewport metatag is missing in thecustomer-reviews-woocommerce/templates/form-header.phpfile.2. Uncompatible with WOOCS plugin
When a user gets a reminder email the
{list_products}variable shows products with prices. The price shows up using the correct currency symbol, but not the correct amount since the price is not using the conversion rate applied in the WOOCS plugin.My suggestion is to add another variable for emails instead of adding compatibility to the plugin since that’s easier. The new variable
{list_products_no_price}would show no prices in the products listed in the email.3. Untranslatable string in reminder email
When a user gets a new reminder email, the button at the bottom to add a review says “Review”, but that’s hard to translate in Spanish. Right now the translation says “Reseña”, but it should be something like “Añadir reseña” (Add review).
I checked the
customer-reviews-woocommerce/templates/email-review-reminder.phpfile and I can see it’s using the__( 'Review', 'customer-reviews-woocommerce' )string.I could translate that string, but doing that would mess up other parts of the plugin where that string is being used and it wouldn’t make any sense. So another suggestion would be to add a different string just for that button, something like
__( 'Add review', 'customer-reviews-woocommerce' ).
The topic ‘I found a few bugs’ is closed to new replies.