JorritSchippers
Forum Replies Created
-
The file advanced-responsive-video-embedder.php still has 6.2 as minimum version. This should be raised to at least 6.5.0, as wp_script_modules() was added in 6.5.0.
www.ads-software.com also shows: ‘WordPress version: 6.2 or higher‘
- This reply was modified 8 months, 3 weeks ago by JorritSchippers.
Remove the following line from editor_plugin.js:
tinymce.PluginManager.requireLangPack('spq');
This line loads a translation file that doesn’t exist and isn’t used anyway.
Forum: Plugins
In reply to: [Invoices for WooCommerce] [bug] Invoice column always shownThanks for applying the fix this quickly!
Forum: Plugins
In reply to: [Event Calendar & Ticketing] Time picker display issueThat is true, it’s on Dutch (nl_NL)
Forum: Plugins
In reply to: [Event Calendar & Ticketing] Google Map API URL not httpsMy recommendation is to make it https:// because I think that everything on https is the future of the internet.
Thanks for referring me to that page!
Forum: Plugins
In reply to: [Event Calendar & Ticketing] Google Map API URL not httpsAlso, the
sensor
parameter is no longer required.Forum: Plugins
In reply to: [Event Calendar & Ticketing] Time picker display issueThe bundled timepicker is version 1.0.4. The latest is 1.6.1, so maybe a simple update fixes this.
Forum: Plugins
In reply to: [Pronamic Pay] Facebook iframe on httpDankjewel!
Forum: Plugins
In reply to: [Pronamic Pay] Fatal error in 4.0.0You’re right, this is very weird. The WordPress updater never failed for me in this way.
_wpsc_vistor_shipping_same_as_billing_meta_update()
overwrites the billing information with (empty) shipping information. I don’t know yet when or what introduced this bug.Same here. For some reason the shipping fields are used instead of billing when shipping same as billing is checked.
Thanks for the pointer! I would prefer to only have log entries when anything changed, but this clears it up for now.
Forum: Plugins
In reply to: [Theme Check] Small translation issue in custom-background checkI’d use:
In het thema werd geen verwijzing naar <strong>add_theme_support( \"custom-background\", $args )</strong> gevonden. Als het thema een afbeelding of vaste kleur voor de achtergrond gebruikt is het aanbevolen deze functie wel te gebruiken.
I got this while using nginx. The reason is
$_SERVER['PATH_INFO']
was an empty string, causing the router to not read the location correctly and serve/photocrati_ajax
.Quick fix: edit
products/photocrati_nextgen/modules/router/class.router.php
and replaceif (isset($_SERVER['PATH_INFO']))
withif (!empty($_SERVER['PATH_INFO']))
in functionget_request_uri
.