Dynamic variable for using in php conditions – dynamic content
-
I have to fix a website which has a method to detect if the user is on mobile or desktop and according to that value some things happend in the theme files, like adding or not a css file or showing a video or not.
The site fails when navigating on desktop, sometimes the mobile version loads instead of desktop.
I imagine this is because in the theme files there’re some things like:
<?php if($movil) : ?> <link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/responsive.css?v=3" type="text/css" media="screen" />
Is there a way to fix this? to allow that sections to be dynamic? I thought about creating a SC plugin to do something, but every time that conditions is made would be a new plugin right?
Thanks
- The topic ‘Dynamic variable for using in php conditions – dynamic content’ is closed to new replies.