zauberharfe
Forum Replies Created
-
Forum: Plugins
In reply to: [Collapsing Categories] this last update vanished my collapsing category!Hi, teintensivo, I think the easiest way to get plugins downgraded is to use a roll-back plugin, for example, “WP rollback”.
I’ve been using 3.0.3 since it was a development version. It’s not compatible with a classical widget, and you need to create a new widget using the block editor.
Forum: Plugins
In reply to: [Collapsing Categories] Please help test the new versionThanks again. It’s now working 100% as I want it to.
FYI, https://shupi.info/ is the site where I use your cool plugin. Sorry, it’s written in Japanese language. (And I didn’t mean to pretend to be a German…)
Forum: Plugins
In reply to: [Collapsing Categories] Please help test the new versionHi, @robfelty. Thank you for your quick action.
I thought in line 233 of collapscatlist.php the two $_COOKIES should be corrected to $_COOKIE .
One more thing, I miss the accordion-style expanding. Has this been intentionally removed?
Forum: Plugins
In reply to: [Collapsing Categories] Please help test the new versionThank you! I’ve been longing for the update, and tested the development version (3.0.1). The following are my findings so far:
- There seems to be no way to disable “Show top level categories”, which was possible with the previous versions.
- The option “Expands to show sub-categories and/or posts” doesn’t seem to be working, resulting in the same outcome as “Links to category archive”.
- There is no option “custom” for “Expanding and collapse characters”. This feature is not critical, but would be convenient for me.
- “Remember expanding and collapsing for each visitor (using cookies)” doesn’t seem to be working – the expanding status is reset every time.
Note: This problem existed in previous versions, too, at least in my environment. To work around the problem, I had to change the codes in collapscatlist.php (V2.7.3) as follows
($useCookies && $cookies[$theID]==1)) { #L77
–> ($useCookies && $_COOKIE[$theID]==1)) {($useCookies && isset($cookies[$theID]) && $cookies[$theID]==1)) { #L234
–> ($useCookies && isset($_COOKIE[$theID]) && $_COOKIE[$theID]==1))Hope this comment will be of any help.
Forum: Plugins
In reply to: [Media Library Assistant] Problem with parameter substitutionHi, David,
I tested the development version, and found it working without any problem.
Thank you for your quick support.Forum: Plugins
In reply to: [Collapsing Categories] ‘Remember expanding and collapsing’ not workingAs the problem remains in he latest version 2.2.6, I did a dirty fix.
In collapscatlist.php I replaced every occurrence of $cookies[$theID] with the $_COOKIE[$theID], as was the way of cookie handling in older versions. Then the plugin worked as expected, though I’m not sure if there are any side effects.Thank you for the quick response. V2.77 works fine.