Hello,
1) Yes, you can safely use the latest version of Visual Composer with Basel 3.3.1.
Also, we suggest you make a backup of all your files before any update.
2) If you want to fix the countdown timer, you need to replace the basel_product_sale_countdown ()
function in basel/inc/woocommerce.php
file with the code snippet below.
if( ! function_exists( 'basel_product_sale_countdown' ) ) {
function basel_product_sale_countdown() {
global $post;
$sale_date = get_post_meta( $post->ID, '_sale_price_dates_to', true );
if( ! $sale_date ) return;
$datetime = new WC_DateTime( "@{$sale_date}", new DateTimeZone( 'UTC' ) );
$datetime->setTimezone( new DateTimeZone( wc_timezone_string() ) );
echo '<div class="basel-product-countdown basel-timer" data-end-date="' . esc_attr( $datetime->date_i18n('Y/m/d h:m:s') ) . '"></div>';
}
}
Kind Regards
XTemos Studio