-
Posts
9 -
Joined
-
Last visited
Reputation Activity
-
hansiel got a reaction from sarahjam in Ways to Edit, Move, and Organize Contacts in Mailing Lists?
Also wondering about this. No way is this a useful feature if we can't edit.
Also would like option to import with tags or edit multiple contacts tags at once.
This mailing list "feature" is a marketing hoax. Really unfortunate. My confidence in Squarespace providing a clean and simple solution for their customers just dropped like 100 points. This is ridiculous.
-
hansiel got a reaction from Begona in Multilanguage code possibilities in 7.1.
Hey, I found a solution to translate all of the event elements: the months, pagination, "back to all events," etc.
Put this in the HEADER (and scroll below to see what goes in the FOOTER).
HEADER:
<!-- Translate event elements-- Squarespace circle forum and chatgpt thankyou -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://momentjs.com/downloads/moment-with-locales.js"></script>
<script>
$(document).ready(function() {
// Translate specific terms
$(".eventitem-sourceurl").each(function() {
var htmlContent = $(this).html();
$(this).html(htmlContent.replace("Source:", "Vir:"));
});
$(".eventitem-meta-item.eventitem-meta-cats.event-meta-item").each(function() {
var htmlContent = $(this).html();
$(this).html(htmlContent.replace("Posted In:", "Objavljeno v:"));
});
$(".eventitem-meta-item.eventitem-meta-tags.event-meta-item").each(function() {
var htmlContent = $(this).html();
$(this).html(htmlContent.replace("Tagged:", "Označeno:"));
});
// Translate dates in event pagination
$(".events-item-pagination-date").each(function() {
var originalText = $(this).text(); // Get the original text of the element
var momentDate = moment(originalText, 'D MMMM'); // Parse the date
if (momentDate.isValid()) { // Check if the date is valid
var translatedDate = momentDate.locale('sl').format('D MMMM'); // Translate the date to Slovenian
$(this).text(translatedDate); // Update the text with the translated date
}
});
// Translate the event date
if ($(".event-date").length) {
var translate = moment($(".event-date").attr("datetime")).locale("sl").format('dddd, MMMM D, YYYY');
$(".event-date").html(translate);
$(".product-price")
.contents()
.filter(function() {
return this.nodeType == 3;
}).remove();
}
});
</script>
----------
FOOTER
<!-- Translate 'Back to All Events' on Squarespace 7.1 ------------------------------------->
<script>
window.addEventListener('DOMContentLoaded', (event) => {
var backEvents = document.querySelector(".eventitem-backlink");
if (backEvents) {
backEvents.innerHTML = "Nazaj na tabore in aktivnosti";
}
})
</script>
-
hansiel reacted to crabfrog in Custom members paywall page
The paywall should be the sales page. Because the way it works now, it is extremely confusing for users who have already signed up for a member area and still see the "sales" page.
It makes zero sense for those to be different pages, though it would be nice to be able to define a logged-in vs not view.
My site organization/IA is a mess with all the sales pages for each of my membership areas, I really really really need the ability to fully edit the paywall page and treat it as the sales landing/marketing landing page. This is so silly.
-
hansiel got a reaction from a11spark in Ways to Edit, Move, and Organize Contacts in Mailing Lists?
Also wondering about this. No way is this a useful feature if we can't edit.
Also would like option to import with tags or edit multiple contacts tags at once.
This mailing list "feature" is a marketing hoax. Really unfortunate. My confidence in Squarespace providing a clean and simple solution for their customers just dropped like 100 points. This is ridiculous.
-
hansiel got a reaction from southbaydays in Email section colors invert in dark mode
Any word on this? I'm still experiencing the same issue.
It should look like this:
But in dark mode it changes into a nasty green:
-
hansiel got a reaction from Kronos13 in Ways to Edit, Move, and Organize Contacts in Mailing Lists?
Also wondering about this. No way is this a useful feature if we can't edit.
Also would like option to import with tags or edit multiple contacts tags at once.
This mailing list "feature" is a marketing hoax. Really unfortunate. My confidence in Squarespace providing a clean and simple solution for their customers just dropped like 100 points. This is ridiculous.