Showing the map in a pop-up is indeed a problem.
What’s the URL where you’re using it? Are you comfortable with code?
Thread Starter
fafani
(@fafani)
Hello, I am comfortable with code but I need some help to acheive that.
@fafani If you look at the code here, then you will see a fix is applied to make the map work in a tab. It only requires the tab to have the wpsl-map-tab href value ( link ).
If you want to change this then you can use the wpsl_map_tab_anchor filter.
Try to add this to the functions.php inside your active theme folder.
add_filter( 'wpsl_map_tab_anchor', 'custom_map_tab_anchor' );
function custom_map_tab_anchor() {
return 'your-custom-anchor';
}
Do replace the ‘your-custom-anchor’ with the one you’re currently using.