There is a whole new version of the site in the works, which will address a lot of useability issues like that. Watch this space! (Possibly for a long time, I do have a day job too!)
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Khris on Sun 28/05/2023 13:58:56Here's an optimized version:Code: JavaScript window.addEventListener("load", function() { document.querySelectorAll('a[href^="https://www.adventuregamestudio.co.uk/forums/profile/"]') .forEach(a => a.href = a.href.replace(/%20/g, "+")); });
Quote from: AGA on Sat 27/05/2023 01:26:50Thanks! I've added this to both themes' JS files, so no need for a local GreaseMonkey script. It's not quite perfect, as there are other places profile links appear, but this is a great starting point I can use to add other classes as I find them.Thanks, @Khris, I've adjusted it to the following, which is a bit more heavy handed, but should coves all eventualities. Let's see if it slows things down at all!
window.addEventListener("load", function () {
document.querySelectorAll('a').forEach(a => {
if (a.href.includes('https://www.adventuregamestudio.co.uk/forums/')) {
a.href = a.href.replace(/%20/g, "+");
}
});
});
Quote from: Khris on Tue 23/05/2023 23:13:46Here's a GreaseMonkey script that will fix this:Code: JavaScript // ==UserScript== // @name AGS profile link fix // @version 1 // @grant none // @match https://www.adventuregamestudio.co.uk/forums/* // ==/UserScript== window.addEventListener("load", function () { document.querySelectorAll(".poster h4 a, .postby a, .moderators a").forEach(a => { a.href = a.href.replace(/%20/g, "+"); }); });
(In case you don't want to use GreaseMonkey, simply replace the spaces in the username with + symbols)
Quote from: Crimson Wizard on Sat 01/04/2023 07:06:44@AGA thank you,
I noticed one problem: the button remains even though I removed the "in-development version" data (because there's no Beta version currently).
Quote from: eri0o on Sun 12/03/2023 15:03:42First thing would be setting a date
Cotswolds looks lovely
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.059 seconds with 20 queries.