Add costum php in mobile

Posted in: Newspaper
Post count: 4

hi,
to run my amazon affiliate module i have to add this to functions.php
———–
// Amazon myproduct
add_action(‘wp_enqueue_scripts’, ‘add_my_amazon_css’);

function add_my_amazon_css() {

wp_enqueue_style(‘my_amazon_css’, ‘http://paolareghenzi.it/wp-content/plugins/my-amazon-products/css/style.css’);

}

?>
———–
and you can show: http://prntscr.com/g3gxrr

but in mobile theme i see it so: http://prntscr.com/g3gyau

Where do I have to add the code above put to see just from mobile?
thanks

Post count: 22421

Hello,
The code you add does not have any device restriction. It is a code that works for all devices at one. This will require further customization added to the code if the ad provider cannot provide such method. You cna try a few online resources on how to detect mobile devices :
https://stackoverflow.com/questions/4117555/simplest-way-to-detect-a-mobile-device

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.