Home Forums WoodMart support forum Performance Issue after Update 7.2.4

Performance Issue after Update 7.2.4

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #468798

    Besir
    Participant

    Hello dears ,
    Good day,

    After updating the theme and its plugins from V 7.1.4 to 7.2.4 , we experienced a huge performance issue on product pages,

    Our website is multi-language and multi-currency with Woocommerce Subscription with All Products For Subscriptions Addon

    After troubleshooting , we found that “Frequently Bought Together” Feature is causing the issue .

    We disabled all plugins and kept theme related plugins only, there is around 1 sec additional delay when enabling “Frequently Bought Together” ,

    This delay become around 4 seconds when enabling either multi-currency OR the Subscription plugin with its addon!

    If both enabled , the delay become around 8 seconds !!

    Could you please check the staging website ?

    Additional info added in private content area

    Thanks and regards,

    • This topic was modified 11 months, 1 week ago by Besir.
    • This topic was modified 11 months, 1 week ago by Besir.
    #468875

    Artem Temos
    Keymaster

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to fix this

    add_action( 'woocommerce_product_get_image_id', function ($img) {
    	if ( class_exists( 'XTS\Modules\Frequently_Bought_Together\Frontend' ) ) {
    		remove_filter( 'woocommerce_product_get_image_id', array( XTS\Modules\Frequently_Bought_Together\Frontend::get_instance(), 'update_variation_image' ) );
    
    	}
    
    	return $img;
    }, 1 );

    Kind Regards

    #468880

    Besir
    Participant

    Hello Artem,

    It worked! Many thanks,

    Best regards,

    #468904

    Artem Temos
    Keymaster

    You are always welcome. Feel free to contact us if you have any further questions.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Performance Issue after Update 7.2.4’ is closed to new replies.