Replacing “Now onwards” text
-
Hi,
Like many others, I’m trying to replace the “Now onwards” text that appears in the list view. I don’t want to translate it, but it just sounds bad to me, and I’d rather have it say “Upcoming” instead. I noticed that your demo does exactly that, but my plugin doesn’t. I have the latest update (Version 5.7.0). I don’t want to add a plugin for this small change.
I tried adding this to functions.php with no success:$custom_text = [ 'onwards' => 'Upcoming', ];
I also tried adding a JS file with this:
<script type="text/javascript"> jQuery("span.tribe-events-c-top-bar__datepicker-desktop").text(function () { return jQuery(this).text().replace("Now onwards", "Upcoming"); }); </script>
I also tried following the suggestion from this post, but it appears to be outdated.
How can I change this so that it looks like the demo?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Replacing “Now onwards” text’ is closed to new replies.