dasnyal
Forum Replies Created
-
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] 5 Stars are duplicatedI disabled all the plugins and activated them again. There was no additional review-plugin, but somehow the problem is gone now. Thank you very much!
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] 5 Stars are duplicatedIt is created from the shortcode [cusrev_reviews]. I also tried to disable all plugins and changed the theme to storefront.
Please see the attached screenshot: https://ibb.co/w6GkxmwForum: Plugins
In reply to: [Customer Reviews for WooCommerce] 5 Stars are duplicatedI added your code to the themes child functions.php and cleared the cache, but the stars are still displayed 2 times.
It is working now as it should.
Thank you very much!@martapaw
It is still not working for me.
Now the format of the address looks like this:{name}
{country}
{address_1}
{address_2}
{city} {postcode}
{Email}The City and the postcode is rotated and the country should be after the postode and city.
Same problem here.
I tried to remove the line breaks by defining a format with this code, but it didn’t change anything.add_filter( 'woocommerce_localisation_address_formats', 'woocommerce_custom_address_format' ); function woocommerce_custom_address_format( $formats ) { $formats['DE'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; $formats['AT'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; $formats['BE'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; $formats['CH'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; $formats['IT'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; $formats['PL'] = "{name}\n{company}\n{address_1} {address_2}\n{postcode} {city}\n{state}\n{country}"; return $formats; }
Is there already a fix for this bug?