/*
Theme Name: Kowine Child
Theme URI: http://www.wpbingosite.com/kowine
Author: wpbingo
Description: This is a child theme for Kowine
Version: 1.0
Author URI: http://wpbingosite.com
Template: kowine
Text Domain: kowine-child
*/
/*************** ADD YOUR CUSTOM CSS HERE  ***************/
/* Stijl voor de Terug-knop op productpagina */
.back-to-results-btn {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.back-to-results-btn:hover {
    color: #000; /* Of je thema kleur, bijv #800020 */
    border-bottom-color: #000;
}
// Pas de tekst 'Beschikbaar via nabestelling' aan
add_filter( 'woocommerce_get_availability_text', 'schuitemaker_custom_backorder_text', 10, 2 );

function schuitemaker_custom_backorder_text( $text, $product ) {
    if ( $product->managing_stock() && $product->is_on_backorder( 1 ) ) {
        // Pas hieronder je tekst aan
        $text = 'Winkelvoorraad op, kan as. vrijdag worden verstuurd';
    }
    return $text;
}
