alis030
Forum Replies Created
-
Hi Marta,
The plugin loco translate is terrific! Thanks for sharing it.
Have a great day!
Greg
<?php
/**
* Theme functions and definitions
*
* @package HelloElementorChild
*//**
* Load child theme css and optional scripts
*
* @return void
*/
function hello_elementor_child_enqueue_scripts()
{
wp_enqueue_style(
‘hello-elementor-child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
[
‘hello-elementor-theme-style’,
],
‘1.0.0’
);
function ele_disable_page_title($return)
{
return false;
}
add_filter(‘hello_elementor_page_title’, ‘ele_disable_page_title’);
}
add_action(‘wp_enqueue_scripts’, ‘hello_elementor_child_enqueue_scripts’, 20);add_filter(‘flexible_shipping_free_shipping_notice_text’, ‘wpdesk_flexible_shipping_free_shipping_notice_text’, 10, 2);
function wpdesk_flexible_shipping_free_shipping_notice_text($notice_text, $amount)
{
return sprintf(‘Bastano solo %1$s in più per avere la spedizione gratuita!’, wc_price($amount));
}Thank you @hchouhan,
I had the impression the data was lost.
Thank you so much for your fast response!