Hi Robert,
Thanks for your kind words, and sorry about my delay (lot of work and a deadline in the same week!).
Regarding your question, I haven’t tried it yet, but I think that is possible to accomplish something like you mentioned. I remember that someone asked me the same question, and I answered this:
—
Not at this moment. Plugin is intended to work on every page of your site, but you can alter this behaviour by yourself in particular.
Go to plugin’s folder, then “methods” and open loadgo_sitewide.php file. Add at the beginning your check to allow or not default’s plugin behaviour. For example:
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
$allowed_id = 1;
if ( get_the_ID() !== $allowed_id ) exit; // Execute LoadGo only on specific page
$options = get_option('loadgo_options');
I don’t remember exactly if get_the_ID() function will return a valid value inside a plugin, but I hope you can get the intention.
—
I can only recommend you to try something like I described it. I will add this feature soon, but cannot guarantee you a date.
Best regards,
-Fran