Hi,
Thanks for reaching out.
Yes, you can download the current version from your account and then FTP the files to your server if needed or just install via the WP Dashboard.
I’m not certain as to the reason why you don’t see the update available. It could be caching among other things. Try adding the new version and then let us know if you have issues with future updates.
Thanks
Thanks for the fast reply, Shayne. I’ll let you know if using FTP works. Good point on caching. It’s a GoDaddy server and I don’t have a way to clear the cache.
@stastic – thanks, the manual upgrade worked with just one tiny glitch. Previously, her event titles were displaying in entirety. Now, they’re truncated. For example, the title of one event is displaying as “Creating from…” whereas previously the entire title was visible on multiple lines. I don’t see any new settings to specify length visible…
Hi,
I’m glad that worked for you. Regarding the titles, you can use the below CSS to override that.
#sc_calendar td div.sc_day_div a {
white-space: unset!important;
}
Thanks
The truncation that is happening is stylistic only, and not related to anything with the migration. If you visit the Event, you’ll see the entire title is still there.
If you’d like to disable the truncation styling, you can do so with some CSS:
#sc_calendar td div.sc_day_div a {
text-overflow: initial;
overflow: initial;
whitespace: normal;
}
Edit: Shayne’s approach will work, too! 👋
Thanks, both of you – you were both replying at the same time. 🙂
Thanks again. I’ll click this closed and appreciate your help.