Problem: I have created a Layout with multiple columns, but all the cells are appearing full-width.
Solution: In this case, the problem can be corrected by changing the Bootstrap Loading settings in Toolset > Settings > General tab. Choose "Toolset should load Bootstrap 3".
Problem:
How can I report issues with a Beta version of your plugins?
Solution:
You can report them as used to like in other tickets.
Always mention that this is a Beta test environment and that you encountered "X" Problem in "Y" situation.
Often we will ask for a copy of the site, in order to achieve your same environment faster and enabling ourselves to solve the problem faster.
Beta Reports receive the same attention as "normal" reports, but it may be that a Solution will not be published as fast as it would for a stable release.
Problem:
A map has a single marker which has some content that appears in a pop-up when clicked. How is it possible to have the pop-up already open on page load?
Solution:
You would need to add some custom JS to your map:
( function( $ ) {
$( document ).bind( 'js_event_wpv_addon_maps_init_map_completed', function(){
var mapId = Object.keys(WPViews.view_addon_maps.maps)[0];
var map = WPViews.view_addon_maps.maps[mapId];
var mapsMarkers = WPViews.view_addon_maps.markers[Object.keys(WPViews.view_addon_maps.markers)[0]];
var markerId = Object.keys(mapsMarkers)[0];
var marker = mapsMarkers[Object.keys(mapsMarkers)[0]];
WPViews.view_addon_maps.infowindows[ mapId ].setContent( $('div.js-wpv-addon-maps-marker-'+markerId).html() );
WPViews.view_addon_maps.infowindows[mapId].open(map, marker);
});
})( jQuery );