/*
Theme Name: WorkScout Child
Theme URI: http://workscout.in/
Template: workscout
Author: Purethemes
Author URI: http://purethemes.net/
Description: WordPress Job Board Theme
Tags: post-formats,theme-options,translation-ready,two-columns
Version: 4.0.9.1722121976
Updated: 2024-07-27 23:12:56

*/

/* Supprimer le texte "Powered By MemberPress WooCommerce Plus Integration" */
.mpwoo_credit {
    display: none !important;
}

/* Alternative plus spécifique si la première ne fonctionne pas */
div.mpwoo_credit[style*="text-align:center"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Masquer tout élément contenant ce texte */
*:contains("Powered By MemberPress WooCommerce Plus Integration") {
    display: none !important;
}

/* Supprimer l'élément parent si nécessaire */
.mpwoo_credit,
[class*="mpwoo"],
[class*="memberpress-woocommerce"] {
    display: none !important;
}

<script>
document.addEventListener('DOMContentLoaded', function() {
    // Supprimer l'élément avec la classe mpwoo_credit
    var creditElement = document.querySelector('.mpwoo_credit');
    if (creditElement) {
        creditElement.remove();
    }
    
    // Supprimer tout élément contenant le texte MemberPress
    var allElements = document.querySelectorAll('*');
    allElements.forEach(function(element) {
        if (element.textContent && element.textContent.includes('Powered By MemberPress WooCommerce Plus Integration')) {
            element.remove();
        }
    });
});
</script>

