The bsa-card and pages-navigation plugins are currently broken when newer versions of the elementor plugin is installed. When you enter the editor, the elementor side bar has a spinning wheel that never goes away. I used server side log files to validate the 500 errors that appeared in my browser logs.
I fixed the issue by updating references to the typography, and color schemes in these files to use the new elementor format. If someone from BSA wants to DM me I can provide copies of the files to update in the WP theme archive in the brand center.
bsa-card\bsa-card-description-register-controls.php
bsa-card\bsa-card-image-register-controls.php
bsa-card\bsa-card-title-controls.php
pages-navigation\pages-navigation.php
I replaced:
'scheme' => [
'type' => Color::get_type(),
'value' => Color::COLOR_1,
],
with
- Note the four options are COLOR_PRIMARY, COLOR_SECONDARY, COLOR_TEXT, COLOR_ACCENT which map to COLOR_1,2,3,4 in the original files.
'global' => [
'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Colors::COLOR_TEXT
],
and
'scheme' => Typography::TYPOGRAPHY_3,
with
- Note typography follows the same options as COLOR, instead use TYPOGRAPHY_
'global' => [
'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Typography::TYPOGRAPHY_TEXT,
],