oooorgle
Forum Replies Created
-
Forum: Plugins
In reply to: [Quotes llama] Couple of questionsHave the timer changes working well. 15 speed selectors instead of the original seven. One of them should be just right. 🙂
Forum: Plugins
In reply to: [Quotes llama] Couple of questionsHi stevejonesmo,
I could include more settings (4, 2) (20, 22) to slow/speed it noticeably more. Perhaps call them limp and crawl, run and sprint 😉 Should be an easy addition. Current timer settings are (18, 16, 14, 12, 10, 8, 6)
(length of quote+name+source) / settingto get the time.The auto-refresh has been the very first and longest running bug in the plugin. I’m sure you will notice, if left rotating for a while it begins to glitch and the timer goes out of sync.
The gallery has a click to get next quote function, which toggles the next quote and disables auto-refresh. Then, there is an arrow to re-enable auto-refresh. I have yet to get them to behave together without it causing the timers to go wild. Although it has been a while since I’ve tried to address that exact function. Just need to figure out the timers conflicts.
I’ll put the “quotes in order” on the consideration list and see what I can come up with. And thanks a ton for the support!
I’ll get back to you once something has progressed.
- This reply was modified 3 years, 3 months ago by oooorgle.
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offYes of course! And if it does allow you to get a consistent pull please let me know what you stripped and I can focus there to perhaps figure something out. Thanks!
Forum: Plugins
In reply to: [Quotes llama] Auto-refresh don’t workAny luck testing without Elementor? There are a few other basic things you can try.
- Deactive/active or re-install the plugin.
- Deactivate other plugins and test again.
- Change themes and test again.
- Most importantly, view the console and enable WP_DEBUG mode to check for notices, warnings or errors.
Forum: Plugins
In reply to: [Quotes llama] Widget showing ” undefined”In php 8.1, I was able to reproduce some errors similar to yours
preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecatedinwp-includes/kses.php:1685In kses.php when I added
?? ''so that it will return a string instead of null,before:
$string = preg_replace( '/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string );after:
$string = preg_replace( '/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string ?? '' );all the errors for that function call (10) went away. But then, that’s a core WordPress file so it’s a dirty band-aid at best.
Forum: Plugins
In reply to: [Quotes llama] Auto-refresh don’t workDoes it happen to work without Elementor? Elementor and my plugin seem to conflict somehow. I guess, add mine to the long list of plugins and themes that have issues with elementor. I’m not sure what the problem is and I can’t troubleshoot it without access to it. I won’t be giving them any money just to test with and they are unwilling to give the time of day othetwise.
Forum: Plugins
In reply to: [Quotes llama] Stopped working after last updateDid it get it working again?
Forum: Plugins
In reply to: [Quotes llama] Stopped working after last updateTry deactivating/reactivating… any console or WP_DEBUG errors?
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offFair enough… best of luck.
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offforbidden - number in author name not allowed = 1Yeah that’s a weird one for sure…
I wonder, is the Oscar Wilde quote perhaps first or last entry in your quote list? If you have many quotes I’m trying to think why it’s only getting pulled…
- This reply was modified 3 years, 4 months ago by oooorgle.
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offPlease… what theme are you using? So I can duplicate your environment as much as possible. So far I cannot create the issue you’ve described.
Can you try PHP8.0 or 7.4?
When I use PHP8.1 I get sporadic results in WordPress in general ( with no plugins. ) Especially the notices when debug is enabled. Lots of Cookie.jar and return type notices – for example https://wordpress.org/support/topic/deprecated-return-type-of-requests_utility/
PHP 8.0 is stable for my two environments I test on, as well as 7.4. But then not for everyone it seems.
Another user has had similar issues. We are still trying to figure them out as well: https://wordpress.org/support/topic/widget-showing-undefined/
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offAlso, PHP version?
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offWhat theme are you using?
Is it the same site? When I visit, it shows a single quote. I assume you have more?
What theme are you using?
Any Console or WP_DEBUG errors that mention this plugin?
Forum: Plugins
In reply to: [Quotes llama] “Next Quote” won’t turn offHave you tried things like:
- Clear cache.
2. Try a different browser.
3. deactivate/reactive the plugin… especially if you just updated from an older version
4. Disable other plugins.
Is it the same site as the “can’t edit CSS” link?
Forum: Plugins
In reply to: [Quotes llama] Can’t Edit CSSHi Ron,
Should be able to add the following to your CSS rules to remove the line
.quotes-llama-widget-random hr {display: none;}To do that you can go into your Dashboard–>Appearance–>Customize–>Additional CSS and add that rule. Do not edit theme/plugin files directly as they all get overwritten upon updating..Let me know how it works.