Spiffy Plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Spiffy Calendar] Mini Calendar hover “Pop-up” transparencyThe problem is your theme is setting the z-index of each column, so the calendar is held behind the second column.
I played around a bit using the Chrome inspector and managed to get the popup to display by adding the following rule:
.et_pb_column:first-of-type {z-index: 10;}
Hope this helps
Forum: Plugins
In reply to: [Spiffy Calendar] French translation bugThanks for the report. I checked the latest stable release and development trunk of the translations and someone had entered Samedi for Sunday. I entered the correction and it is waiting for approval. I’m not sure how long that will take. You can view the status of the translations at https://translate.wordpress.org/locale/fr/default/wp-plugins/spiffy-calendar, the 1 waiting is the correction I entered.
Forum: Plugins
In reply to: [Spiffy Calendar] Show only the month of NovemberHello,
You can start the calendar on a specific month by adding a query string to the page address. November would be something like http://example.com/page-name/?month=nov&yr=2018
Forum: Plugins
In reply to: [Spiffy Calendar] Page reloads after switching to different monthYou are correct, the page reloads to display alternate months. There is no workaround at this time.
Forum: Plugins
In reply to: [Spiffy Calendar] Duplicate Indexed PagesVersion 3.7.4 is now available, and includes rel=nofollow on the calendar paging links.
Forum: Plugins
In reply to: [Spiffy Calendar] Duplicate Indexed PagesThanks for pointing this out. I will look into adding an option to disable following links by crawlers.
Forum: Plugins
In reply to: [WP Flow Plus] where are my images?If you upload the media while in the page editor the image will be attached to that page. It should be found by the slider. You do not need to insert the image into the page.
Forum: Plugins
In reply to: [WP Flow Plus] where are my images?You can use a plugin, or view the images in the Media Library one by one to see the “Uploaded to” value.
Forum: Plugins
In reply to: [WP Flow Plus] where are my images?The images are attached by WordPress when you upload the images to the page. I suggest you specifically select the images you want using the WP Flow Plus shortcode tool in the page editor. This will result in a shortcode with include=”1,2,3″ where the numbers are the image IDs.
Forum: Plugins
In reply to: [WP Flow Plus] How can I sort pictures into a new order?Use this shortcode instead:
[wp-flowplus include=”4163,4164,4212,4206,4208,4213,4214″ orderby=”post__in” order=”ASC”]
Forum: Plugins
In reply to: [WP Flow Plus] How can I sort pictures into a new order?Try switching your quotes from ’ to ‘ or ”
It’s hard to see, but your quote is not a standard quote
- This reply was modified 7 years, 10 months ago by Spiffy Plugins.
Forum: Plugins
In reply to: [WP Flow Plus] How can I sort pictures into a new order?Could you copy your exact shortcode here so I can try it?
Forum: Plugins
In reply to: [WP Flow Plus] How can I sort pictures into a new order?You can specify the order to be as listed with the following options:
[wp-flowplus include=’3,2,1,6,5,4′ orderby=’post__in’ order=’ASC’]
Forum: Plugins
In reply to: [WP Flow Plus] Transparent backgroundYour best bet may be to remove the fading effect on the reflection, and leave them with just a transparent reflection. You can do this by adding:
.wpif2_overlay {
display: none;
}.wpif2_reflection {
background-color: transparent !important;
}Forum: Plugins
In reply to: [WP Flow Plus] Transparent backgroundThe reflections are generated by a gradient color fading from 0% to 100%, so transparent reflections are not supported. Can you choose a background colour that blends in to your theme? This can be specified on the Format page to select the best colour for your reflections.
– Bev