8.13.1
π Bug Fixesβ
- Forms: Improved multiselect tag layout so tags donβt overlap other elements.
- Popovers: Fixed popovers closing when clicking inside them.
See our full announcement and usage guide: Google Sheets auto-sync with maps - turn spreadsheets into a live data source.
operator and value keys to control the behavior. For now, you'll need to add a few lines of JS code to the API request middleware code. Soon the options will also be added to the filter settings:function(data, ctx){
const { request, repository, map } = ctx;
if(repository.schema.objectNamePlural === "objects" && request.action === "index") {
data = {
...data,
filters: {category: {operator: "or", value: data.filters.category}}
};
}
return data;
}
wp-cli scripts for exporting and importing your maps. Examples:Export all MapSVG database tables to SQL file:
wp mapsvg export
Export and replace current domain with a new one in the .sql file:
wp mapsvg export --toDomain=mapsvg.com
Import MapSVG data from SQL file
wp mapsvg import /path/to/file.sql