Hi,
I’m sorry, but I don’t understand your questions. If you are using the pro version of the plugin, and you want to display in the homepage a map with all points, you simply should insert the shortcode with the attribute: cat=”-1″, for example:
[codepeople-post-map cat="-1"]
If you want to display the bubbles without the links to the posts in the titles and thumbnails in the bubbles, will be required customize the code of the plugin:
1. Open the “/wp-content/plugins/codepeople-post-map/include/functions.php” file, with the text editor of your choice.
2. Go to the piece of code:
<div class='cpm-infowindow'>
<div class='cpm-content'>
<a title='%link%' href='%link%'>%thumbnail%</a>
<a class='title' href='%link%'>%title%</a>
<div class='address'>%address%</div>
<div class='description'>%description%</div>
</div>
<div style='clear:both;'></div>
</div>
%additional%
and modify it as follows:
<div class='cpm-infowindow'>
<div class='cpm-content'>
%thumbnail%
<span class='title'>%title%</span>
<div class='address'>%address%</div>
<div class='description'>%description%</div>
</div>
<div style='clear:both;'></div>
</div>
%additional%
and that’s all.
Best regards.