/**
Theme Name: Astra-Child-PAW
Author: Passionate about Websites
Author URI: https://heartwww.com/
Description: This is a child theme for use with the Astra theme.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-paw
Template: astra
*/

// Hide Elementor Pro Upgrade Nags
add_action('admin_head', 'remove_elementor_nags');
function remove_elementor_nags() {
    echo '<style>
        .update-nag, .elementor-message, .elementor-alert { display: none !important; }
    </style>';
}

// Force hide the Elementor Editor bottom panel upgrade link
add_action('elementor/editor/after_enqueue_styles', 'custom_hide_elementor_pro_nag');
function custom_hide_elementor_pro_nag() {
    echo '<style>
        #elementor-panel-footer-go-pro,
        .elementor-panel-footer-go-pro,
        div[class*="elementor-panel-footer-go-pro"] { 
            display: none !important; 
        }
    </style>';
}
