/*
Theme Name: Solace Child 02
Theme URI: https://solacewp.com
Template: solace
Author: SolaceWP
Author URI: https://solacewp.com/author/
Description: Solace is a minimalist, and lightweight WordPress theme for creating beautiful, fast-loading, and accessible websites, as well as a new generation clean design blog theme. This theme is ideal for a fashion blog, lifestyle blog, travel blog, food blog, photography blog, and many other types of websites.
Tags: blog,e-commerce,food-and-drink,one-column,two-columns,right-sidebar,footer-widgets,full-width-template,threaded-comments,translation-ready,block-styles,wide-blocks
Version: 2.1.11.1754742757
Updated: 2025-08-09 15:32:37

*/
* Встановлює більший розмір для WooCommerce зображень у каталозі (thumbnail).
 */
add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
    return array(
        'width'  => 1200,
        'height' => 1200,
        'crop'   => 0,
    );
		   } );
// Встановлює більшу якість зображень у каталозі WooCommerce
add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
    return array(
        'width'  => 1200,
        'height' => 1200,
        'crop'   => 0,
    );
});

// Встановлює високу якість для головного фото на сторінці товару
add_filter( 'woocommerce_get_image_size_single', function( $size ) {
    return array(
        'width'  => 1600,
        'height' => 1600,
        'crop'   => 0,
    );
});

// Вимикає створення scaled-зображень (наприклад, -scaled.jpg)
add_filter( 'big_image_size_threshold', '__return_false' );

add_filter('woocommerce_no_available_payment_methods_message', 'vytvir_custom_no_payment_text');
function vytvir_custom_no_payment_text() {
    return 'Після оформлення замовлення ми звʼяжемось з вами для уточнення деталей і способу оплати. Оплата відбувається лише після погодження.';
}
add_action( 'after_setup_theme', function () {
    add_theme_support( 'woocommerce' );
} );

