How can I always "View Full Site" and NOT Mobile site?
To set your options to NEVER SEE THE MOBILE SKIN while you’re signed in:
From the top of page blue ribbon menu, go to My FlyerTalk
In the Menu go to Settings & Options
Select Edit Options
Select your display options as shown below
For those using Greasemonkey:
Originally Posted by
Spanish
All you need to do is add "?styleid=17" to the end of any Flyertalk URL.

For those with Greasemonkey, a simple script for you. You no needing to be logged in for this to be effective.
Here you go:
Code:
// ==UserScript==
// @name Flyertalk_Remove_Infinite_Scroll
// @match *://*.flyertalk.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
var oldUrlPath = window.location.pathname;
/*--- Test that "?styleid=17" is at end of URL, excepting any "hashes"
or searches.
*/
if (window.location.href.toString().indexOf("?styleid=17") != -1) return false;
if ( ! /\?styleid=17$/.test (oldUrlPath) ) {
var newURL = window.location.protocol + "//"
+ window.location.host
+ oldUrlPath + "?styleid=17"
+ window.location.search
+ window.location.hash
;
/*-- replace() puts the good page in the history instead of the
bad page.
*/
window.location.replace (newURL);
}
Last edited by JDiver; Jan 9, 2020 at 11:10 am