1. Home
  2. FAQ
  3. How to add information to Map Bubble in Template 1?

How to add information to Map Bubble in Template 1?

Sometimes you want to add some custom information about a listing in Map Marker Bubble here:



You can do this via adding custom code in your child theme, a special filter that passes the corresponding business ID as a variable to be able to grab any meta data you need.

// Add info to Map Buble
add_filter( 'wyzi_after_business_name_info_bubble', function($b_id) {

$what_to_return = ‘ Extract Some Data’;

return $what_to_return;

} );

Was this article helpful to you? Yes No 3