Any one else seeing the GF symbol not taking you back to the App's Patterns section?

Lately I log in, click on the pre-designed pattern I want to print. If I realize I clicked the wrong item, I click the GF logo thing - that used to take me back to my design choices on the patterns I’ve created.

Now it seems to just open up another tab to gowforge.com and wants me to login - again.

The only way I have found around this is to close the app.gllowforge.com tab, open another and start again.

Not saying this is getting annopying, but it is.

4 Likes

Yes same thing happened here too

3 Likes

There have been many people who seem to prefer that method of navigation, but most of us just clicked the dashboard icon. They have only changed that one thing…they renamed the dashboard to CREATE. It’s in the same place and will always take you back to your designs.

6 Likes

In other words, you can try to re-train your muscle memory to click this button instead:

image

3 Likes

Also, for any TamperMonkey users, you can install this UserScript:

// ==UserScript==
// @name         Restore classic GF icon link to dashboard
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Clicking the GF logo should take you to the create page.
// @author       Christopher Masto
// @match        htt*://app.glowforge.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=glowforge.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let l = document.querySelector("a:has(.gf-iconWrapper)");
    if (l) {
        l.setAttribute("href", "/");
        l.removeAttribute("target");
    }
})();
6 Likes

This topic was automatically closed after 30 days. New replies are no longer allowed.