coriolis_too
Forum Replies Created
-
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error in class.bcn_breadcrumb_trail.php on line 124Real code is
& # 39;%1$s& # 39;
but the gutenberg editor for comments here translates it. I can’t make it to exactly display the correct spelling so I added spaces
- This reply was modified 5 months ago by coriolis_too.
- This reply was modified 5 months ago by coriolis_too.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error in class.bcn_breadcrumb_trail.php on line 124I added the quotes just to be similar to the original text
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error in class.bcn_breadcrumb_trail.php on line 124Found the problem: Translation of “Search results for '%1$s'” is
Résultats de recherche pour %$1s
but should be:
Résultats de recherche pour %1$s
(or better)Résultats de recherche pour '%1$s'
Made an edit to https://translate.www.ads-software.com/projects/wp-plugins/breadcrumb-navxt/stable/fr
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error in class.bcn_breadcrumb_trail.php on line 124And add this code to your functions.php to prevent the translations to be downloaded:
// Prevent downloading translation for plugin breadcrumb-navxt
add_filter( 'pre_http_request', function ( $bFalse, $args, $sUrl ) {
if ( strpos( $sUrl, 'downloads.www.ads-software.com/translation/plugin/breadcrumb-navxt/' ) ) {
return new WP_Error( 'http_request_not_executed', __( 'User has blocked requests through HTTP.') );
}
return $bFalse;
}, 10, 3 );Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Foro incompatibilityThanks,
Works flawlessly. For posterity, I added
remove_action( 'register_form', 'wpmem_wp_register_form' );
directly at the top of the “register.php” file of my custom 2022 theme file
/wp-content/themes/mytheme/wpforo/register.php
Thanks a lot,
Stephan
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Not redirecting to login pageI’m an idiot, problem was caused by me
Hi, as I wrote, the setting re-appeared and problem is now solved. I already had marked the issue as resolved.
Thanks,
Stephan
The setting re-appeared out of nowhere.
Forum: Plugins
In reply to: [Spam protection, Anti-Spam, FireWall by CleanTalk] False positivesThere’s a new version coming. While waiting for the new version, install the previous version 6.8 (avail from the wordpress page: https://www.ads-software.com/plugins/cleantalk-spam-protect/
Support was quick to solve my problem. Thanks!
Forum: Plugins
In reply to: [PostFinance Checkout] Plugin removed?Hi,
I’ve asked PostFinance and Wallee and official answer is get the plugin from the GitHub repo
No explanation why the plugin was removed, which is not reassuring.I’m using version 1.7.17, seems OK. After this version, seems changes are only on the build system and the doc.
Forum: Plugins
In reply to: [WP Activity Log] Fatal Error on 4.4.2I found a solution for 1 site:
– deactivate the plugin
– in your DB, delete all “wsal” options: SELECT * FROMwp_options
WHEREoption_name
LIKE ‘%wsal%’ (this will erase all your settings for the plugin)
– delete the 20 (or more) rows found
– reactivate the pluginOn another site, plugin can be activated but now I have:
`Notice: ob_end_flush(): Failed to send buffer of zlib output compression (1) in [..]/feedubureau.ch/wp-includes/functions.php on line 5275
Notice: ob_end_flush(): Failed to send buffer of zlib output compression (1) in [..]/wp-includes/functions.php on line 5275
Forum: Plugins
In reply to: [MetaSlider Lightbox] 5-11 Update broke my site AdminHi,
in “class.fpc-category-list.php”, line 73, you pass the argument “strict” to in_array, but you compare an int to a string.
Changing
<input type="checkbox" class="fpc-category" value="<?php echo (int) $category->term_id; ?>" <?php checked( in_array( $category->term_id, $values, true ) ); ?> />
to
<input type="checkbox" class="fpc-category" value="<?php echo (int) $category->term_id; ?>" <?php checked( in_array( $category->term_id, $values, false ) ); ?> />
categories are correctly checked when you return to the settings page.
Tested with WP 5.9.1, PHP 7.4
First, if I want to reinstall a new version of the plugin with the same version number 5.118, I need to do it manually.
Second, even if the version if different, it doesn’t work for me. Half of my WordPress are still using 5.117.1 and there’s no update button on the dashboard for these sites. And the website’s plugin page doesn’t propose an update.
I’ll open a ticket when I have some time.
Perfect, it works.
If you can release a new version, manually updating 20 sites is time consuming.
Thanks.