• The latest update 2.6.0.3 made my website crash and I am not the only one my friends too, I need to deactivate the plugin so my website can work, I don’t recommend this plugin to build your website with, specialty if you do an online business via your website, you can’t rely on an incompetent team like theirs pushing updates without proper testing, making your website crash and costing you a lot of money and time to fix their mistakes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Simon Prosser

    (@pross)

    Unfortunatly Vantam themes are not compatibale with version 2.6 and they refused to fix the issue or add support.

    Lucky for you though I did fix the issue late late night and we will release a fix later today with the following code added that stops the vantam fatal error.

    for now add this to your child theme functions.php

    add_action( 'after_setup_theme', function() {
    	add_filter( 'vamtam_less_vars', function( $vars ) {
    		if ( isset( $vars['beaver-global'] ) ) {
    			foreach( $vars['beaver-global'] as $k => $var ) {
    				if ( is_object( $var ) || is_array( $var ) ) {
    					unset( $vars['beaver-global'][$k] );
    				}
    			}
    		}
    		return $vars;
    	});
    });

    As always thanks for the review, its alway appreciated!

    Plugin Contributor Jamie

    (@codente)

    We’re told that the VamTam team actually pushed an update for the BB compatible themes earlier today so you can give that a try and see if it resolves your issues with BB.

    If you’re not using VamTam theme or updating to the latest VamTam release does not solve it, then we’d love to help you solve this problem but we can’t help you here in a review. Please create a support thread here:
    https://wordpress.org/support/plugin/beaver-builder-lite-version/

    And we’d be glad to help!

    • This reply was modified 1 year, 5 months ago by Jamie.
    • This reply was modified 1 year, 5 months ago by Jamie.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Last update crashed my website’ is closed to new replies.