Spiffy Plugins
Forum Replies Created
-
The blank space is gone now, must have been fixed by removing the code tags. Glad it is working for you.
Just noticed you have a blank space at the end of your start image number. What is the exact shortcode you are using?
Your shortcode is inside a < code > HTML tag. Can you remove this and try it again?
- This reply was modified 6 years, 9 months ago by Spiffy Plugins.
Can you provide a link to show me what is happening? You can email the link to support @ spiffyplugins.ca if you prefer not to post it here.
If you disable just WP Flow Plus, does the site work? Are there any messages logged on your server?
Great, thanks!
The issue is the socket connection is failing due to permission denied. I believe the problem is that the stream_set_timeout is called even if the fsockopen fails. It should be called within the if ($socket) statement:
foreach ($servers as $s) { $socket = @fsockopen('udp://' . $s, 123, $err_no, $err_str, 1); if ($socket) { stream_set_timeout($socket, 1); ...etc- This reply was modified 6 years, 10 months ago by Spiffy Plugins.
Forum: Plugins
In reply to: [Spiffy Calendar] Remove the ICS export button (+Export Events)?Hi David,
The forums are not allowed for support for premium features. Please use the contact form provided for bonus add-on support at https://spiffycalendar.spiffyplugins.ca/contact/
That being said, you can easily hide the button with the following CSS rules:
.spiffy-ics { display: none; }Forum: Plugins
In reply to: [Spiffy Calendar] Publish calendar to webSomething like this:
<iframe src="https://www.adldata.org/events-2/?month=may&yr=2019" style="border:0px #ffffff none;" name="myiFrame" scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="800px" width="800px" allowfullscreen></iframe>There is an online generator that might help you get what you want at https://www.iframe-generator.com/
Forum: Plugins
In reply to: [Spiffy Calendar] Category Key layouttable.spiffy.cat-key {
table-layout: auto;
}This should do it.
Forum: Plugins
In reply to: [Spiffy Calendar] Category Key layoutThere must be some styles in your theme that are not compatible. Can you provide a link to your site and I can help you find a CSS rule to fix it?
Forum: Plugins
In reply to: [Spiffy Calendar] Duplicated title in upcoming eventsI took another look at your site and the path to the CSS file is wrong. Can you contact me at support @ spiffyplugins.ca so I can investigate further?
Forum: Plugins
In reply to: [Spiffy Calendar] Duplicated title in upcoming eventsYour site is missing the default.css file that is packaged with the plugin. It comes up as a 404 error on the page. As a result, the upcoming list is missing the CSS to hide the popup details and it looks like the title is listed twice.
Forum: Plugins
In reply to: [Spiffy Calendar] Background color for event for widget calendarThe following CSS rules should achieve this:
.minical td.day-with-date {
background: green;
}
.minical td.day-with-date.no-events {
background: transparent;
}
span.mini-link.calnk-link {
background: transparent !important;
}Thanks for pointing this out. Version 4.2.3 should correct the problem.