Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi ilgrasso,

    The issue is caused by the following style definition:

    #theme-page img {
        max-height: 200px !important;
    }

    in the “https://www.internidesignstore.it/show-room/wp-content/themes/ken-child/style.css” file, included by the theme active in your webpage.

    There are two possible solutions:

    – Remove the previous style definition and clear the browser’s cache.

    or

    – Pasting at the end of file’s content, the style definition below, and clear the browser’s cache:

    #theme-page .cpm-map img {
        max-height: none !important;
    }

    Best regards.

    Thread Starter ilgrasso

    (@ilgrasso)

    Hi, I need to center my maps into the frame. I used a particular zoom value to see all ITALIA country but I cannot slide it up to center the map with this zoom value. How can I move it in vertical (or horizontal) direction?

    If I was not clear, you can see what I need on this page (the little mapnear the bottom) https://www.internidesignstore.it/HOME-IDS/

    or in this page (look at that, Sicily needs to be in and the Country needs to be centered into the frame)
    https://www.internidesignstore.it/punti-vendita/

    Thank you

    Plugin Author codepeople

    (@codepeople)

    Hi,

    If you want centering the map in a specific pair of coordinates, you should use the “center” attribute in the shortcode, for example:

    [codepeople-post-map center="42.2876019,13.2366427"]

    Best regards.

    Thread Starter ilgrasso

    (@ilgrasso)

    you very much. An other question, is there a way to display the bubbles on the map but to unlink it? In home page I want to display dinamically all the bubbles added but I nedd to “freeze” the map using it only to show and display map and bubbles added.

    Thanks

    Plugin Author codepeople

    (@codepeople)

    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.

    Thread Starter ilgrasso

    (@ilgrasso)

    I would like to make it only in home page. But I understood that the infowindow are inserted into a div class “cpm-infowindow” “cpm-content” and for that reason I can try to hide it via css using theese tags, only into the homepage. I’m going to try. thanks for your replay

    Plugin Author codepeople

    (@codepeople)

    Hi,

    If you want to hide the infowindows in a specific map, you simply should use the attribute: show_window=”0″ in the shortcode, as follows:

    [codepeople-post-map cat=”-1″ show_window=”0″ ]

    Please, visit the link below with the complete list of allowed attributes in the shortcode:

    https://wordpress.dwbooster.com/content-tools/codepeople-post-map#attr

    Best regards.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Horizontal grey lines displayed on my maps’ is closed to new replies.