Send this to all your favourite moots and pass the pumpkin round! KEEP THE PUMPKIN TRAIN GOING ππ€ππ€π
LYS! Gosh, you're the sweetest! Thank you from the bottom of my heart pumpkin, I'm smiling so much right now! Come over here and let me give you the biggest virtual hug. <33333 Love u!
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
β Live Streamingβ Interactive Chatβ Private Showsβ HD Quality
Anya is LIVE right now
FREE
Free to watch β’ No registration required β’ HD streaming
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
β Live Streamingβ Interactive Chatβ Private Showsβ HD Quality
Anya is LIVE right now
FREE
Free to watch β’ No registration required β’ HD streaming
hi Sage! Iβm having a little issue with the coral theme on my sideblog @finrodingoldo (in case you need to check it out!); the back to top button doesnβt work/get activated at all unless the updates are turned on. is it possible to tweak the code for the back to top button to be on by default and not restricted by the usage of the updates tag? Thanks in advance! π
oh yes sorry, the code has been updated but for those who already have the theme i'll show you what to do below the cut, it's a simple fix!
go to the scripts section at the very bottom of the code (you can also search '// date') and find the following:
// Date
function updateDate() {
let today = new Date();
// return number
let dayName = today.getDay(),
dayNum = today.getDate(),
month = today.getMonth();
const months = [
"jan",
"feb",
"mar",
"apr",
"may",
"jun",
"jul",
"aug",
"sept",
"oct",
"nov",
"dec",
];
const dayWeek = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
// value -> ID of the html element
const IDCollection = ["day", "daynum", "month"];
// return value array with number as a index
const val = [dayWeek[dayName], dayNum, months[month]];
for (let i = 0; i < IDCollection.length; i++) {
document.getElementById(IDCollection[i]).firstChild.nodeValue = val[i];
}
}
updateDate();
we just need to wrap this section in {block:ifUpdates}{/block:ifUpdates}
put {block:ifUpdates} above // Date and {/block:ifUpdates} below updateDate();
it should now look like this:
{block:ifUpdates}
// Date
function updateDate() {
let today = new Date();
// return number
let dayName = today.getDay(),
dayNum = today.getDate(),
month = today.getMonth();
const months = [
"jan",
"feb",
"mar",
"apr",
"may",
"jun",
"jul",
"aug",
"sept",
"oct",
"nov",
"dec",
];
const dayWeek = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
// value -> ID of the html element
const IDCollection = ["day", "daynum", "month"];
// return value array with number as a index
const val = [dayWeek[dayName], dayNum, months[month]];
for (let i = 0; i < IDCollection.length; i++) {
document.getElementById(IDCollection[i]).firstChild.nodeValue = val[i];
}
}
updateDate();
{/block:ifUpdates}