• Plugin Author Ian Dunn

    (@iandunn)


    The release candidate for BGMP 1.10 is now available. The biggest changes are:

    • Fixes a few persistent bugs in the 1.9 releases
    • Adds new shortcode options for only displaying a single placemark on the map, and adding links to map markers in the text list.
    • Add more hooks for developers.
    • Adds a German translation.

    If you’d like to try it out, just download and install it. If you notice any problems, give detailed feedback here and then downgrade to 1.8 until they’re fixed.

    If you don’t notice any problems, please leave a quick note here so that I know it’s working for others.

    I’ve also setup an email list to notify everyone when new RCs are available in the future. That way you’ll have time to test it out on your staging server, and we can work out any bugs before the official release.

    https://www.ads-software.com/extend/plugins/basic-google-maps-placemarks/

Viewing 11 replies - 16 through 26 (of 26 total)
  • Plugin Author Ian Dunn

    (@iandunn)

    Hi MVerminski. You won’t lose your placemarks. Some plugins remove options/settings when they’re remove, but they’re not supposed to remove significant data (like posts).

    Of course, you should always have backups, but baring some kind of freak accident, you shouldn’t lose anything.

    Hi Ian

    Sorry again to take so long to get back to you.

    RC3 now installed and has cleared up my first issue.

    Many thanks for the advice and example code re using the bgmp_list-marker-output filter to set the output of the [bgmp-list] shortcode to whatever I want. I’ll give it a try soon and report back.

    Cheers

    I use on my site https://www.vlakovi.com 1.8 version of plugin.
    When I install v1.10 then news slider on my site don’t work

    What can I do to solve these?

    On 1.8 version

    Plugin Author Ian Dunn

    (@iandunn)

    Hi fegi. Are you talking about the slider on the home page? It looks like it’s working for me.

    After installing 1.10rc1 this morning it seems in placemark title the - character gets replaced by & #8211; without the space between the & and # characters. I have been tinkering with a filter/function so probably that’s the cause, but restoring everything to default (disabling all the filters in functions.php) doesn’t seem to fix it though.

    Yes these slider don’t work on ver1.10.
    Now is v1.8 activated, I delete v1.10

    But v1.8 have too some error on homepage (Basic Google Maps Placemarks error: JavaScript and/or CSS files aren’t loaded. If you’re using do_shortcode() you need to add a filter to your theme first. See the FAQ for details. )

    I have the same portal for testing and trying some plugins on link: https://www.vlakovi.hr/

    Here you can see whats hapend when is v1.10 activated

    Map is show ok, problem is just on homepage where ist these slider..

    Map link: https://www.vlakovi.hr/?p=962

    Plugin Author Ian Dunn

    (@iandunn)

    jeroenm77, I wasn’t able to reproduce that on my test install. Can you post a link to your map? Did you just type the dash into WordPress using your keyboard, or did you copy/paste from another application?

    Plugin Author Ian Dunn

    (@iandunn)

    fegi, for the error that says “Basic Google Maps Placemarks error… See the FAQ for details.”, you should see the FAQ for details ??

    The reason the slider isn’t working is because there’s a JavaScript error on the page. If you install the latest development version of the plugin, it should fix that.

    Tnx, its work now slider.

    And for homepage error I must add filter on theme?
    Where and what? ??

    <?php
    	if ( is_home() ) {
    		$args=array(
    			'showposts'=> (int) get_option('aggregate_homepage_posts'),
    			'paged'=>$paged,
    			'category__not_in' => (array) get_option('aggregate_exlcats_recent')
    		);
    		if (get_option('aggregate_duplicate') == 'false') {
    			global $ids;
    			$args['post__not_in'] = $ids;
    		}
    		query_posts($args);
    		global $paged;
    	}
    	$i = 0;
    ?>
    <?php
    	if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<?php
    		$i++;
    		$et_is_latest_post = ( $paged == 0 && ( is_home() && $i <= 5 ) ) || !is_home();
    	?>
    		<div class="post entry clearfix<?php if ( $et_is_latest_post ) echo ' latest'; ?>">
    			<?php
    				$thumb = '';
    				$width = $et_is_latest_post ? 130 : 67;
    				$height = $et_is_latest_post ? 130 : 67;
    				$classtext = 'post-thumb';
    				$titletext = get_the_title();
    				$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Entry');
    				$thumb = $thumbnail["thumb"];
    			?>
    
    			<?php if($thumb <> '' && get_option('aggregate_thumbnails_index') == 'on') { ?>
    				<div class="thumb">
    					<a href="<?php the_permalink(); ?>">
    						<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
    						<span class="overlay"></span>
    					</a>
    				</div> 	<!-- end .post-thumbnail -->
    			<?php } ?>
    
    			<h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    			<?php get_template_part('includes/postinfo'); ?>
    
    			<?php if (get_option('aggregate_blog_style') == 'on') the_content(''); else { ?>
    				<?php
    					$et_excerpt_length = $et_is_latest_post && is_home() ? 215 : 80;
    					if ( !is_home() ) $et_excerpt_length = 140;
    				?>
    				<p><?php truncate_post($et_excerpt_length); ?></p>
    			<?php }; ?>
    			<a href="<?php the_permalink(); ?>" class="more"><span><?php esc_html_e('Read More','Aggregate'); ?></span></a>
    		</div> 	<!-- end .post-->
    <?php endwhile; ?>
    	<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
    	else { ?>
    		 <?php get_template_part('includes/navigation','entry'); ?>
    	<?php } ?>
    <?php else : ?>
    	<?php get_template_part('includes/no-results','entry'); ?>
    <?php endif; wp_reset_query(); ?>

    Today in wp admin area its show new error:
    That address couldn’t be geocoded, please make sure that it’s correct.

    Geocode response:

    stdClass Object
    (
    [results] => Array
    (
    )

    [status] => OVER_QUERY_LIMIT
    )

    What that mean?

    Plugin Author Ian Dunn

    (@iandunn)

    fegi, Google Maps places a limit on how many geocoding requests it will serve per day. If you’re using shared hosting, there are probably other sites that are also making requests, and you’ve hit the limit for the day.

    You can either use coordinates to bypass the geocoding process, or wait until tomorrow and try again. If you’d like to use coordinates, see the FAQ for details.

Viewing 11 replies - 16 through 26 (of 26 total)
  • The topic ‘BGMP 1.10-rc1 available’ is closed to new replies.