Rodrigo
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] error after updateI already have
define(WP_DEBUG, false);set onwp-config.php, and yet this error shows up on console.PHP 7.4 is unsupported since 2022β¦ even 8.0 isn’t supported anymore. Wouldn’t be a good practice to drop support for older, insecure PHP versions in SSP?
- This reply was modified 1 year, 1 month ago by Rodrigo. Reason: Fix link (Markdown doesn't work)
Forum: Plugins
In reply to: [User Toolkit] Feature request: Export usersNice, @deryck!
For me, all meta data would be useful. The ability to select which one export is a nice touch β there are dozens of them and most of the time I don’t need all at once.
Forum: Plugins
In reply to: [Better Core Video Embeds] Support for Classic EditorOh, ok π
Thanks for your attention, @wpmarkuk!
It uses Font Awesome, right? Which loads a whole font in front-end just for icons. I was wondering if, instead, I could just type an emoji to set it as the like/dislike button, like β€οΈ or π.
Forum: Plugins
In reply to: [Disable Gutenberg] Layout misbehavior in Safari 18Thanks, Jeff! Btw, I noticed that it’s possible to update to Safari 18 without updating the whole macOS.
Forum: Plugins
In reply to: [Disable Gutenberg] Layout misbehavior in Safari 18Hmm, there’s no steps, Jeff. Just opening a post with Classic Editor activate spoils the layout.
I was researching the issue and, apparently, it’s not exclusively to your plugin. The official Classic Editor is also breaking on Safari 18 β there’s an issue over there as well.
Forum: Plugins
In reply to: [Disable Gutenberg] Layout misbehavior in Safari 18Tbh, I just updated to Safari 18 and things fell apart. Until then, it was working fine.
Just one, @wpkube (see screenshot). It’s in my user profile, which is the main admin account.
Forum: Plugins
In reply to: [User Toolkit] Last login vs. active usersIt makes sense, @deryck! I changed default behavior indeed. I’ll tweak expiring periods to better reflect MAUs β default ones are too short, IMHO.
Thanks!
Forum: Plugins
In reply to: [WP Search with Algolia] Analytics failing to loadNevermind. By default, Algolia doesn’t show today in stats panels. So, since I implemented it today, nothing was showing up β because nothing existed yesterday.
Thanks again, and sorry to bother you, @tw2113!
Forum: Plugins
In reply to: [WP Search with Algolia] Analytics failing to loadThanks, @tw2113. It’s been a while, and stats still don’t show up.
I can’t validate events, following this documentation steps. When I run
window.aa;in browser’s Console, it outputsundefined.Any other idea? Maybe I messed up setting it up?
Oh, neat! I thought disabling a post type made it unable to get likes.
THanks, @gregross!
Forum: Plugins
In reply to: [Just Likes and Dislikes] Block loading jlad-frontend.cssThanks, @gregross!
Forum: Plugins
In reply to: [Just Likes and Dislikes] Block loading jlad-frontend.cssSorry, @gregross, I didn’t mean to add an option to block/unload
jlad-frontend.css. Instead, I’m looking for a way to block it viafunctions.php, like:function dez_remover_estilos_dashboard() { wp_dequeue_style( 'noticons' ); wp_dequeue_style( 'akismet-font-inter' ); wp_dequeue_style( 'akismet-admin' ); wp_dequeue_style( 'sc-icon-css' ); wp_dequeue_style( 'akismet' ); } add_action( 'admin_enqueue_scripts', 'dez_remover_estilos_dashboard', 999 );I follow closely every plugin update, so βfixingβ my
style.cssonce a while isn’t an issue.Fair enough!