varganism
Forum Replies Created
-
Forum: Plugins
In reply to: [WooPrice Calculator] ISO-8859-1 –>> UTF-8Problem Solved by showing currency “грн” with using plugin “Saphali Woocommerce Russian”.
Forum: Plugins
In reply to: [WooPrice Calculator] ISO-8859-1 –>> UTF-8I checked “functions.php” – it is saved using the UTF-8 encoding.
All other products without using “WooPrice Calculator” showing currency “грн” correct. Only “WooPrice Calculator” products has this problem.Forum: Plugins
In reply to: [WooPrice Calculator] ISO-8859-1 –>> UTF-8Default Ukrainian currency in Woocommerce is a symbol “₴”, but usually all ecommerce in Ukraine use habitual reduction “грн”. For this i use code in functions.php:
add_filter( 'woocommerce_currencies', 'add_my_currency' ); function add_my_currency( $currencies ) { $currencies['UAH'] = __( 'Українська гривня', 'woocommerce' ); return $currencies; } add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2); function add_my_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'UAH': $currency_symbol = 'грн'; break; } return $currency_symbol; }Forum: Plugins
In reply to: [WooPrice Calculator] ISO-8859-1 –>> UTF-8Yes. 2.4.1
Please help me fix this.Forum: Fixing WordPress
In reply to: Make a thumbnail non-clickableWhat do you mean? What information do you need that you could help me?
Forum: Plugins
In reply to: [qTranslate] Problem with links qtranslate. "site.com/page?lang=en/&lang=en"Determined that the error occurred after I “qtranslate_hooks.php” added the line “add_filter (‘home_url’, ‘qtrans_convertURL’);”. It is necessary to solve “CLICKING ON THE HOME LINK RESETS TO THE DEFAULT LANGUAGE”. There are ideas to solve two problems?