Figured it out! Here was the original child theme code from my functions.php file:
<?php
update_option(‘siteurl’,’https://domain.com’);
update_option(‘home’,’https://domain’);
add_theme_support( ‘avia_custom_shop_page’ );
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
As you can see, I missed the “.com” after my domain name. Sheesh. In a hurry. Take care,