HUSKY - Product Filter for WooCommerce

Cihaza Göre Farklı Filtre CSS'si (WOOF_HELPER::is_mobile_device)

Bazen kullanıcılar, istemci cihaza <PC veya Mobil> bağlı olarak site css'ini değiştirmek isteyebilir. Bunu, mevcut WordPress temanızın footer.php dosyasına yerleştirilmesi gereken aşağıdaki kod örneği ile yapabilirsiniz:

<?php 
if (WOOF_HELPER::is_mobile_device()): ?>
 <style type="text/css">
                .woof_show_auto_form {
                    display: inline-block !important;
                }
            </style>

            <?php else: ?>
            <style type="text/css">
                .woof_show_auto_form {
                    display: none !important;
                }
            </style> 
<?php endif; ?>

Mevcut örnek, woof otomatik form düğmesinin PC'de nasıl gizleneceğini ve mobil cihazlarda nasıl gösterileceğini göstermektedir …