SOLVED: Certificate has expired when activating license

Hello @timmse, @kaoticos, @craneinteractive

If you are still experiencing the ‘cURL error 60: SSL certificate problem: certificate has expired’ on license activation/deactivation please re-install the Bricks version 1.3.4 (download it manually from your Bricks account page).

For those who cannot see the “Community Templates” in the builder, please install (and activate) the Bricks child theme (you can get a copy of it through your Bricks account page) and add the following code snippet to the functions.php file:

add_filter( 'bricks/remote_get', function( $args ) {
  $args['sslverify'] = false;
  return $args;
} );

Thank you!