i want to use this Skin only as a mobile skin, so that i can still use for Desktop purpose the Standard Vector Skin, is this possible and how?
Topic on Skin talk:Refreshed
No this is not possible
Yes this is possible. You need to install Extension:MobileDetect and add this code to your LocalSettings.php:
#######Mobile Detection -- change skin for mobile devices! and mobile only / desktop only views#########
require_once "$IP/extensions/MobileDetect/MobileDetect.php";
// Mobile skin
require_once "$IP/extensions/MobileDetect/MobileDetect.php";
$mobile = mobiledetect();
if ( $mobile === false ) $wgDefaultSkin = "vector"; # If not Mobile
if ( $mobile === true ) $wgDefaultSkin = "refreshed";
Before this code, you of course need to load the Refreshed skin and have it installed in your /skins folder.