Hi @RajaSekar,
You need to modify the plugin:
modify this lines:
ROOT/index.php
l.46 aprox.
Cookie::newInstance()->pop('osc-mobile-desktop', 'mobile') ; // remove
Cookie::newInstance()->push('osc-mobile-desktop', 'mobile') ; // add
Cookie::newInstance()->set() ;
...
l.61 aprox.
if ( $userAgent->is_mobile() && $desktopVersion != 'desktop') { // remove
if ( $userAgent->is_mobile() && $desktopVersion != 'desktop' || $desktopVersion == 'mobile' ) { // add
....
adding this function:
function show_switch_always()
{
$url = osc_base_url(true).'?desktop=mobile';
echo '<a href="'.$url.'" data-role="none" class="ui-link">'. __('Switch to Mobile version','mobile').'</a>';
}
then add the call function where you want usually at footer.php.
Regards.