add_action('wp_footer', 'custom_sticky_mobile_cart_pure_php');function custom_sticky_mobile_cart_pure_php() { // 1. ПРОВЕРКИ if ( ! is_product() ) return; global $product; if ( ! is_object( $product ) ) return;if ( ! $product->is_purchasable() || ! $product->is_in_stock() ) return;// 2. ПОДГОТОВКА ДАННЫХ $product_id = $product->get_id(); $is_simple = $product->is_type( 'simple' ); // Ссылка $url = $is_simple ? $product->add_to_cart_url() : '#product-summary'; // Классы $button_classes = 'button alt'; if ( $is_simple ) { $button_classes .= ' ajax_add_to_cart add_to_cart_button'; } else { $button_classes .= ' scroll-to-options'; } $button_text = esc_html( $product->single_add_to_cart_text() ); $product_name = mb_strimwidth( strip_tags( $product->get_name() ), 0, 25, '...' ); $price_html = $product->get_price_html(); // Получаем картинку (безопасно) $image_id = $product->get_image_id(); $image_html = ''; if ( $image_id ) { $image_html = wp_get_attachment_image( $image_id, array(40, 40), false, array('style' => 'border-radius:4px; margin-right:10px; object-fit:cover; width:40px; height:40px; display:block;') ); }// 3. ВЫВОД (ВСЕ ЧЕРЕЗ ECHO) // CSS Стили echo '';// HTML Разметка echo '