forum.coppermine-gallery.net

Support => cpg1.6.x Support => cpg1.6 plugins => Topic started by: ericr23 on March 22, 2023, 10:42:06 pm

Title: Theme Switch - how to reset
Post by: ericr23 on March 22, 2023, 10:42:06 pm
I changed my user-agent to test Theme Switch on my desktop, but now it won't revert. How can I reset it after I've reverted my user-agent?
Title: Re: Theme Switch - how to reset
Post by: ericr23 on March 23, 2023, 10:14:22 pm
(I would have expected it to revert automatically upon detecting that I am back to my desktop user-agent.)
Title: Re: Theme Switch - how to reset
Post by: ericr23 on March 24, 2023, 09:16:41 pm
In the Theme Switch codebase, perhaps there needs to be an "else" routine with the following:
Code: [Select]
    if ($mobile_browser > 0) {
        define('MOBILE_BROWSER', TRUE);
        if (!$superCage->cookie->keyExists($CONFIG['cookie_name'].'_mobile_theme')) {
            define('MOBILE_VIEW', TRUE);
            if ($CONFIG['theme'] != $CONFIG['theme_switch_mobile_theme'] && !$superCage->get->keyExists('theme')) {
                $USER['theme'] = $CONFIG['theme_switch_mobile_theme'];
                user_save_profile();
                header('Location: '.urldecode($REFERER));
            }
        }
    }
Title: Re: Theme Switch - how to reset
Post by: Joe Carver on March 28, 2023, 03:34:38 pm
Quote
How can I reset it after I've reverted my user-agent?

To reset the theme to default use: yourdomain . com/index.php?theme=xxx.

Note that the theme=xxx request will reset any page the user happens to be on. Any theme on
the server can also be selected by naming the theme:  yourdomain . com/index.php?theme=eyeball
 
Title: Re: Theme Switch - how to reset
Post by: ericr23 on March 28, 2023, 05:50:34 pm
OK -- thanks.