Spiffy Plugins
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: PHP notices in post editorFYI I still get one notice with 5.0-RC1-43944.
edit_form_advanced is deprecated since version 5.0.0! Use block_editor_meta_box_hidden_fields instead. This action is still supported in the classic editor, but is deprecated in the block editor.
Forum: Plugins
In reply to: [WP Flow Plus] Don’t re-size on mobile scrollVersion 4 of the plugin contains this patch.
Forum: Alpha/Beta/RC
In reply to: PHP notices in post editorI did not set this to resolved.
I am still seeing the errors in WordPress 5.0-beta4-43896
Forum: Alpha/Beta/RC
In reply to: PHP notices in post editorI disabled all plugins except Query Monitor and am using the Twenty Nineteen theme.
I also did a search in the WordPress core and found:
– 3 calls to add_action( ‘edit_form_after_title’… ) in wp-admin\edit-form-advanced.php, wp-admin\includes\admin-filters.php and wp-admin\includes\meta-boxes.php
– 1 call to add_action( ‘edit_form_advanced’…) in wp-includes\class-wp-embed.php
Forum: Alpha/Beta/RC
In reply to: PHP notices in post editorThese notices are generated by core code, not by my plugin. I would think calls to these actions should be removed from core.
Forum: Plugins
In reply to: [WP Flow Plus] Don’t re-size on mobile scrollI will be releasing new versions of the plugin for WordPress 5.0 with a Gutenberg block editor. In the meantime, if you want to patch in a fix you can edit the script.
For the basic plugin, you would edit imageflowplus.js, find the function “refresh” and modify this block:
/* Display images in current order */ if ((this.startImg > 0) && (this.startImg <= this.max)) { this.image_id = this.startImg - 1; this.mem_target = (-this.image_id * this.xstep); this.current = this.mem_target; } this.moveTo(this.current); this.glideTo(this.image_id);To this:
/* Display images in current order */ if (onload) { if ((this.startImg > 0) && (this.startImg <= this.max)) { this.image_id = this.startImg - 1; this.mem_target = (-this.image_id * this.xstep); this.current = this.mem_target; } this.moveTo(this.current); this.glideTo(this.image_id); }Note – if you have the bonus addons you need to make the same edit to wpflowplus.js
- This reply was modified 7 years, 6 months ago by Spiffy Plugins.
Forum: Plugins
In reply to: [WP Flow Plus] Don’t re-size on mobile scrollThanks for the report, I will look into it on my end.
Forum: Plugins
In reply to: [Spiffy Calendar] Recurring eventsYes! You can create a “hide” event which will hide all events on the configured day in the same category. You can choose between showing the hide event title or having it also hidden.
Forum: Plugins
In reply to: [WP Flow Plus] How to disable the mouse over pauseYou can add mousewheel to the script:
<script type="text/javascript"> jQuery('.wpif2_flowplus').mouseover(function() { jQuery('.wpif2_flowplus') .unbind('mouseover') .removeAttr('onmouseover') .removeAttr('onmousewheel'); }); </script>Forum: Plugins
In reply to: [WP Flow Plus] How to disable the mouse over pauseGot it! Add this script to your page after the shortcode seems to do the trick:
<script type="text/javascript"> jQuery('.wpif2_flowplus').mouseover(function() { jQuery('.wpif2_flowplus') .unbind('mouseover') .removeAttr('onmouseover'); }); </script>- This reply was modified 7 years, 7 months ago by Spiffy Plugins.
Forum: Plugins
In reply to: [WP Flow Plus] How to disable the mouse over pauseThere should be a way to remove the event listener without hacking the code. I will see what I can find.
Forum: Plugins
In reply to: [Spiffy Calendar] Location map link not displaying if event link usedAt this time, the popup only supports one link. So an event link takes priority over the location map. This is something I might revisit in the future, but for now that is a limitation. Sorry.
Forum: Plugins
In reply to: [Spiffy Calendar] Links in Event DescriptionThere is already an event link field. When used, the event listing will link to that URL. You could add some text in the description such as “click for more information”.
There is no two month view option available at this time.
Forum: Plugins
In reply to: [WP Flow Plus] size of images in carrouselIf you configure a width of 100% it will fill the available space in the containing DIV, not necessarily the full screen. Your website has a large blank space on the right side that is outside of the post area.
You can adjust the aspect ratio to best suit your images.
Forum: Plugins
In reply to: [WP Flow Plus] size of images in carrouselThe images are automatically resized by the plugin to fit in the available space of the carousel. What you are seeing is the maximum size possible in the carousel on your page. When you click the image the full size is shown in the lightbox.