coriolis_too
Forum Replies Created
-
@dizzyatinnocraft 5.3.3 works for me too
Thanks with the quick fix!
- This reply was modified 9 months ago by coriolis_too.
Same here, when not using WooCommerce:
In Matomo Settings -> General Tracking Settings, disabling “Enable ecommerce” solves the problem.On another site with WooCommerce, there are no error
Forum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] Problem with Elementor 3.28Looks good to me, works fine.
Thanks,
StephanForum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] Problem with Elementor 3.28Make sure automatic updating for this plugin is disabled, until we’re sure it works with Elementor 3.28!
Thanks
Forum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] Problem with Elementor 3.28So the problem is because Elementor changed the swiper feature which is not experimental anymore and VPPP doesn’t detect it.
If anyone has the same problem, a temporary fix is to edit the file /visual-portfolio-pro/core-plugin/classes/3rd/plugins/class-elementor.php and add this code after line 124:
Line 124: $e_swiper_latest = \Elementor\Plugin::$instance->experiments->is_feature_active( 'e_swiper_latest' );
// Add this:
if ( version_compare( ELEMENTOR_VERSION, '3.28.0', '>=' ) ) {
$e_swiper_latest = true;
}Make a copy of the file before, just to be sure
- This reply was modified 1 year, 2 months ago by coriolis_too. Reason: Explain that it's not Elementor's fault
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 1 year, 11 months ago by coriolis_too.
- This reply was modified 1 year, 11 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 %$1sbut should be:
Résultats de recherche pour %1$s(or better)Résultats de recherche pour '%1$s'Made an edit to https://translate.ww.wp.xz.cn/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.wp.xz.cn/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.phpThanks 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.
There’s a new version coming. While waiting for the new version, install the previous version 6.8 (avail from the wordpress page: https://ww.wp.xz.cn/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.