Issues with detecting devices
-
Hi, I have issues with detecting on different devices. For example, on Windows and Android website is showing layout that is selected for Ipad and Ios. While on Macos it shows properly Windows,Linux,Macos version. On Iphones it also shows as it should Iphone,Ipad version. What might be the problem? Here’s code example.
<?php if ( wonderplugin_is_device('Windows,Linux,Mac')) { ?> <section class="ip-actions"> <!-- WEB GAME --> <section class="ip-image button main web"> <a href="<?php the_field('button_web_game_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_web_game_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- WEB GAME --> <!-- Button Apple --> <section class="ip-image button"> <a href="<?php the_field('button_apple_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apple_store_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Apple --> <!-- Button Google --> <section class="ip-image button"> <a href="<?php the_field('button_google_play_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_google_play_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Google --> <!-- Button APK --> <section class="ip-image button"> <a href="<?php the_field('button_apk_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apk_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button APK --> </section> <?php } ?> <?php if ( wonderplugin_is_device('iPhone, iPad') ) { ?> <section class="ip-actions"> <!-- Button Apple --> <section class="ip-image button main ios"> <a href="<?php the_field('button_apple_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apple_store_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Apple --> <!-- Button Google --> <section class="ip-image button"> <a href="<?php the_field('button_google_play_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_google_play_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Google --> <!-- Button APK --> <section class="ip-image button"> <a href="<?php the_field('button_apk_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apk_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button APK --> <!-- WEB GAME --> <section class="ip-image button"> <a href="<?php the_field('button_web_game_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_web_game_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- WEB GAME --> </section> <?php } ?> <?php if ( wonderplugin_is_device('Android') ) { ?> <section class="ip-actions"> <!-- Button APK --> <section class="ip-image button main android"> <a href="<?php the_field('button_apk_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apk_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button APK --> <!-- Button Google --> <section class="ip-image button"> <a href="<?php the_field('button_google_play_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_google_play_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Google --> <!-- Button Apple --> <section class="ip-image button"> <a href="<?php the_field('button_apple_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_apple_store_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- Button Apple --> <!-- WEB GAME --> <section class="ip-image button"> <a href="<?php the_field('button_web_game_link', 326) ?>" class="ip-link"> <!-- Image --> <img src="<?php the_field('button_web_game_image', 326) ?>" alt="" class="ip-media" /> <!-- Image --> </a> </section> <!-- WEB GAME --> </section> <?php } ?>
The page I need help with: [log in to see the link]
- The topic ‘Issues with detecting devices’ is closed to new replies.