Edit: Wow it works!
[ Post made via Samsung Galaxy S5 Active ]










I'm using notepad ++ the nexus is on that line & I want to add Samsung SM-G900F, would I need to edit it so it looked like this:Sniper_E wrote:Yes in the event/listener.php on line 365
[ Post made via Carrot Phone ]

Why did I have 2 KTU84P listed in that line? That was a copy/paste error.Bullseye wrote:I'm using notepad ++ the nexus is on that line & I want to add Samsung SM-G900F, would I need to edit it so it looked like this:
elseif (preg_match('/KTU84P|KTU84P/i|SMG900F',$user_agent))
I put the number SMG900F in my Google search bar and it pulled up a Samsung Galaxy S5Bullseye wrote:I have someone signed in using a Samsung SM-G900F, but it's not showing up.
Code: Select all
elseif (preg_match('/SM-G900P/i',$user_agent))
{
$status = 'Samsung Galaxy S5';
}




We may have stuck your device in the wrong case.Bullseye wrote:Noticed something odd, my Samsung Galaxy Tab 3 comes up as a note 3...
Code: Select all
elseif (preg_match('/SM-N9005|SM-P600/i',$user_agent))
{
$status = 'Samsung Galaxy Note 3';
}Code: Select all
elseif (preg_match('/SM-T310/i',$user_agent))
{
$status = 'Samsung Galaxy Tab 3';
}