Jim
Forum Replies Created
-
Thank you for the reply Arreanne. Just to be clear, as noted in my first post, in Preview I get absolutely nothing for ANY slider, even the default one.
When putting the sliders on a page with shortcode, I do see the first 2 sliders okay and the noted problems for the second two.
More info: I tested the slider in a page. As a “FlexSlider” and “R. Slides”, it seems to work fine (although it’s hard to know since I found no demo examples of these sliders on your web site).
The Nivo and Coin Sliders are buggy on my site. On Nivo, the caption and image are out of sync and a white line sometimes appears across the image. On Coin, the images don’t even appear. The captions do, but they are cut off on the right side of the box.
Hmmm, I tried excluding /wp-content/plugins/soliloquy-lite/assets/js/min/soliloquy-min.js in the Minify tab, and re-enabling minification and merging, but it didn’t work.
Thanks for your reply. That didn’t fix it, but also disabling “Enabling minification” did fix it.
Is there a way to identify the affected javascript and exclude it?
By the way, it apparently does happen in Firefox too, I just never saw it because I was always logged in!
- This reply was modified 4 years, 12 months ago by Jim.
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Auto delete logicHi, thanks for the handy plugin!
I think the OP was referring to a wish I also had, to delete messages when they reach a certain age. Otherwise, if you have it set for monthly, and the monthly deletion just occurred, I can’t see messages from yesterday.
So you could keep the intervals (daily, weekly, monthly etc.) but add an option to only delete messages that are older than a certain time.
By the way, that interval drop down seems a little messed up. For example, it has “Once Monthly” and “Once Every Month”, which I assume are the same thing. Similar for other intervals. “Once Daily” simply is in the list twice. And I have a strange entry “Autoptimize CriticalCSS”.

- This reply was modified 5 years, 1 month ago by Jim. Reason: added image
Forum: Plugins
In reply to: [Accordion Blocks] Can we replace “+” with something else?@antonyalston I replace the +/- with disclosure triangles on the left. Here is the CSS with some other customizing. You can see how it looks here.
/* * Put disclosure triangles before the accordion item title * ( +/- occurs on right margin of page already), with a right margin */ .c-accordion__title::before { position: relative; top: 50%; right: 0; content: "\25B6"; color: #777; -webkit-transform: translateY(-50%); transform: translateY(-50%); margin-right: 1em; } /* Downward disclosure triangle when open */ .is-open .c-accordion__title::before { content: "\25BC"; } /* Remove +/- on the right */ .c-accordion__title::after, .is-open .c-accordion__title::after { content: ""; } /* Shade the title line; adjust title text */ .c-accordion__title { background-color: #f2f2f2; padding: 0.2em; font-size: 23px; font-weight: 400; } /* Change shade on hover */ .c-accordion__title:hover { background-color: #e0e0ff; } /* Indent the content beneath title */ .c-accordion__content { margin-left: 2em; }Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] “\r\n\r\n” to HTML tagsHi Julian,
Yes, that problem email works perfectly now. Thank you!
Jim
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] “\r\n\r\n” to HTML tagsSo you confirmed it’s happening not just for me?
Sorry, I can’t say what update might have triggered it; I don’t see those emails often.
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] “\r\n\r\n” to HTML tagsThanks for the reply. This is WordPress 5.7
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Preload cacheForum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Preload cacheNo, I could not really understand it or get it to behave as I expected. I switched to wp optimize. It is intuitive, well documented, and preloads completely and quickly.
Forum: Plugins
In reply to: [Autoptimize] Debug log noticeThanks. Happy New Year!
Forum: Fixing WordPress
In reply to: Database character set and collationThanks. Well I certainly don’t really know what I’m doing. Seems like there are so many places where these things are set: database connection/server, wp-config.php, the database, each table, and each column.
But I found this https://sternerstuff.dev/2019/04/convert-wordpress-tables-to-utf8mb4/
which is just a script to run the function maybe_convert_table_to_utf8mb4() from /wp-admin/includes/upgrade.php. I ran that in staging and no harm, all the tables and columns that were utf8 were converted to utf8mb4 with collation utf8mb4_unicode_ci.Then here https://make.wordpress.org/core/2015/04/02/the-utf8mb4-upgrade/
is info about indexes that might have to be resized. Most didn’t need it (already 191 characters), one got resized automatically from the script, and one remained 200, which I changed to 191 in phpMyAdmin. Finally change the wp-config defines to the new charset and encoding.Everything looks good in staging, so I’m tempted to do it in live. They say all the encodings in utf8 work in utf8mp4, so there should be no problems of changing characters.
Thanks very much for that assessment. I’ll look into whether I need to dive in and address database character set and collation and how to do it. Seems very complicated and mysterious. The site works fine, so . . .
OK, good to know, thanks.