ulfben
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Upload Dir] brokenI am using it daily, on multiple sites, and my uploads are still organised correctly into whatever folder structure I’ve set in the plugin.
Make sure that you have named and saves the post before uploading anything to it.
Forum: Plugins
In reply to: [LightPress Lightbox] Plugin’s CSS rule is breaking my site’s layoutThank you for an excellent error report!
From the top of my head I can not remember any of the CSS for this plugin, but I’ll make a note to look into this whenever I edit the source next time.
in the meanwhile, please continue testing your modification and follow up with any findings you make?
Thanks a bunch!
Forum: Plugins
In reply to: [WP-dTree] Set “Child of” to active page – sets back itselfThanks for the report! Sounds like the widget panel has broken. I’ll take a look and rewrite it for next update.
Forum: Plugins
In reply to: [Custom Upload Dir] Please update the pluginDone and done.
Forum: Plugins
In reply to: [Custom Upload Dir] Please update the pluginYeah, I’ll try to get at the computer and push a version update soon. Thanks for checking in.
Forum: Plugins
In reply to: [Custom Upload Dir] Re-house images in uploads/YYYY/MM?Hi!
No, Custom Upload Dir never touches a file once it’s on the drive. Moving files around would require adjusting all (potentially hardcoded) links in posts, comments, pages etc and that is far too risky to be worth it.However, you can change your upload directory at any time without breaking your old uploads.
Forum: Plugins
In reply to: [LightPress Lightbox] I want to display to the attribute value of ALT tagThe plugin is using the minified version of the JavaScript (jquery.lightbox.min.js). I’d recommend you edit the non-minified file and then copy it all over to the .min.js
Forum: Plugins
In reply to: [LightPress Lightbox] I want to display to the attribute value of ALT tagThe plugin uses the alt-attribute if the image is not providing a title-attribute or caption tag. Ergo: easiest fix is to make sure your theme is not putting out unintended title attributes.
Otherwise you can simply edit the implementation of the getTitle-function in the lightbox JavaScript source:
function getTitle(jqLink){ var title = jqLink.attr("title") || ''; if(!title){ var jqImg = jqLink.children('img:first-child'); if (jqImg.attr('title')) { title = jqImg.attr('title'); //grab the title from the image if the link lacks one } else if(jqImg.attr('alt')){ title = jqImg.attr('alt'); //if neither link nor image have a title attribute } } return $.trim(title); }Forum: Plugins
In reply to: [LightPress Lightbox] remove old rows in wp_options table?Thanks for reporting! I need to write a proper uninstaller that will (optionally) erase all configuration settings when removing the plugin.
I’ll make sure to fix the uninstall procedure in the next release.
As for the leftover settings in your database (all prefixed with jqlb_), they are safe to remove.
Forum: Plugins
In reply to: [LightPress Lightbox] webp supportSend me your patch and I’ll add it to the next update.
Forum: Plugins
In reply to: [WP-dTree] deprecationThanks for the screenshot. I’ll fix the problem shortly.
Forum: Plugins
In reply to: [WP-dTree] Save problemSo it turns out that WordPress has migrated widgets to the Gutenberg block system and renamed the previous system “legacy widgets”.
WP-dTree seem to handle this fine from the theme customization screen, but the new block-based Widget screen is broken. It resets some of the dTree widget settings, while persisting some.
The solution for now is to install the “Classic Widgets”-plugin. It is an official plugin maintained by the WordPress team to restores the previous (“classic”) WordPress widgets settings screens.
Forum: Plugins
In reply to: [LightPress Lightbox] no zoomRight click on the thumbnail, not the lightboxed image. The thumbnail is always linked to the full size image and all browsers support opening links in a new tab.
You can also enable the option to “Show download link” in the plugin settings. This will add a text link to access the full size image from the lightbox.
If you need more display options in the lightbox itself you will need another plugin. This one is intentionally bare bones.
Forum: Plugins
In reply to: [WP-dTree] Save problemI am afraid that you have not clarified anything. You keep saying “the customizer”, but there is no feature in WordPress nor WP-dTree that is called “the customizer”.
Can you post a screenshot to clarify what you are actually talking about?
WP-dTree provides one settings screen for shared configs, and widgets that provide settings for each individual tree.
Are you trying to say that your widgets are not saving configuration changes?