Spiffy Plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Spiffy Calendar] Change popup sizeSure. You can use something like this:
.calnk-link span.spiffy-popup { font-size: 2em; }Forum: Plugins
In reply to: [Spiffy Calendar] Import “The link you followed has expired.” errorIt may be that your file is too large, try breaking it into smaller pieces. Please see https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress/.
Please note this is a premium feature and is not allowed to be discussed on WordPress forums. If you require additional help please use our contact form https://spiffycalendar.spiffyplugins.ca/contact/
Forum: Plugins
In reply to: [Spiffy Calendar] Jumpbox sizeYour theme has set the width of a select box to 100%. You can adjust this for the calendar by adding the following CSS rule:
.calendar-date-switcher select { width: auto; }The height of the calendar day boxes is determined by the content inside. The base size is 60px but you can bump it up by using the following rule:
td.day-without-date, td.day-with-date { height: 100px; }I can confirm I am not seeing the message logged in version 5.4 of WP. Thanks!
I am using the classic editor with debugging enabled.
Forum: Plugins
In reply to: [Spiffy Calendar] Override views.php with custom themeInteresting question. I came up with the following PHP snippet that could be added to functions.php. I ran it using the Code Snippets plugin, but you can choose to add it any way you like. This snippet replaces the calendar output function with a simple message.
<?php add_action( 'plugins_loaded', 'spiffy_views_override' ); function spiffy_views_override() { global $spiffy_calendar_views; if (class_exists("SPIFFYCAL_Views")) { class SPIFFYCAL_Views_Extended extends SPIFFYCAL_Views { // Main calendar output function calendar($cat_list = '', $title = '') { return "This is the calendar"; } } $spiffy_calendar_views = new SPIFFYCAL_Views_Extended; } } ?>Forum: Plugins
In reply to: [Spiffy Calendar] Events are not displayed per lineYou have added a lot of custom CSS rules. One of them breaks the event list and should be removed:
.calnk-box {float:left;}
Forum: Plugins
In reply to: [Spiffy Calendar] Category Display on Multiple LinesYou have 3 options. Enter the new rule in any one of these places:
Customize > Additional CSS
Spiffy Calendar > Options > Custom CSS styles
Customize > Spiffy Calendar > Custom CSS styles
Forum: Plugins
In reply to: [Spiffy Calendar] Category Display on Multiple LinesAdding the following CSS rule should fix it:
table.spiffy.cat-key { table-layout: auto; }Forum: Plugins
In reply to: [Spiffy Calendar] Category Display on Multiple LinesIt is probably a style conflict with your theme. Can you provide a link so I can see?
Forum: Plugins
In reply to: [Spiffy Calendar] Add Link to Mini CalendarFYI, you can use the shortcode generator, the blue grid pattern just above the edit window in the classic editor. This is a popup window that asks questions and generates the correct shortcode.
If you use Gutenberg, there is a block that generates the calendar code for you.
Forum: Plugins
In reply to: [Spiffy Calendar] Add Link to Mini CalendarThe shortcode would be
[spiffy-calendar cat_list="2"]Forum: Plugins
In reply to: [Spiffy Calendar] List view on mobile devices?You can add the following CSS rules to disable the popup and dotted line:
span.spiffy-popup { display: none !important; } span.spiffy-title { border-bottom: none !important; }Forum: Plugins
In reply to: [Spiffy Calendar] List view on mobile devices?Yes, that is what this setting will accomplish. The viewport width on a mobile device varies. Try setting the option to 600, and all devices smaller than 600 pixels wide will show the list.
Forum: Plugins
In reply to: [Spiffy Calendar] List view on mobile devices?There is an option to enable responsive formatting called “Responsive maximum width”. Set this to something other than 0 to select a maximum pixel width to convert from the calendar grid to a list view.