/* ========================================================== ✅ FORCE SHOW Contact Bar on Product Page (Call + WhatsApp) Guaranteed output even if theme ignores WooCommerce hooks Phone: +974 66513777 ========================================================== */ add_action('wp_footer', 'wostin_force_contact_bar_footer', 9999); function wostin_force_contact_bar_footer() { // حاولنا نحدد "صفحة المنتج" بأكثر من طريقة: // 1) WooCommerce product page // 2) أي صفحة URL فيها /product/ أو /products/ // 3) أي صفحة فيها add-to-cart في الرابط (شائع بصفحات المنتجات) $is_product = false; if (function_exists('is_product') && is_product()) { $is_product = true; } $req = isset($_SERVER['REQUEST_URI']) ? strtolower($_SERVER['REQUEST_URI']) : ''; if (strpos($req, '/product/') !== false || strpos($req, '/products/') !== false) { $is_product = true; } if (isset($_GET['add-to-cart'])) { $is_product = true; } if (!$is_product) return; // رقمك $phone_display = '+974 66513777'; $phone_tel = '+97466513777'; $whatsapp = '97466513777'; // لغة الصفحة (WPML/Polylang/RTL fallback) $lang = 'en'; if (defined('ICL_LANGUAGE_CODE') && ICL_LANGUAGE_CODE) { $lang = ICL_LANGUAGE_CODE; } elseif (function_exists('pll_current_language')) { $lang = pll_current_language('slug'); } elseif (is_rtl()) { $lang = 'ar'; } $is_ar = (strpos($lang, 'ar') !== false); $call = $is_ar ? '📞 اتصال' : '📞 Call'; $wa = $is_ar ? '💬 واتساب' : '💬 WhatsApp'; // رسالة واتساب (لو ما في عنوان/رابط، بنبعتها عامة) $title = function_exists('get_the_title') ? get_the_title() : ''; $url = function_exists('get_permalink') ? get_permalink() : ''; $msg = $is_ar ? "مرحبا، عندي استفسار: {$title} - {$url}" : "Hi, I have a question: {$title} - {$url}"; $wa_url = 'https://wa.me/' . $whatsapp . '?text=' . rawurlencode($msg); // HTML echo '
' . esc_html($call) . ' ' . esc_html($wa) . ' ' . esc_html($phone_display) . '

Order your garbage bin in Qatar today and streamline your waste collection with durable, efficient bins for both indoor and outdoor use.

We supply a full range of garbage bins suitable for every settingresidential villas, shopping malls, offices, schools, hotels and industrial facilities.

Whether you need a compact indoor bin for a lobby or a large outdoor bin for heavy refuse, we’ve got you covered.

Our bins are built from high-quality materials, designed for durability and ease of use, and delivered across Qatar.
Choose the size, model and volume that matches your site requirementsour team handles supply, delivery and placement so you can focus on your operations.

Key Features

Indoor models: compact, sleek design for offices, lobbies, hospitality spaces

Outdoor models: weather-resistant, heavy-duty builds for high-traffic or open areas

Flexible capacity options to suit small, medium or large waste volumes

Full service: selection assistance, delivery & placement in Qatar

Ideal for commercial, residential and industrial applications
Call +974 6651 3777 or fill out our online form now to select the right garbage bin for your location and get your quote in Qatar.

'; } /* CSS للبار (ينحقن تلقائياً) */ add_action('wp_head', 'wostin_contact_bar_css', 9999); function wostin_contact_bar_css() { echo ' '; }