artim96
Forum Replies Created
-
Same here. The worst part is that it’s almost guaranteed that it’s just some promotional nonsense. Sure there’s the nuclear solution of prohibiting alerts from this plugin, but it should still be fixed.
It seems some database update mechanism is not running fully through. As I have no capability debugging their code, I’ve asked Claude:
The cause of this is
$option_db_error_message = get_option( $updates_needed['show_error_db_message']['option_name'] );
// = get_option('trp_show_error_db_message') → currently 'yes'
if ( $option === 'no' && $option_db_error_message !== 'no' ) {
add_action( 'admin_notices', ...update notice... );So it could be fixed with wp option update trp_show_error_db_message no (using wp-cli as wp), but I’d give them a bit time to fix that before fixing it myself.
Well it wouldn’t be the first plug-in where that’s not an issue at all. Tables are just recreated when needed.
But thanks for letting me know that’s not the case for Firminator.
Forum: Themes and Templates
In reply to: [Customify] Page broken on mobileThanks for the suggestions @boy8xnoname. I just figured out by accident how to solve this. Firefox for Android has an option “Debug via USB” that you can use to get the developer console on your desktop PC and see the messages as if you are debugging a page in desktop Firefox. Turns out the issue was bad merging of some JS files. Setting it to defer and not merge fixes things.
Still present in 6.4.7.2
Forum: Plugins
In reply to: [No Nonsense] Tick icon loading from externalthis seems to be a very common problem for a few weeks now. The solution is to add data: to the whitelist of the image-src content security policy
Forum: Plugins
In reply to: [No Nonsense] Tick icon loading from externalI see. Interesting, thanks
Forum: Plugins
In reply to: [No Nonsense] Tick icon loading from externalThat’s what the browsers console shows me when e.g. I want to tick the “also kill any incoming XML-RPC request” checkbox. Read: the message that this specific element has been refused to load because of content security politicy appears in the console the exact moment when I click there checkbox and will be displayed every time I reload the site until I uncheck the box. So this error message can only be triggered by this plugin
Forum: Themes and Templates
In reply to: [Customify] Widget title no capsIs there also a method to make it lowercase and bold or something like that? And maybe add horizontal lines? I have three widgets in the primary bar, but only under the standard “news” widget there is a horizontal line
Forum: Themes and Templates
In reply to: [Customify] Widget title no capsthanks, that did the trick