<?function woodmart_child_enqueue_styles() {
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( 'woodmart-style' ),
        woodmart_get_theme_info( 'Version' )
    );
}
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles' );
/*
Theme Name: Woodmart Child
Description: Woodmart Child Theme
Author: XTemos
Template: woodmart
Version: 1.0.0
Text Domain: woodmart
*/
 * Enqueue script and styles for woodmart child theme
 */
function woodmart_child_enqueue_styles() {
	wp_enqueue_style(woodmart 
		'child-style',
		get_stylesheet_directory_uri() . '/style.css',
		array( 'woodmart-style' ),
		woodmart_get_theme_info( 'Version' )
	);
}
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 10010 );

/**
 * Hide the "Create an account?" field visually
 */
add_action('wp_head', 'hide_create_account_field_completely');

function hide_create_account_field_completely() {
    if (is_checkout()) {
        echo '<style>.create-account { display: none !important; }</style>';
    }
}

/**
 * Change Add to Cart button text on single product page
 */
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' );

function woocommerce_custom_single_add_to_cart_text() {
    return __( 'Enroll Now', 'woocommerce' );
}

/**
 * Change Add to Cart button text on archive/shop pages
 */
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );

function woocommerce_custom_product_add_to_cart_text() {
    return __( 'Enroll Now', 'woocommerce' );
}

/**
 * Remove question marks from content
 */
add_filter('the_content', 'remove_question_marks_from_content');

function remove_question_marks_from_content($content) {
    $content = str_replace('????', '', $content);
    return $content;
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://smvdigitech.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://smvdigitech.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-posts-courses-1.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-posts-lesson-1.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-posts-lesson-2.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://smvdigitech.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
