• Ciao,

    dall’ultima versione (credo in realtà so che funziona per certo fino alla versione 2.1.6), la descrizione del metodo di pagamento e il titolo del pulsante d’acquisto, nel checkout, non sono più tradotti in Italiano, se si usa il “vecchio” checkout di WooCommerce (non a blocchi).

    Risulta anche a voi?

    Grazie

Viewing 1 replies (of 1 total)
  • Thread Starter Rocco Aliberti

    (@d4z_c0nf)

    Here’s a temporary hack to overcome this issue (you can place this code in your theme’s functions.php, after an opening tag):

    /* Fix Satispay strings */
    add_filter(
    	'woocommerce_available_payment_gateways',
    	function( $gateways ) {
    		if ( isset( $gateways['satispay'] ) ) {
    			$gateways['satispay']->description = 'Paga smart, con Satispay hai tutto a portata di app!';
    			$gateways['satispay']->method_description = 'Paga smart, con Satispay hai tutto a portata di app!';
    			$gateways['satispay']->order_button_text = 'Paga con Satispay';
    		}
    		return $gateways;
    	},
    	999
    );
Viewing 1 replies (of 1 total)
  • The topic ‘Traduzione descrizione metodo e testo pulsante acquista’ is closed to new replies.