Jeff Cole
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] Google maps iframe doesn't workIt appears that the problem is caused by sites like Google stopping Clickjacking https://javascript.info/tutorial/clickjacking
Someone produced a workaround https://vaadin.com/old-forum/-/message_boards/view_message/2561930#_19_message_4248300 but that might not be appropriate for FancyBox?
I disabled the iframe for a Google map as I couldn’t find an easy workaround
Forum: Plugins
In reply to: [Firelight Lightbox] Google maps iframe doesn't workI’m having the same problem – it used to work and now doesn’t with Google Maps see https://www.manjunaga.com/calendar/classes/yoga-drop-in-class-all-levels-monday.html for example.
@smara.86 – how did you solve it?
Forum: Plugins
In reply to: [Regenerate Thumbnails] regenerate failure errorsAccording to https://www.ads-software.com/support/topic/error-with-wordpress-351#post-3816496 (in Force Regenerate Thumbnails) the display problem is caused by a php warning making a malformed JSON – apparently the regeneration still happens ok. I imagine the issue is the same in this plugin.
Forum: Plugins
In reply to: [Audio Player] HTML5 fallback continue play to next playerUpdated version of the Audio Player for HTML5 fallback at https://pastebin.com/3bZkDuXR ??
Great news. I won’t have to apply a hack any more!
I had a look at the plugin code and found
/events-manager/classes/em-event.php
which appeared to process the placeholders.
It seems to me that the plugin isn’t running
do_shortcode()
on the results ofthe_content
and so I tried to add an extra line at 2171add_filter('dbem_notes', 'do_shortcode');
This processed all shortcodes in the content of the notes! It doesn’t appear to have any other repercussions for me at least. Maybe you could incorporate this line into your code?
Thanks that works perfectly.
Maybe you could make it clear in the documentation that this shortcode only works with a post id?
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] What happened to Mailpress.org?There’s an old copy of the wiki on archive.org accessible from https://web.archive.org/web/20101112063724/https://www.mailpress.org/wiki/index.php?title=Main_Page
It’s obviously a bit out-of-date (ie 2 years) but the basic functionality of Mailpress appears to be the same, so it’s well worth a look ??
Forum: Plugins
In reply to: Postie Save Settings Gives 404 ErrorI have found exactly the same. I can save the settings in Postie 1.4.3 but not in 1.4.5 and then I upgraded the plugin to 1.4.5 and the settings are still there – bit of a workaround but it works now – and I have the security update.
Any ideas what might be going wrong in the plugin? Or has something changed in WordPress in later versions to cause this anomaly?
The problem isn’t that the example code that I quote above doesn’t work – it’s that the dropdown version of the widget doesn’t seem to work properly – the modified base url appears perfectly within the form html that I can view within the source code of the web page – and as I stated above it all works fine in the list version of the widget ??
I am wondering if there’s a bug in the QMT code or if I can modify the dropdown.html template to solve this?
Post Sorting Reloaded definitely does enough for me (even though ideally it would be good if in drilling down with QMT the sort order didn’t go back to the default). And it’s working in 1.4 FYI. Thanks for that.
Thanks for pointing this out and after I add the arguments
&orderby=title&order=asc
to the query on the taxonomy template page it works if I want the visitor to have the posts ordered by title ascending.What I’d really like to be able to do is allow a visitor to change the order of the posts by clicking on radio buttons above the taxonomy drill-down in the sidebar.
I can’t see how I might be able to do this without hacking the plugin ??
Forum: Fixing WordPress
In reply to: Images upload fine but WP shows 0X0 SizeI very recently found that this problem can be solved with AJAX Thumbnail Rebuild plugin https://www.ads-software.com/extend/plugins/ajax-thumbnail-rebuild/ with a slight modification
Add 1 line after line 172
line 172 $fullsizepath = get_attached_file( $id ); + if ($fullsizepath == '') $fullsizepath = get_post($attachment_ID)->guid;
(from https://breiti.cc/wordpress/ajax-thumbnail-rebuild/comment-page-1/#comment-338 )
AJAX Thumbnail Rebuild as modified recreates all the thumbnails and the post_meta that is used by the Add Image function. The images that are seen as 0x0 don’t seem to have the correct post_meta information.
Forum: Plugins
In reply to: [Plugin: Viper’s Video Quicktags] Conflict with Auto-hyperlink pluginWell I’ve just discovered Autolink URI Plugin https://www.semiologic.com/software/autolink-uri/ which does the job and doesn’t conflict with shortcodes.