<?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));
}
-
This reply was modified 2 years, 4 months ago by alis030.
-
This reply was modified 2 years, 4 months ago by alis030.