Let's try to organise it more like we have in the past next year. Like longlisting destinations late 2023, garnering interest early 2024, booking spring 2024. I'll stick some reminders in my calendar.
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
Quote from: Stupot on Fri 27/01/2023 21:52:04Quote from: AGA on Fri 27/01/2023 16:33:55You aren't closing your BBCode tags correctly:
...
I've fixed all the instances I noticed for you.
Thanks for fixing my unclosed bold tags. I'm not sure how I let that happen.
This is not related to the issue I described above, though. The issue is about links. Whenever you have multiple links in one row of a table, they all come up orange when you hover over one of them.
Try hovering over one of these two links to two different urls
--Completed Games- -General Discussion--
Quote from: Stupot on Tue 24/01/2023 04:03:35I've noticed that if you have multiple links in a table, hovering over one link will highlight all of the links in the same row of that table, even though all the links definitely point to different pages.
https://www.adventuregamestudio.co.uk/forums/adventure-related-talk-chat/maggies-2022-play-and-vote/msg636653018/
Quote from: heltenjon on Tue 24/01/2023 14:36:58I noticed today by accident that if you time out while rating a game, the comment field will show up unsigned on the db games page. When I signed back in at the forums and returned to the game page, the comment was there, but my votes/rating had not been registered.
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.129 seconds with 18 queries.