Spiffy Plugins
Forum Replies Created
-
I see what you need now. You could try hiding the first entry with this code:
li.spiffy-upcoming-day:nth-of-type(1) {
display: none;
}You can use the upcoming events shortcode [spiffy-upcoming-list] to display future events.
Forum: Plugins
In reply to: [Spiffy Calendar] Past Dates in Columns/List ViewThe past events are shown in the full-size calendar. You can have the calendar toggle between the default grid and a list view, this is enabled on the options page. This is the only way to list past events at this time.
You can have your calendar default to the list view by adding the option to the page URL like this:
Forum: Plugins
In reply to: [Spiffy Calendar] upcoming-events-list background colorThis should do it:
li.spiffy-event-details.spiffy-Columns {
background: #ddeeff !important;
}Forum: Plugins
In reply to: [Spiffy Calendar] Weekly Event Happening everydayI just checked your link and I see our calendar is not in use. Can you provide a link showing the issue you are having?
Forum: Plugins
In reply to: [WP Flow Plus] WP Flow not showing ok on mobileIn your settings on the Format tab you can set “Container width CSS” to 100%.
Forum: Plugins
In reply to: [Spiffy Calendar] Struggling with ‘num_columns’You could try playing around with flex display custom CSS to get your columns:
ul.spiffy.upcoming-events-list {
display: flex;
flex-wrap: wrap;
}ul.spiffy.upcoming-events-list li {
display: inline-block;
margin: 10px 0 0 2%;
flex-grow: 1;
}Forum: Plugins
In reply to: [Spiffy Calendar] Struggling with ‘num_columns’Sorry, I just realized you are not using style=’Columns’. The num_columns argument only applies in this style. I have updated the documentation to be more clear.
Forum: Plugins
In reply to: [Spiffy Calendar] Struggling with ‘num_columns’Looks like your quotes around the 4 don’t match properly.
Forum: Plugins
In reply to: [Spiffy Calendar] horizontal vs vertical alignment of categoriesIt looks correct (horizontal) when I view on Chrome.
Forum: Plugins
In reply to: [Spiffy Calendar] horizontal vs vertical alignment of categoriesYou can just add this to your custom CSS rules:
.spiffy.cat-key { table-layout: auto; }
Forum: Plugins
In reply to: [WPS Hide Login] Login expiry 404Ok, I thought the re-authorize link would work but I can use the hidden login link instead.
Forum: Plugins
In reply to: [Spiffy Calendar] horizontal vs vertical alignment of categoriesI don’t need to log in, just a link to the site showing the calendar would be helpful. If you don’t want to post it here you can use my contact form at https://spiffycalendar.spiffyplugins.ca/support/
Forum: Plugins
In reply to: [Spiffy Calendar] horizontal vs vertical alignment of categoriesThere must be a CSS rule that is changing the layout on the front end. Can you provide a link?
Forum: Plugins
In reply to: [WPS Hide Login] Login expiry 404When I login I keep my account logged in until it expires. When that happens, if I visit the site I can see the admin bar on the top. If I click the top left to toggle from front end to admin I get a 404 error. The URL it was trying to load was to re-authorize the account.