pidzejj
Forum Replies Created
-
Forum: Plugins
In reply to: [Nastavenia SK/CZ pre WooCommerce] Pri zmene stavu sa zmaže IČO DIČ IČ DPHPardon za dotaz, ale řešíte to nějak? Myslím, že by se spoustě uživatelům hodilo, kdyby se to nemazalo při změně stavu
Forum: Plugins
In reply to: [Nastavenia SK/CZ pre WooCommerce] Pri zmene stavu sa zmaže IČO DIČ IČ DPHMám ten stejný problém. WC 3.5.2, WP 4.9.8, plugin 2.0.2
Forum: Plugins
In reply to: [Nastavenia SK/CZ pre WooCommerce] Nákup na firmu zcela nahořeEDIT: Vyřešeno. Změnil jsem priority v souboru settings ve Vašem pluginu. Díky za tip!
Forum: Plugins
In reply to: [Nastavenia SK/CZ pre WooCommerce] Nákup na firmu zcela nahořeOmlouvám se, ale neumím programovat ve wordpressu. Jak zní syntaxe tohoto filtru?
Jestli to chápu správně, váše firemní pole se vloží kamsi doprostřed formuláře a mají tedy nějakou prioritu, takže by stačilo někde v nastavení prioritu změnit?dougaitken
Yes for single product it worked also in my site but i am talking about variant product. The problem appeared in this type of product. (Not single)
Now I have a solution. Some guy from another forum gave me this code:
add_filter( 'woocommerce_format_dimensions', 'change_formated_product_dimentions', 10, 2 ); function change_formated_product_dimentions( $dimension_string, $dimensions ){ if ( empty( $dimension_string ) ) return __( 'N/A', 'woocommerce' ); $dimensions = array_filter( array_map( 'wc_format_localized_decimal', $dimensions ) ); return implode( ' x ', $dimensions ) . get_option( 'woocommerce_dimension_unit' ); }Use it in function.php
It causes change of formatting in original woocommerce php file.The problem has been fixed. On another forum some guy gave me a php code to change format of woocommerce php file, which takes care about formatting of
×. Thanks for help